2009-02-11 09:27:43 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='pack should notice missing commit objects'
|
|
|
|
|
2021-10-30 22:24:13 +00:00
|
|
|
TEST_PASSES_SANITIZE_LEAK=true
|
2009-02-11 09:27:43 +00:00
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success setup '
|
|
|
|
for i in 1 2 3 4 5
|
|
|
|
do
|
|
|
|
echo "$i" >"file$i" &&
|
|
|
|
git add "file$i" &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "$i" &&
|
2021-12-09 05:11:14 +00:00
|
|
|
git tag "tag$i" || return 1
|
2009-02-11 09:27:43 +00:00
|
|
|
done &&
|
|
|
|
obj=$(git rev-parse --verify tag3) &&
|
|
|
|
fanout=$(expr "$obj" : "\(..\)") &&
|
|
|
|
remainder=$(expr "$obj" : "..\(.*\)") &&
|
|
|
|
rm -f ".git/objects/$fanout/$remainder"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'check corruption' '
|
|
|
|
test_must_fail git fsck
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'rev-list notices corruption (1)' '
|
2019-08-13 18:37:45 +00:00
|
|
|
test_must_fail env GIT_TEST_COMMIT_GRAPH=0 git -c core.commitGraph=false rev-list HEAD
|
2009-02-11 09:27:43 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'rev-list notices corruption (2)' '
|
2019-08-13 18:37:45 +00:00
|
|
|
test_must_fail env GIT_TEST_COMMIT_GRAPH=0 git -c core.commitGraph=false rev-list --objects HEAD
|
2009-02-11 09:27:43 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'pack-objects notices corruption' '
|
|
|
|
echo HEAD |
|
|
|
|
test_must_fail git pack-objects --revs pack
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|