]> git.ipfire.org Git - thirdparty/git.git/commitdiff
fsck tests: test for garbage appended to a loose object
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Fri, 1 Oct 2021 09:16:40 +0000 (11:16 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 1 Oct 2021 22:05:59 +0000 (15:05 -0700)
There wasn't any output tests for this scenario, let's ensure that we
don't regress on it in the changes that come after this.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t1450-fsck.sh

index f9cabcecd14112bb79e6193f2a62106fbe435e85..281ff8bdd8e2b060e047c7483d14f3dcd210afe4 100755 (executable)
@@ -93,6 +93,26 @@ test_expect_success 'object with hash and type mismatch' '
        )
 '
 
+test_expect_success POSIXPERM 'zlib corrupt loose object output ' '
+       git init --bare corrupt-loose-output &&
+       (
+               cd corrupt-loose-output &&
+               oid=$(git hash-object -w --stdin --literally </dev/null) &&
+               oidf=objects/$(test_oid_to_path "$oid") &&
+               chmod 755 $oidf &&
+               echo extra garbage >>$oidf &&
+
+               cat >expect.error <<-EOF &&
+               error: garbage at end of loose object '\''$oid'\''
+               error: unable to unpack contents of ./$oidf
+               error: $oid: object corrupt or missing: ./$oidf
+               EOF
+               test_must_fail git fsck 2>actual &&
+               grep ^error: actual >error &&
+               test_cmp expect.error error
+       )
+'
+
 test_expect_success 'branch pointing to non-commit' '
        git rev-parse HEAD^{tree} >.git/refs/heads/invalid &&
        test_when_finished "git update-ref -d refs/heads/invalid" &&