transport: don't flush when disconnecting stateless-rpc helper
[git.git] / t / t1450-fsck.sh
bloba2405b0d32a732fd0c47483edc37dae48c1f0bf7
1 #!/bin/sh
3 test_description='git fsck random collection of tests
5 * (HEAD) B
6 * (master) A
9 . ./test-lib.sh
11 test_expect_success setup '
12 test_oid_init &&
13 git config gc.auto 0 &&
14 git config i18n.commitencoding ISO-8859-1 &&
15 test_commit A fileA one &&
16 git config --unset i18n.commitencoding &&
17 git checkout HEAD^0 &&
18 test_commit B fileB two &&
19 git tag -d A B &&
20 git reflog expire --expire=now --all
23 test_expect_success 'loose objects borrowed from alternate are not missing' '
24 mkdir another &&
26 cd another &&
27 git init &&
28 echo ../../../.git/objects >.git/objects/info/alternates &&
29 test_commit C fileC one &&
30 git fsck --no-dangling >../actual 2>&1
31 ) &&
32 test_must_be_empty actual
35 test_expect_success 'HEAD is part of refs, valid objects appear valid' '
36 git fsck >actual 2>&1 &&
37 test_must_be_empty actual
40 # Corruption tests follow. Make sure to remove all traces of the
41 # specific corruption you test afterwards, lest a later test trip over
42 # it.
44 test_expect_success 'setup: helpers for corruption tests' '
45 sha1_file() {
46 remainder=${1#??} &&
47 firsttwo=${1%$remainder} &&
48 echo ".git/objects/$firsttwo/$remainder"
49 } &&
51 remove_object() {
52 rm "$(sha1_file "$1")"
56 test_expect_success 'object with bad sha1' '
57 sha=$(echo blob | git hash-object -w --stdin) &&
58 old=$(test_oid_to_path "$sha") &&
59 new=$(dirname $old)/$(test_oid ff_2) &&
60 sha="$(dirname $new)$(basename $new)" &&
61 mv .git/objects/$old .git/objects/$new &&
62 test_when_finished "remove_object $sha" &&
63 git update-index --add --cacheinfo 100644 $sha foo &&
64 test_when_finished "git read-tree -u --reset HEAD" &&
65 tree=$(git write-tree) &&
66 test_when_finished "remove_object $tree" &&
67 cmt=$(echo bogus | git commit-tree $tree) &&
68 test_when_finished "remove_object $cmt" &&
69 git update-ref refs/heads/bogus $cmt &&
70 test_when_finished "git update-ref -d refs/heads/bogus" &&
72 test_must_fail git fsck 2>out &&
73 cat out &&
74 test_i18ngrep "$sha.*corrupt" out
77 test_expect_success 'branch pointing to non-commit' '
78 git rev-parse HEAD^{tree} >.git/refs/heads/invalid &&
79 test_when_finished "git update-ref -d refs/heads/invalid" &&
80 test_must_fail git fsck 2>out &&
81 cat out &&
82 test_i18ngrep "not a commit" out
85 test_expect_success 'HEAD link pointing at a funny object' '
86 test_when_finished "mv .git/SAVED_HEAD .git/HEAD" &&
87 mv .git/HEAD .git/SAVED_HEAD &&
88 echo $ZERO_OID >.git/HEAD &&
89 # avoid corrupt/broken HEAD from interfering with repo discovery
90 test_must_fail env GIT_DIR=.git git fsck 2>out &&
91 cat out &&
92 test_i18ngrep "detached HEAD points" out
95 test_expect_success 'HEAD link pointing at a funny place' '
96 test_when_finished "mv .git/SAVED_HEAD .git/HEAD" &&
97 mv .git/HEAD .git/SAVED_HEAD &&
98 echo "ref: refs/funny/place" >.git/HEAD &&
99 # avoid corrupt/broken HEAD from interfering with repo discovery
100 test_must_fail env GIT_DIR=.git git fsck 2>out &&
101 cat out &&
102 test_i18ngrep "HEAD points to something strange" out
105 test_expect_success 'HEAD link pointing at a funny object (from different wt)' '
106 test_when_finished "mv .git/SAVED_HEAD .git/HEAD" &&
107 test_when_finished "rm -rf .git/worktrees wt" &&
108 git worktree add wt &&
109 mv .git/HEAD .git/SAVED_HEAD &&
110 echo $ZERO_OID >.git/HEAD &&
111 # avoid corrupt/broken HEAD from interfering with repo discovery
112 test_must_fail git -C wt fsck 2>out &&
113 test_i18ngrep "main-worktree/HEAD: detached HEAD points" out
116 test_expect_success 'other worktree HEAD link pointing at a funny object' '
117 test_when_finished "rm -rf .git/worktrees other" &&
118 git worktree add other &&
119 echo $ZERO_OID >.git/worktrees/other/HEAD &&
120 test_must_fail git fsck 2>out &&
121 test_i18ngrep "worktrees/other/HEAD: detached HEAD points" out
124 test_expect_success 'other worktree HEAD link pointing at missing object' '
125 test_when_finished "rm -rf .git/worktrees other" &&
126 git worktree add other &&
127 echo "Contents missing from repo" | git hash-object --stdin >.git/worktrees/other/HEAD &&
128 test_must_fail git fsck 2>out &&
129 test_i18ngrep "worktrees/other/HEAD: invalid sha1 pointer" out
132 test_expect_success 'other worktree HEAD link pointing at a funny place' '
133 test_when_finished "rm -rf .git/worktrees other" &&
134 git worktree add other &&
135 echo "ref: refs/funny/place" >.git/worktrees/other/HEAD &&
136 test_must_fail git fsck 2>out &&
137 test_i18ngrep "worktrees/other/HEAD points to something strange" out
140 test_expect_success 'email without @ is okay' '
141 git cat-file commit HEAD >basis &&
142 sed "s/@/AT/" basis >okay &&
143 new=$(git hash-object -t commit -w --stdin <okay) &&
144 test_when_finished "remove_object $new" &&
145 git update-ref refs/heads/bogus "$new" &&
146 test_when_finished "git update-ref -d refs/heads/bogus" &&
147 git fsck 2>out &&
148 cat out &&
149 ! grep "commit $new" out
152 test_expect_success 'email with embedded > is not okay' '
153 git cat-file commit HEAD >basis &&
154 sed "s/@[a-z]/&>/" basis >bad-email &&
155 new=$(git hash-object -t commit -w --stdin <bad-email) &&
156 test_when_finished "remove_object $new" &&
157 git update-ref refs/heads/bogus "$new" &&
158 test_when_finished "git update-ref -d refs/heads/bogus" &&
159 test_must_fail git fsck 2>out &&
160 cat out &&
161 test_i18ngrep "error in commit $new" out
164 test_expect_success 'missing < email delimiter is reported nicely' '
165 git cat-file commit HEAD >basis &&
166 sed "s/<//" basis >bad-email-2 &&
167 new=$(git hash-object -t commit -w --stdin <bad-email-2) &&
168 test_when_finished "remove_object $new" &&
169 git update-ref refs/heads/bogus "$new" &&
170 test_when_finished "git update-ref -d refs/heads/bogus" &&
171 test_must_fail git fsck 2>out &&
172 cat out &&
173 test_i18ngrep "error in commit $new.* - bad name" out
176 test_expect_success 'missing email is reported nicely' '
177 git cat-file commit HEAD >basis &&
178 sed "s/[a-z]* <[^>]*>//" basis >bad-email-3 &&
179 new=$(git hash-object -t commit -w --stdin <bad-email-3) &&
180 test_when_finished "remove_object $new" &&
181 git update-ref refs/heads/bogus "$new" &&
182 test_when_finished "git update-ref -d refs/heads/bogus" &&
183 test_must_fail git fsck 2>out &&
184 cat out &&
185 test_i18ngrep "error in commit $new.* - missing email" out
188 test_expect_success '> in name is reported' '
189 git cat-file commit HEAD >basis &&
190 sed "s/ </> </" basis >bad-email-4 &&
191 new=$(git hash-object -t commit -w --stdin <bad-email-4) &&
192 test_when_finished "remove_object $new" &&
193 git update-ref refs/heads/bogus "$new" &&
194 test_when_finished "git update-ref -d refs/heads/bogus" &&
195 test_must_fail git fsck 2>out &&
196 cat out &&
197 test_i18ngrep "error in commit $new" out
200 # date is 2^64 + 1
201 test_expect_success 'integer overflow in timestamps is reported' '
202 git cat-file commit HEAD >basis &&
203 sed "s/^\\(author .*>\\) [0-9]*/\\1 18446744073709551617/" \
204 <basis >bad-timestamp &&
205 new=$(git hash-object -t commit -w --stdin <bad-timestamp) &&
206 test_when_finished "remove_object $new" &&
207 git update-ref refs/heads/bogus "$new" &&
208 test_when_finished "git update-ref -d refs/heads/bogus" &&
209 test_must_fail git fsck 2>out &&
210 cat out &&
211 test_i18ngrep "error in commit $new.*integer overflow" out
214 test_expect_success 'commit with NUL in header' '
215 git cat-file commit HEAD >basis &&
216 sed "s/author ./author Q/" <basis | q_to_nul >commit-NUL-header &&
217 new=$(git hash-object -t commit -w --stdin <commit-NUL-header) &&
218 test_when_finished "remove_object $new" &&
219 git update-ref refs/heads/bogus "$new" &&
220 test_when_finished "git update-ref -d refs/heads/bogus" &&
221 test_must_fail git fsck 2>out &&
222 cat out &&
223 test_i18ngrep "error in commit $new.*unterminated header: NUL at offset" out
226 test_expect_success 'tree object with duplicate entries' '
227 test_when_finished "for i in \$T; do remove_object \$i; done" &&
228 T=$(
229 GIT_INDEX_FILE=test-index &&
230 export GIT_INDEX_FILE &&
231 rm -f test-index &&
232 >x &&
233 git add x &&
234 git rev-parse :x &&
235 T=$(git write-tree) &&
236 echo $T &&
238 git cat-file tree $T &&
239 git cat-file tree $T
241 git hash-object -w -t tree --stdin
242 ) &&
243 test_must_fail git fsck 2>out &&
244 test_i18ngrep "error in tree .*contains duplicate file entries" out
247 test_expect_success 'unparseable tree object' '
248 test_oid_cache <<-\EOF &&
249 junk sha1:twenty-bytes-of-junk
250 junk sha256:twenty-bytes-of-junk-twelve-more
253 test_when_finished "git update-ref -d refs/heads/wrong" &&
254 test_when_finished "remove_object \$tree_sha1" &&
255 test_when_finished "remove_object \$commit_sha1" &&
256 junk=$(test_oid junk) &&
257 tree_sha1=$(printf "100644 \0$junk" | git hash-object -t tree --stdin -w --literally) &&
258 commit_sha1=$(git commit-tree $tree_sha1) &&
259 git update-ref refs/heads/wrong $commit_sha1 &&
260 test_must_fail git fsck 2>out &&
261 test_i18ngrep "error: empty filename in tree entry" out &&
262 test_i18ngrep "$tree_sha1" out &&
263 test_i18ngrep ! "fatal: empty filename in tree entry" out
266 test_expect_success 'tree entry with type mismatch' '
267 test_when_finished "remove_object \$blob" &&
268 test_when_finished "remove_object \$tree" &&
269 test_when_finished "remove_object \$commit" &&
270 test_when_finished "git update-ref -d refs/heads/type_mismatch" &&
271 blob=$(echo blob | git hash-object -w --stdin) &&
272 blob_bin=$(echo $blob | hex2oct) &&
273 tree=$(
274 printf "40000 dir\0${blob_bin}100644 file\0${blob_bin}" |
275 git hash-object -t tree --stdin -w --literally
276 ) &&
277 commit=$(git commit-tree $tree) &&
278 git update-ref refs/heads/type_mismatch $commit &&
279 test_must_fail git fsck >out 2>&1 &&
280 test_i18ngrep "is a blob, not a tree" out &&
281 test_i18ngrep ! "dangling blob" out
284 test_expect_success 'tag pointing to nonexistent' '
285 badoid=$(test_oid deadbeef) &&
286 cat >invalid-tag <<-EOF &&
287 object $badoid
288 type commit
289 tag invalid
290 tagger T A Gger <tagger@example.com> 1234567890 -0000
292 This is an invalid tag.
295 tag=$(git hash-object -t tag -w --stdin <invalid-tag) &&
296 test_when_finished "remove_object $tag" &&
297 echo $tag >.git/refs/tags/invalid &&
298 test_when_finished "git update-ref -d refs/tags/invalid" &&
299 test_must_fail git fsck --tags >out &&
300 cat out &&
301 test_i18ngrep "broken link" out
304 test_expect_success 'tag pointing to something else than its type' '
305 sha=$(echo blob | git hash-object -w --stdin) &&
306 test_when_finished "remove_object $sha" &&
307 cat >wrong-tag <<-EOF &&
308 object $sha
309 type commit
310 tag wrong
311 tagger T A Gger <tagger@example.com> 1234567890 -0000
313 This is an invalid tag.
316 tag=$(git hash-object -t tag -w --stdin <wrong-tag) &&
317 test_when_finished "remove_object $tag" &&
318 echo $tag >.git/refs/tags/wrong &&
319 test_when_finished "git update-ref -d refs/tags/wrong" &&
320 test_must_fail git fsck --tags
323 test_expect_success 'tag with incorrect tag name & missing tagger' '
324 sha=$(git rev-parse HEAD) &&
325 cat >wrong-tag <<-EOF &&
326 object $sha
327 type commit
328 tag wrong name format
330 This is an invalid tag.
333 tag=$(git hash-object -t tag -w --stdin <wrong-tag) &&
334 test_when_finished "remove_object $tag" &&
335 echo $tag >.git/refs/tags/wrong &&
336 test_when_finished "git update-ref -d refs/tags/wrong" &&
337 git fsck --tags 2>out &&
339 cat >expect <<-EOF &&
340 warning in tag $tag: badTagName: invalid '\''tag'\'' name: wrong name format
341 warning in tag $tag: missingTaggerEntry: invalid format - expected '\''tagger'\'' line
343 test_i18ncmp expect out
346 test_expect_success 'tag with bad tagger' '
347 sha=$(git rev-parse HEAD) &&
348 cat >wrong-tag <<-EOF &&
349 object $sha
350 type commit
351 tag not-quite-wrong
352 tagger Bad Tagger Name
354 This is an invalid tag.
357 tag=$(git hash-object --literally -t tag -w --stdin <wrong-tag) &&
358 test_when_finished "remove_object $tag" &&
359 echo $tag >.git/refs/tags/wrong &&
360 test_when_finished "git update-ref -d refs/tags/wrong" &&
361 test_must_fail git fsck --tags 2>out &&
362 test_i18ngrep "error in tag .*: invalid author/committer" out
365 test_expect_success 'tag with NUL in header' '
366 sha=$(git rev-parse HEAD) &&
367 q_to_nul >tag-NUL-header <<-EOF &&
368 object $sha
369 type commit
370 tag contains-Q-in-header
371 tagger T A Gger <tagger@example.com> 1234567890 -0000
373 This is an invalid tag.
376 tag=$(git hash-object --literally -t tag -w --stdin <tag-NUL-header) &&
377 test_when_finished "remove_object $tag" &&
378 echo $tag >.git/refs/tags/wrong &&
379 test_when_finished "git update-ref -d refs/tags/wrong" &&
380 test_must_fail git fsck --tags 2>out &&
381 cat out &&
382 test_i18ngrep "error in tag $tag.*unterminated header: NUL at offset" out
385 test_expect_success 'cleaned up' '
386 git fsck >actual 2>&1 &&
387 test_must_be_empty actual
390 test_expect_success 'rev-list --verify-objects' '
391 git rev-list --verify-objects --all >/dev/null 2>out &&
392 test_must_be_empty out
395 test_expect_success 'rev-list --verify-objects with bad sha1' '
396 sha=$(echo blob | git hash-object -w --stdin) &&
397 old=$(test_oid_to_path $sha) &&
398 new=$(dirname $old)/$(test_oid ff_2) &&
399 sha="$(dirname $new)$(basename $new)" &&
400 mv .git/objects/$old .git/objects/$new &&
401 test_when_finished "remove_object $sha" &&
402 git update-index --add --cacheinfo 100644 $sha foo &&
403 test_when_finished "git read-tree -u --reset HEAD" &&
404 tree=$(git write-tree) &&
405 test_when_finished "remove_object $tree" &&
406 cmt=$(echo bogus | git commit-tree $tree) &&
407 test_when_finished "remove_object $cmt" &&
408 git update-ref refs/heads/bogus $cmt &&
409 test_when_finished "git update-ref -d refs/heads/bogus" &&
411 test_might_fail git rev-list --verify-objects refs/heads/bogus >/dev/null 2>out &&
412 cat out &&
413 test_i18ngrep -q "error: hash mismatch $(dirname $new)$(test_oid ff_2)" out
416 test_expect_success 'force fsck to ignore double author' '
417 git cat-file commit HEAD >basis &&
418 sed "s/^author .*/&,&/" <basis | tr , \\n >multiple-authors &&
419 new=$(git hash-object -t commit -w --stdin <multiple-authors) &&
420 test_when_finished "remove_object $new" &&
421 git update-ref refs/heads/bogus "$new" &&
422 test_when_finished "git update-ref -d refs/heads/bogus" &&
423 test_must_fail git fsck &&
424 git -c fsck.multipleAuthors=ignore fsck
427 _bz='\0'
428 _bzoid=$(printf $ZERO_OID | sed -e 's/00/\\0/g')
430 test_expect_success 'fsck notices blob entry pointing to null sha1' '
431 (git init null-blob &&
432 cd null-blob &&
433 sha=$(printf "100644 file$_bz$_bzoid" |
434 git hash-object -w --stdin -t tree) &&
435 git fsck 2>out &&
436 cat out &&
437 test_i18ngrep "warning.*null sha1" out
441 test_expect_success 'fsck notices submodule entry pointing to null sha1' '
442 (git init null-commit &&
443 cd null-commit &&
444 sha=$(printf "160000 submodule$_bz$_bzoid" |
445 git hash-object -w --stdin -t tree) &&
446 git fsck 2>out &&
447 cat out &&
448 test_i18ngrep "warning.*null sha1" out
452 while read name path pretty; do
453 while read mode type; do
454 : ${pretty:=$path}
455 test_expect_success "fsck notices $pretty as $type" '
457 git init $name-$type &&
458 cd $name-$type &&
459 git config core.protectNTFS false &&
460 echo content >file &&
461 git add file &&
462 git commit -m base &&
463 blob=$(git rev-parse :file) &&
464 tree=$(git rev-parse HEAD^{tree}) &&
465 value=$(eval "echo \$$type") &&
466 printf "$mode $type %s\t%s" "$value" "$path" >bad &&
467 bad_tree=$(git mktree <bad) &&
468 git fsck 2>out &&
469 cat out &&
470 test_i18ngrep "warning.*tree $bad_tree" out
472 done <<-\EOF
473 100644 blob
474 040000 tree
476 done <<-EOF
477 dot .
478 dotdot ..
479 dotgit .git
480 dotgit-case .GIT
481 dotgit-unicode .gI${u200c}T .gI{u200c}T
482 dotgit-case2 .Git
483 git-tilde1 git~1
484 dotgitdot .git.
485 dot-backslash-case .\\\\.GIT\\\\foobar
486 dotgit-case-backslash .git\\\\foobar
489 test_expect_success 'fsck allows .Ňit' '
491 git init not-dotgit &&
492 cd not-dotgit &&
493 echo content >file &&
494 git add file &&
495 git commit -m base &&
496 blob=$(git rev-parse :file) &&
497 printf "100644 blob $blob\t.\\305\\207it" >tree &&
498 tree=$(git mktree <tree) &&
499 git fsck 2>err &&
500 test_line_count = 0 err
504 test_expect_success 'NUL in commit' '
505 rm -fr nul-in-commit &&
506 git init nul-in-commit &&
508 cd nul-in-commit &&
509 git commit --allow-empty -m "initial commitQNUL after message" &&
510 git cat-file commit HEAD >original &&
511 q_to_nul <original >munged &&
512 git hash-object -w -t commit --stdin <munged >name &&
513 git branch bad $(cat name) &&
515 test_must_fail git -c fsck.nulInCommit=error fsck 2>warn.1 &&
516 test_i18ngrep nulInCommit warn.1 &&
517 git fsck 2>warn.2 &&
518 test_i18ngrep nulInCommit warn.2
522 # create a static test repo which is broken by omitting
523 # one particular object ($1, which is looked up via rev-parse
524 # in the new repository).
525 create_repo_missing () {
526 rm -rf missing &&
527 git init missing &&
529 cd missing &&
530 git commit -m one --allow-empty &&
531 mkdir subdir &&
532 echo content >subdir/file &&
533 git add subdir/file &&
534 git commit -m two &&
535 unrelated=$(echo unrelated | git hash-object --stdin -w) &&
536 git tag -m foo tag $unrelated &&
537 sha1=$(git rev-parse --verify "$1") &&
538 path=$(echo $sha1 | sed 's|..|&/|') &&
539 rm .git/objects/$path
543 test_expect_success 'fsck notices missing blob' '
544 create_repo_missing HEAD:subdir/file &&
545 test_must_fail git -C missing fsck
548 test_expect_success 'fsck notices missing subtree' '
549 create_repo_missing HEAD:subdir &&
550 test_must_fail git -C missing fsck
553 test_expect_success 'fsck notices missing root tree' '
554 create_repo_missing HEAD^{tree} &&
555 test_must_fail git -C missing fsck
558 test_expect_success 'fsck notices missing parent' '
559 create_repo_missing HEAD^ &&
560 test_must_fail git -C missing fsck
563 test_expect_success 'fsck notices missing tagged object' '
564 create_repo_missing tag^{blob} &&
565 test_must_fail git -C missing fsck
568 test_expect_success 'fsck notices ref pointing to missing commit' '
569 create_repo_missing HEAD &&
570 test_must_fail git -C missing fsck
573 test_expect_success 'fsck notices ref pointing to missing tag' '
574 create_repo_missing tag &&
575 test_must_fail git -C missing fsck
578 test_expect_success 'fsck --connectivity-only' '
579 rm -rf connectivity-only &&
580 git init connectivity-only &&
582 cd connectivity-only &&
583 touch empty &&
584 git add empty &&
585 test_commit empty &&
587 # Drop the index now; we want to be sure that we
588 # recursively notice the broken objects
589 # because they are reachable from refs, not because
590 # they are in the index.
591 rm -f .git/index &&
593 # corrupt the blob, but in a way that we can still identify
594 # its type. That lets us see that --connectivity-only is
595 # not actually looking at the contents, but leaves it
596 # free to examine the type if it chooses.
597 empty=.git/objects/$(test_oid_to_path $EMPTY_BLOB) &&
598 blob=$(echo unrelated | git hash-object -w --stdin) &&
599 mv -f $(sha1_file $blob) $empty &&
601 test_must_fail git fsck --strict &&
602 git fsck --strict --connectivity-only &&
603 tree=$(git rev-parse HEAD:) &&
604 suffix=${tree#??} &&
605 tree=.git/objects/${tree%$suffix}/$suffix &&
606 rm -f $tree &&
607 echo invalid >$tree &&
608 test_must_fail git fsck --strict --connectivity-only
612 test_expect_success 'fsck --connectivity-only with explicit head' '
613 rm -rf connectivity-only &&
614 git init connectivity-only &&
616 cd connectivity-only &&
617 test_commit foo &&
618 rm -f .git/index &&
619 tree=$(git rev-parse HEAD^{tree}) &&
620 remove_object $(git rev-parse HEAD:foo.t) &&
621 test_must_fail git fsck --connectivity-only $tree
625 test_expect_success 'fsck --name-objects' '
626 rm -rf name-objects &&
627 git init name-objects &&
629 cd name-objects &&
630 test_commit julius caesar.t &&
631 test_commit augustus &&
632 test_commit caesar &&
633 remove_object $(git rev-parse julius:caesar.t) &&
634 test_must_fail git fsck --name-objects >out &&
635 tree=$(git rev-parse --verify julius:) &&
636 test_i18ngrep -E "$tree \((refs/heads/master|HEAD)@\{[0-9]*\}:" out
640 test_expect_success 'alternate objects are correctly blamed' '
641 test_when_finished "rm -rf alt.git .git/objects/info/alternates" &&
642 name=$(test_oid numeric) &&
643 path=$(test_oid_to_path "$name") &&
644 git init --bare alt.git &&
645 echo "../../alt.git/objects" >.git/objects/info/alternates &&
646 mkdir alt.git/objects/$(dirname $path) &&
647 >alt.git/objects/$(dirname $path)/$(basename $path) &&
648 test_must_fail git fsck >out 2>&1 &&
649 test_i18ngrep alt.git out
652 test_expect_success 'fsck errors in packed objects' '
653 git cat-file commit HEAD >basis &&
654 sed "s/</one/" basis >one &&
655 sed "s/</foo/" basis >two &&
656 one=$(git hash-object -t commit -w one) &&
657 two=$(git hash-object -t commit -w two) &&
658 pack=$(
660 echo $one &&
661 echo $two
662 } | git pack-objects .git/objects/pack/pack
663 ) &&
664 test_when_finished "rm -f .git/objects/pack/pack-$pack.*" &&
665 remove_object $one &&
666 remove_object $two &&
667 test_must_fail git fsck 2>out &&
668 test_i18ngrep "error in commit $one.* - bad name" out &&
669 test_i18ngrep "error in commit $two.* - bad name" out &&
670 ! grep corrupt out
673 test_expect_success 'fsck fails on corrupt packfile' '
674 hsh=$(git commit-tree -m mycommit HEAD^{tree}) &&
675 pack=$(echo $hsh | git pack-objects .git/objects/pack/pack) &&
677 # Corrupt the first byte of the first object. (It contains 3 type bits,
678 # at least one of which is not zero, so setting the first byte to 0 is
679 # sufficient.)
680 chmod a+w .git/objects/pack/pack-$pack.pack &&
681 printf '\0' | dd of=.git/objects/pack/pack-$pack.pack bs=1 conv=notrunc seek=12 &&
683 test_when_finished "rm -f .git/objects/pack/pack-$pack.*" &&
684 remove_object $hsh &&
685 test_must_fail git fsck 2>out &&
686 test_i18ngrep "checksum mismatch" out
689 test_expect_success 'fsck finds problems in duplicate loose objects' '
690 rm -rf broken-duplicate &&
691 git init broken-duplicate &&
693 cd broken-duplicate &&
694 test_commit duplicate &&
695 # no "-d" here, so we end up with duplicates
696 git repack &&
697 # now corrupt the loose copy
698 file=$(sha1_file "$(git rev-parse HEAD)") &&
699 rm "$file" &&
700 echo broken >"$file" &&
701 test_must_fail git fsck
705 test_expect_success 'fsck detects trailing loose garbage (commit)' '
706 git cat-file commit HEAD >basis &&
707 echo bump-commit-sha1 >>basis &&
708 commit=$(git hash-object -w -t commit basis) &&
709 file=$(sha1_file $commit) &&
710 test_when_finished "remove_object $commit" &&
711 chmod +w "$file" &&
712 echo garbage >>"$file" &&
713 test_must_fail git fsck 2>out &&
714 test_i18ngrep "garbage.*$commit" out
717 test_expect_success 'fsck detects trailing loose garbage (large blob)' '
718 blob=$(echo trailing | git hash-object -w --stdin) &&
719 file=$(sha1_file $blob) &&
720 test_when_finished "remove_object $blob" &&
721 chmod +w "$file" &&
722 echo garbage >>"$file" &&
723 test_must_fail git -c core.bigfilethreshold=5 fsck 2>out &&
724 test_i18ngrep "garbage.*$blob" out
727 test_expect_success 'fsck detects truncated loose object' '
728 # make it big enough that we know we will truncate in the data
729 # portion, not the header
730 test-tool genrandom truncate 4096 >file &&
731 blob=$(git hash-object -w file) &&
732 file=$(sha1_file $blob) &&
733 test_when_finished "remove_object $blob" &&
734 test_copy_bytes 1024 <"$file" >tmp &&
735 rm "$file" &&
736 mv -f tmp "$file" &&
738 # check both regular and streaming code paths
739 test_must_fail git fsck 2>out &&
740 test_i18ngrep corrupt.*$blob out &&
742 test_must_fail git -c core.bigfilethreshold=128 fsck 2>out &&
743 test_i18ngrep corrupt.*$blob out
746 # for each of type, we have one version which is referenced by another object
747 # (and so while unreachable, not dangling), and another variant which really is
748 # dangling.
749 test_expect_success 'create dangling-object repository' '
750 git init dangling &&
752 cd dangling &&
753 blob=$(echo not-dangling | git hash-object -w --stdin) &&
754 dblob=$(echo dangling | git hash-object -w --stdin) &&
755 tree=$(printf "100644 blob %s\t%s\n" $blob one | git mktree) &&
756 dtree=$(printf "100644 blob %s\t%s\n" $blob two | git mktree) &&
757 commit=$(git commit-tree $tree) &&
758 dcommit=$(git commit-tree -p $commit $tree) &&
760 cat >expect <<-EOF
761 dangling blob $dblob
762 dangling commit $dcommit
763 dangling tree $dtree
768 test_expect_success 'fsck notices dangling objects' '
770 cd dangling &&
771 git fsck >actual &&
772 # the output order is non-deterministic, as it comes from a hash
773 sort <actual >actual.sorted &&
774 test_i18ncmp expect actual.sorted
778 test_expect_success 'fsck --connectivity-only notices dangling objects' '
780 cd dangling &&
781 git fsck --connectivity-only >actual &&
782 # the output order is non-deterministic, as it comes from a hash
783 sort <actual >actual.sorted &&
784 test_i18ncmp expect actual.sorted
788 test_expect_success 'fsck $name notices bogus $name' '
789 test_must_fail git fsck bogus &&
790 test_must_fail git fsck $ZERO_OID
793 test_expect_success 'bogus head does not fallback to all heads' '
794 # set up a case that will cause a reachability complaint
795 echo to-be-deleted >foo &&
796 git add foo &&
797 blob=$(git rev-parse :foo) &&
798 test_when_finished "git rm --cached foo" &&
799 remove_object $blob &&
800 test_must_fail git fsck $ZERO_OID >out 2>&1 &&
801 ! grep $blob out
804 # Corrupt the checksum on the index.
805 # Add 1 to the last byte in the SHA.
806 corrupt_index_checksum () {
807 perl -w -e '
808 use Fcntl ":seek";
809 open my $fh, "+<", ".git/index" or die "open: $!";
810 binmode $fh;
811 seek $fh, -1, SEEK_END or die "seek: $!";
812 read $fh, my $in_byte, 1 or die "read: $!";
814 $in_value = unpack("C", $in_byte);
815 $out_value = ($in_value + 1) & 255;
817 $out_byte = pack("C", $out_value);
819 seek $fh, -1, SEEK_END or die "seek: $!";
820 print $fh $out_byte;
821 close $fh or die "close: $!";
825 # Corrupt the checksum on the index and then
826 # verify that only fsck notices.
827 test_expect_success 'detect corrupt index file in fsck' '
828 cp .git/index .git/index.backup &&
829 test_when_finished "mv .git/index.backup .git/index" &&
830 corrupt_index_checksum &&
831 test_must_fail git fsck --cache 2>errors &&
832 test_i18ngrep "bad index file" errors
835 test_done