2011-03-25 03:34:19 -06:00
|
|
|
#!/bin/sh
|
|
|
|
|
2011-05-12 02:37:22 -06:00
|
|
|
test_description='ls-tree with(out) globs'
|
2011-03-25 03:34:19 -06:00
|
|
|
|
2021-10-12 07:56:39 -06:00
|
|
|
TEST_PASSES_SANITIZE_LEAK=true
|
2011-03-25 03:34:19 -06:00
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
2011-05-12 02:37:22 -06:00
|
|
|
mkdir a aa "a[a]" &&
|
|
|
|
touch a/one aa/two "a[a]/three" &&
|
|
|
|
git add a/one aa/two "a[a]/three" &&
|
2011-03-25 03:34:19 -06:00
|
|
|
git commit -m test
|
|
|
|
'
|
|
|
|
|
2011-05-12 02:37:22 -06:00
|
|
|
test_expect_success 'ls-tree a[a] matches literally' '
|
2016-07-15 23:06:25 -06:00
|
|
|
cat >expect <<-EOF &&
|
|
|
|
100644 blob $EMPTY_BLOB a[a]/three
|
2014-12-01 12:45:57 -07:00
|
|
|
EOF
|
2011-05-12 02:37:22 -06:00
|
|
|
git ls-tree -r HEAD "a[a]" >actual &&
|
2014-12-01 12:45:57 -07:00
|
|
|
test_cmp expect actual
|
2011-03-25 03:34:19 -06:00
|
|
|
'
|
|
|
|
|
2014-11-30 02:05:01 -07:00
|
|
|
test_expect_success 'ls-tree outside prefix' '
|
2016-07-15 23:06:25 -06:00
|
|
|
cat >expect <<-EOF &&
|
|
|
|
100644 blob $EMPTY_BLOB ../a[a]/three
|
2014-12-01 12:45:57 -07:00
|
|
|
EOF
|
2018-07-01 18:23:44 -06:00
|
|
|
( cd aa && git ls-tree -r HEAD "../a[a]" ) >actual &&
|
2014-12-01 12:45:57 -07:00
|
|
|
test_cmp expect actual
|
2014-11-30 02:05:01 -07:00
|
|
|
'
|
|
|
|
|
2014-12-01 12:48:34 -07:00
|
|
|
test_expect_failure 'ls-tree does not yet support negated pathspec' '
|
|
|
|
git ls-files ":(exclude)a" "a*" >expect &&
|
|
|
|
git ls-tree --name-only -r HEAD ":(exclude)a" "a*" >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
2011-03-25 03:34:19 -06:00
|
|
|
test_done
|