cache-tree tests: explicitly test HEAD and index differences
The test code added in9c4d6c0297
(cache-tree: Write updated cache-tree after commit, 2014-07-13) used "ls-files" in lieu of "ls-tree" because it wanted to test the data in the index, since this test is testing the cache-tree extension. Change the test to instead use "ls-tree" for traversal, and then explicitly check how HEAD differs from the index. This is more easily understood, and less fragile as numerous past bug fixes[1][2][3] to the old code we're replacing demonstrate. As an aside this would be a bit easier if empty pathspecs hadn't been made an error ind426430e6e
(pathspec: warn on empty strings as pathspec, 2016-06-22) and9e4e8a64c2
(pathspec: die on empty strings as pathspec, 2017-06-06). If that was still allowed this code could be simplified slightly: diff --git a/t/t0090-cache-tree.sh b/t/t0090-cache-tree.sh index 9bf66c9e68..0b02881f55 100755 --- a/t/t0090-cache-tree.sh +++ b/t/t0090-cache-tree.sh @@ -18,19 +18,18 @@ cmp_cache_tree () { # test-tool dump-cache-tree already verifies that all existing data is # correct. generate_expected_cache_tree () { - pathspec="$1" && - dir="$2${2:+/}" && + pathspec="$1${1:+/}" && git ls-tree --name-only HEAD -- "$pathspec" >files && git ls-tree --name-only -d HEAD -- "$pathspec" >subtrees && - printf "SHA %s (%d entries, %d subtrees)\n" "$dir" $(wc -l <files) $(wc -l <subtrees) && + printf "SHA %s (%d entries, %d subtrees)\n" "$pathspec" $(wc -l <files) $(wc -l <subtrees) && while read subtree do - generate_expected_cache_tree "$pathspec/$subtree/" "$subtree" || return 1 + generate_expected_cache_tree "$subtree" || return 1 done <subtrees } test_cache_tree () { - generate_expected_cache_tree "." >expect && + generate_expected_cache_tree >expect && cmp_cache_tree expect && rm expect actual files subtrees && git status --porcelain -- ':!status' ':!expected.status' >status && 1.c8db708d5d
(t0090: avoid passing empty string to printf %d, 2014-09-30) 2.d69360c6b1
(t0090: tweak awk statement for Solaris /usr/xpg4/bin/awk, 2014-12-22) 3.9b5a9fa60a
(t0090: stop losing return codes of git commands, 2019-11-27) Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
fa6edee776
commit
ef83970059
@ -18,26 +18,28 @@ cmp_cache_tree () {
|
|||||||
# test-tool dump-cache-tree already verifies that all existing data is
|
# test-tool dump-cache-tree already verifies that all existing data is
|
||||||
# correct.
|
# correct.
|
||||||
generate_expected_cache_tree () {
|
generate_expected_cache_tree () {
|
||||||
dir="$1${1:+/}" &&
|
pathspec="$1" &&
|
||||||
# ls-files might have foo/bar, foo/bar/baz, and foo/bar/quux
|
dir="$2${2:+/}" &&
|
||||||
# We want to count only foo because it's the only direct child
|
git ls-tree --name-only HEAD -- "$pathspec" >files &&
|
||||||
git ls-files >files &&
|
git ls-tree --name-only -d HEAD -- "$pathspec" >subtrees &&
|
||||||
subtrees=$(grep / files|cut -d / -f 1|uniq) &&
|
printf "SHA %s (%d entries, %d subtrees)\n" "$dir" $(wc -l <files) $(wc -l <subtrees) &&
|
||||||
subtree_count=$(echo "$subtrees"|awk -v c=0 '$1 != "" {++c} END {print c}') &&
|
while read subtree
|
||||||
entries=$(wc -l <files) &&
|
|
||||||
printf "SHA $dir (%d entries, %d subtrees)\n" "$entries" "$subtree_count" &&
|
|
||||||
for subtree in $subtrees
|
|
||||||
do
|
do
|
||||||
(
|
generate_expected_cache_tree "$pathspec/$subtree/" "$subtree" || return 1
|
||||||
cd "$subtree" &&
|
done <subtrees
|
||||||
generate_expected_cache_tree "$dir$subtree"
|
|
||||||
) || return 1
|
|
||||||
done
|
|
||||||
}
|
}
|
||||||
|
|
||||||
test_cache_tree () {
|
test_cache_tree () {
|
||||||
generate_expected_cache_tree >expect &&
|
generate_expected_cache_tree "." >expect &&
|
||||||
cmp_cache_tree expect
|
cmp_cache_tree expect &&
|
||||||
|
rm expect actual files subtrees &&
|
||||||
|
git status --porcelain -- ':!status' ':!expected.status' >status &&
|
||||||
|
if test -n "$1"
|
||||||
|
then
|
||||||
|
test_cmp "$1" status
|
||||||
|
else
|
||||||
|
test_must_be_empty status
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
test_invalid_cache_tree () {
|
test_invalid_cache_tree () {
|
||||||
@ -126,6 +128,7 @@ test_expect_success 'second commit has cache-tree' '
|
|||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success PERL 'commit --interactive gives cache-tree on partial commit' '
|
test_expect_success PERL 'commit --interactive gives cache-tree on partial commit' '
|
||||||
|
test_when_finished "git reset --hard" &&
|
||||||
cat <<-\EOT >foo.c &&
|
cat <<-\EOT >foo.c &&
|
||||||
int foo()
|
int foo()
|
||||||
{
|
{
|
||||||
@ -152,7 +155,10 @@ test_expect_success PERL 'commit --interactive gives cache-tree on partial commi
|
|||||||
EOT
|
EOT
|
||||||
test_write_lines p 1 "" s n y q |
|
test_write_lines p 1 "" s n y q |
|
||||||
git commit --interactive -m foo &&
|
git commit --interactive -m foo &&
|
||||||
test_cache_tree
|
cat <<-\EOF >expected.status &&
|
||||||
|
M foo.c
|
||||||
|
EOF
|
||||||
|
test_cache_tree expected.status
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success PERL 'commit -p with shrinking cache-tree' '
|
test_expect_success PERL 'commit -p with shrinking cache-tree' '
|
||||||
@ -243,7 +249,10 @@ test_expect_success 'partial commit gives cache-tree' '
|
|||||||
git add one.t &&
|
git add one.t &&
|
||||||
echo "some other change" >two.t &&
|
echo "some other change" >two.t &&
|
||||||
git commit two.t -m partial &&
|
git commit two.t -m partial &&
|
||||||
test_cache_tree
|
cat <<-\EOF >expected.status &&
|
||||||
|
M one.t
|
||||||
|
EOF
|
||||||
|
test_cache_tree expected.status
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'no phantom error when switching trees' '
|
test_expect_success 'no phantom error when switching trees' '
|
||||||
|
Reference in New Issue
Block a user