test-lib: self-test that --verbose works
[git/gitweb.git] / t / t0000-basic.sh
blob6439cec91092660b30594195f831932bbca8ef29
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano
6 test_description='Test the very basics part #1.
8 The rest of the test suite does not check the basic operation of git
9 plumbing commands to work very carefully. Their job is to concentrate
10 on tricky features that caused bugs in the past to detect regression.
12 This test runs very basic features, like registering things in cache,
13 writing tree, etc.
15 Note that this test *deliberately* hard-codes many expected object
16 IDs. When object ID computation changes, like in the previous case of
17 swapping compression and hashing order, the person who is making the
18 modification *should* take notice and update the test vectors here.
21 . ./test-lib.sh
23 ################################################################
24 # git init has been done in an empty repository.
25 # make sure it is empty.
27 test_expect_success '.git/objects should be empty after git init in an empty repo' '
28 find .git/objects -type f -print >should-be-empty &&
29 test_line_count = 0 should-be-empty
32 # also it should have 2 subdirectories; no fan-out anymore, pack, and info.
33 # 3 is counting "objects" itself
34 test_expect_success '.git/objects should have 3 subdirectories' '
35 find .git/objects -type d -print >full-of-directories &&
36 test_line_count = 3 full-of-directories
39 ################################################################
40 # Test harness
41 test_expect_success 'success is reported like this' '
44 test_expect_failure 'pretend we have a known breakage' '
45 false
48 run_sub_test_lib_test () {
49 name="$1" descr="$2" # stdin is the body of the test code
50 shift 2
51 mkdir "$name" &&
53 # Pretend we're a test harness. This prevents
54 # test-lib from writing the counts to a file that will
55 # later be summarized, showing spurious "failed" tests
56 export HARNESS_ACTIVE=t &&
57 cd "$name" &&
58 cat >"$name.sh" <<-EOF &&
59 #!$SHELL_PATH
61 test_description='$descr (run in sub test-lib)
63 This is run in a sub test-lib so that we do not get incorrect
64 passing metrics
67 # Point to the t/test-lib.sh, which isn't in ../ as usual
68 . "\$TEST_DIRECTORY"/test-lib.sh
69 EOF
70 cat >>"$name.sh" &&
71 chmod +x "$name.sh" &&
72 export TEST_DIRECTORY &&
73 ./"$name.sh" "$@" >out 2>err
77 check_sub_test_lib_test () {
78 name="$1" # stdin is the expected output from the test
80 cd "$name" &&
81 ! test -s err &&
82 sed -e 's/^> //' -e 's/Z$//' >expect &&
83 test_cmp expect out
87 test_expect_success 'pretend we have a fully passing test suite' "
88 run_sub_test_lib_test full-pass '3 passing tests' <<-\\EOF &&
89 for i in 1 2 3
91 test_expect_success \"passing test #\$i\" 'true'
92 done
93 test_done
94 EOF
95 check_sub_test_lib_test full-pass <<-\\EOF
96 > ok 1 - passing test #1
97 > ok 2 - passing test #2
98 > ok 3 - passing test #3
99 > # passed all 3 test(s)
100 > 1..3
104 test_expect_success 'pretend we have a partially passing test suite' "
105 test_must_fail run_sub_test_lib_test \
106 partial-pass '2/3 tests passing' <<-\\EOF &&
107 test_expect_success 'passing test #1' 'true'
108 test_expect_success 'failing test #2' 'false'
109 test_expect_success 'passing test #3' 'true'
110 test_done
112 check_sub_test_lib_test partial-pass <<-\\EOF
113 > ok 1 - passing test #1
114 > not ok 2 - failing test #2
115 # false
116 > ok 3 - passing test #3
117 > # failed 1 among 3 test(s)
118 > 1..3
122 test_expect_success 'pretend we have a known breakage' "
123 run_sub_test_lib_test failing-todo 'A failing TODO test' <<-\\EOF &&
124 test_expect_success 'passing test' 'true'
125 test_expect_failure 'pretend we have a known breakage' 'false'
126 test_done
128 check_sub_test_lib_test failing-todo <<-\\EOF
129 > ok 1 - passing test
130 > not ok 2 - pretend we have a known breakage # TODO known breakage
131 > # still have 1 known breakage(s)
132 > # passed all remaining 1 test(s)
133 > 1..2
137 test_expect_success 'pretend we have fixed a known breakage' "
138 run_sub_test_lib_test passing-todo 'A passing TODO test' <<-\\EOF &&
139 test_expect_failure 'pretend we have fixed a known breakage' 'true'
140 test_done
142 check_sub_test_lib_test passing-todo <<-\\EOF
143 > ok 1 - pretend we have fixed a known breakage # TODO known breakage vanished
144 > # 1 known breakage(s) vanished; please update test(s)
145 > 1..1
149 test_expect_success 'pretend we have fixed one of two known breakages (run in sub test-lib)' "
150 run_sub_test_lib_test partially-passing-todos \
151 '2 TODO tests, one passing' <<-\\EOF &&
152 test_expect_failure 'pretend we have a known breakage' 'false'
153 test_expect_success 'pretend we have a passing test' 'true'
154 test_expect_failure 'pretend we have fixed another known breakage' 'true'
155 test_done
157 check_sub_test_lib_test partially-passing-todos <<-\\EOF
158 > not ok 1 - pretend we have a known breakage # TODO known breakage
159 > ok 2 - pretend we have a passing test
160 > ok 3 - pretend we have fixed another known breakage # TODO known breakage vanished
161 > # 1 known breakage(s) vanished; please update test(s)
162 > # still have 1 known breakage(s)
163 > # passed all remaining 1 test(s)
164 > 1..3
168 test_expect_success 'pretend we have a pass, fail, and known breakage' "
169 test_must_fail run_sub_test_lib_test \
170 mixed-results1 'mixed results #1' <<-\\EOF &&
171 test_expect_success 'passing test' 'true'
172 test_expect_success 'failing test' 'false'
173 test_expect_failure 'pretend we have a known breakage' 'false'
174 test_done
176 check_sub_test_lib_test mixed-results1 <<-\\EOF
177 > ok 1 - passing test
178 > not ok 2 - failing test
179 > # false
180 > not ok 3 - pretend we have a known breakage # TODO known breakage
181 > # still have 1 known breakage(s)
182 > # failed 1 among remaining 2 test(s)
183 > 1..3
187 test_expect_success 'pretend we have a mix of all possible results' "
188 test_must_fail run_sub_test_lib_test \
189 mixed-results2 'mixed results #2' <<-\\EOF &&
190 test_expect_success 'passing test' 'true'
191 test_expect_success 'passing test' 'true'
192 test_expect_success 'passing test' 'true'
193 test_expect_success 'passing test' 'true'
194 test_expect_success 'failing test' 'false'
195 test_expect_success 'failing test' 'false'
196 test_expect_success 'failing test' 'false'
197 test_expect_failure 'pretend we have a known breakage' 'false'
198 test_expect_failure 'pretend we have a known breakage' 'false'
199 test_expect_failure 'pretend we have fixed a known breakage' 'true'
200 test_done
202 check_sub_test_lib_test mixed-results2 <<-\\EOF
203 > ok 1 - passing test
204 > ok 2 - passing test
205 > ok 3 - passing test
206 > ok 4 - passing test
207 > not ok 5 - failing test
208 > # false
209 > not ok 6 - failing test
210 > # false
211 > not ok 7 - failing test
212 > # false
213 > not ok 8 - pretend we have a known breakage # TODO known breakage
214 > not ok 9 - pretend we have a known breakage # TODO known breakage
215 > ok 10 - pretend we have fixed a known breakage # TODO known breakage vanished
216 > # 1 known breakage(s) vanished; please update test(s)
217 > # still have 2 known breakage(s)
218 > # failed 3 among remaining 7 test(s)
219 > 1..10
223 test_expect_success 'test --verbose' '
224 test_must_fail run_sub_test_lib_test \
225 test-verbose "test verbose" --verbose <<-\EOF &&
226 test_expect_success "passing test" true
227 test_expect_success "test with output" "echo foo"
228 test_expect_success "failing test" false
229 test_done
231 mv test-verbose/out test-verbose/out+
232 grep -v "^Initialized empty" test-verbose/out+ >test-verbose/out &&
233 check_sub_test_lib_test test-verbose <<-\EOF
234 > expecting success: true
236 > ok 1 - passing test
238 > expecting success: echo foo
239 > foo
241 > ok 2 - test with output
243 > expecting success: false
245 > not ok 3 - failing test
246 > # false
248 > # failed 1 among 3 test(s)
249 > 1..3
253 test_set_prereq HAVEIT
254 haveit=no
255 test_expect_success HAVEIT 'test runs if prerequisite is satisfied' '
256 test_have_prereq HAVEIT &&
257 haveit=yes
259 donthaveit=yes
260 test_expect_success DONTHAVEIT 'unmet prerequisite causes test to be skipped' '
261 donthaveit=no
263 if test $haveit$donthaveit != yesyes
264 then
265 say "bug in test framework: prerequisite tags do not work reliably"
266 exit 1
269 test_set_prereq HAVETHIS
270 haveit=no
271 test_expect_success HAVETHIS,HAVEIT 'test runs if prerequisites are satisfied' '
272 test_have_prereq HAVEIT &&
273 test_have_prereq HAVETHIS &&
274 haveit=yes
276 donthaveit=yes
277 test_expect_success HAVEIT,DONTHAVEIT 'unmet prerequisites causes test to be skipped' '
278 donthaveit=no
280 donthaveiteither=yes
281 test_expect_success DONTHAVEIT,HAVEIT 'unmet prerequisites causes test to be skipped' '
282 donthaveiteither=no
284 if test $haveit$donthaveit$donthaveiteither != yesyesyes
285 then
286 say "bug in test framework: multiple prerequisite tags do not work reliably"
287 exit 1
290 test_lazy_prereq LAZY_TRUE true
291 havetrue=no
292 test_expect_success LAZY_TRUE 'test runs if lazy prereq is satisfied' '
293 havetrue=yes
295 donthavetrue=yes
296 test_expect_success !LAZY_TRUE 'missing lazy prereqs skip tests' '
297 donthavetrue=no
300 if test "$havetrue$donthavetrue" != yesyes
301 then
302 say 'bug in test framework: lazy prerequisites do not work'
303 exit 1
306 test_lazy_prereq LAZY_FALSE false
307 nothavefalse=no
308 test_expect_success !LAZY_FALSE 'negative lazy prereqs checked' '
309 nothavefalse=yes
311 havefalse=yes
312 test_expect_success LAZY_FALSE 'missing negative lazy prereqs will skip' '
313 havefalse=no
316 if test "$nothavefalse$havefalse" != yesyes
317 then
318 say 'bug in test framework: negative lazy prerequisites do not work'
319 exit 1
322 clean=no
323 test_expect_success 'tests clean up after themselves' '
324 test_when_finished clean=yes
327 if test $clean != yes
328 then
329 say "bug in test framework: basic cleanup command does not work reliably"
330 exit 1
333 test_expect_success 'tests clean up even on failures' "
334 test_must_fail run_sub_test_lib_test \
335 failing-cleanup 'Failing tests with cleanup commands' <<-\\EOF &&
336 test_expect_success 'tests clean up even after a failure' '
337 touch clean-after-failure &&
338 test_when_finished rm clean-after-failure &&
339 (exit 1)
341 test_expect_success 'failure to clean up causes the test to fail' '
342 test_when_finished \"(exit 2)\"
344 test_done
346 check_sub_test_lib_test failing-cleanup <<-\\EOF
347 > not ok 1 - tests clean up even after a failure
348 > # Z
349 > # touch clean-after-failure &&
350 > # test_when_finished rm clean-after-failure &&
351 > # (exit 1)
352 > # Z
353 > not ok 2 - failure to clean up causes the test to fail
354 > # Z
355 > # test_when_finished \"(exit 2)\"
356 > # Z
357 > # failed 2 among 2 test(s)
358 > 1..2
362 ################################################################
363 # Basics of the basics
365 # updating a new file without --add should fail.
366 test_expect_success 'git update-index without --add should fail adding' '
367 test_must_fail git update-index should-be-empty
370 # and with --add it should succeed, even if it is empty (it used to fail).
371 test_expect_success 'git update-index with --add should succeed' '
372 git update-index --add should-be-empty
375 test_expect_success 'writing tree out with git write-tree' '
376 tree=$(git write-tree)
379 # we know the shape and contents of the tree and know the object ID for it.
380 test_expect_success 'validate object ID of a known tree' '
381 test "$tree" = 7bb943559a305bdd6bdee2cef6e5df2413c3d30a
384 # Removing paths.
385 test_expect_success 'git update-index without --remove should fail removing' '
386 rm -f should-be-empty full-of-directories &&
387 test_must_fail git update-index should-be-empty
390 test_expect_success 'git update-index with --remove should be able to remove' '
391 git update-index --remove should-be-empty
394 # Empty tree can be written with recent write-tree.
395 test_expect_success 'git write-tree should be able to write an empty tree' '
396 tree=$(git write-tree)
399 test_expect_success 'validate object ID of a known tree' '
400 test "$tree" = 4b825dc642cb6eb9a060e54bf8d69288fbee4904
403 # Various types of objects
405 # Some filesystems do not support symblic links; on such systems
406 # some expected values are different
407 if test_have_prereq SYMLINKS
408 then
409 expectfilter=cat
410 expectedtree=087704a96baf1c2d1c869a8b084481e121c88b5b
411 expectedptree1=21ae8269cacbe57ae09138dcc3a2887f904d02b3
412 expectedptree2=3c5e5399f3a333eddecce7a9b9465b63f65f51e2
413 else
414 expectfilter='grep -v sym'
415 expectedtree=8e18edf7d7edcf4371a3ac6ae5f07c2641db7c46
416 expectedptree1=cfb8591b2f65de8b8cc1020cd7d9e67e7793b325
417 expectedptree2=ce580448f0148b985a513b693fdf7d802cacb44f
421 test_expect_success 'adding various types of objects with git update-index --add' '
422 mkdir path2 path3 path3/subp3 &&
423 paths="path0 path2/file2 path3/file3 path3/subp3/file3" &&
425 for p in $paths
427 echo "hello $p" >$p || exit 1
428 if test_have_prereq SYMLINKS
429 then
430 ln -s "hello $p" ${p}sym || exit 1
432 done
433 ) &&
434 find path* ! -type d -print | xargs git update-index --add
437 # Show them and see that matches what we expect.
438 test_expect_success 'showing stage with git ls-files --stage' '
439 git ls-files --stage >current
442 test_expect_success 'validate git ls-files output for a known tree' '
443 $expectfilter >expected <<-\EOF &&
444 100644 f87290f8eb2cbbea7857214459a0739927eab154 0 path0
445 120000 15a98433ae33114b085f3eb3bb03b832b3180a01 0 path0sym
446 100644 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 0 path2/file2
447 120000 d8ce161addc5173867a3c3c730924388daedbc38 0 path2/file2sym
448 100644 0aa34cae68d0878578ad119c86ca2b5ed5b28376 0 path3/file3
449 120000 8599103969b43aff7e430efea79ca4636466794f 0 path3/file3sym
450 100644 00fb5908cb97c2564a9783c0c64087333b3b464f 0 path3/subp3/file3
451 120000 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c 0 path3/subp3/file3sym
453 test_cmp expected current
456 test_expect_success 'writing tree out with git write-tree' '
457 tree=$(git write-tree)
460 test_expect_success 'validate object ID for a known tree' '
461 test "$tree" = "$expectedtree"
464 test_expect_success 'showing tree with git ls-tree' '
465 git ls-tree $tree >current
468 test_expect_success SYMLINKS 'git ls-tree output for a known tree' '
469 cat >expected <<-\EOF &&
470 100644 blob f87290f8eb2cbbea7857214459a0739927eab154 path0
471 120000 blob 15a98433ae33114b085f3eb3bb03b832b3180a01 path0sym
472 040000 tree 58a09c23e2ca152193f2786e06986b7b6712bdbe path2
473 040000 tree 21ae8269cacbe57ae09138dcc3a2887f904d02b3 path3
475 test_cmp expected current
478 # This changed in ls-tree pathspec change -- recursive does
479 # not show tree nodes anymore.
480 test_expect_success 'showing tree with git ls-tree -r' '
481 git ls-tree -r $tree >current
484 test_expect_success 'git ls-tree -r output for a known tree' '
485 $expectfilter >expected <<-\EOF &&
486 100644 blob f87290f8eb2cbbea7857214459a0739927eab154 path0
487 120000 blob 15a98433ae33114b085f3eb3bb03b832b3180a01 path0sym
488 100644 blob 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 path2/file2
489 120000 blob d8ce161addc5173867a3c3c730924388daedbc38 path2/file2sym
490 100644 blob 0aa34cae68d0878578ad119c86ca2b5ed5b28376 path3/file3
491 120000 blob 8599103969b43aff7e430efea79ca4636466794f path3/file3sym
492 100644 blob 00fb5908cb97c2564a9783c0c64087333b3b464f path3/subp3/file3
493 120000 blob 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c path3/subp3/file3sym
495 test_cmp expected current
498 # But with -r -t we can have both.
499 test_expect_success 'showing tree with git ls-tree -r -t' '
500 git ls-tree -r -t $tree >current
503 test_expect_success SYMLINKS 'git ls-tree -r output for a known tree' '
504 cat >expected <<-\EOF &&
505 100644 blob f87290f8eb2cbbea7857214459a0739927eab154 path0
506 120000 blob 15a98433ae33114b085f3eb3bb03b832b3180a01 path0sym
507 040000 tree 58a09c23e2ca152193f2786e06986b7b6712bdbe path2
508 100644 blob 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 path2/file2
509 120000 blob d8ce161addc5173867a3c3c730924388daedbc38 path2/file2sym
510 040000 tree 21ae8269cacbe57ae09138dcc3a2887f904d02b3 path3
511 100644 blob 0aa34cae68d0878578ad119c86ca2b5ed5b28376 path3/file3
512 120000 blob 8599103969b43aff7e430efea79ca4636466794f path3/file3sym
513 040000 tree 3c5e5399f3a333eddecce7a9b9465b63f65f51e2 path3/subp3
514 100644 blob 00fb5908cb97c2564a9783c0c64087333b3b464f path3/subp3/file3
515 120000 blob 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c path3/subp3/file3sym
517 test_cmp expected current
520 test_expect_success 'writing partial tree out with git write-tree --prefix' '
521 ptree=$(git write-tree --prefix=path3)
524 test_expect_success 'validate object ID for a known tree' '
525 test "$ptree" = "$expectedptree1"
528 test_expect_success 'writing partial tree out with git write-tree --prefix' '
529 ptree=$(git write-tree --prefix=path3/subp3)
532 test_expect_success 'validate object ID for a known tree' '
533 test "$ptree" = "$expectedptree2"
536 test_expect_success 'put invalid objects into the index' '
537 rm -f .git/index &&
538 cat >badobjects <<-\EOF &&
539 100644 blob 1000000000000000000000000000000000000000 dir/file1
540 100644 blob 2000000000000000000000000000000000000000 dir/file2
541 100644 blob 3000000000000000000000000000000000000000 dir/file3
542 100644 blob 4000000000000000000000000000000000000000 dir/file4
543 100644 blob 5000000000000000000000000000000000000000 dir/file5
545 git update-index --index-info <badobjects
548 test_expect_success 'writing this tree without --missing-ok' '
549 test_must_fail git write-tree
552 test_expect_success 'writing this tree with --missing-ok' '
553 git write-tree --missing-ok
557 ################################################################
558 test_expect_success 'git read-tree followed by write-tree should be idempotent' '
559 rm -f .git/index
560 git read-tree $tree &&
561 test -f .git/index &&
562 newtree=$(git write-tree) &&
563 test "$newtree" = "$tree"
566 test_expect_success 'validate git diff-files output for a know cache/work tree state' '
567 $expectfilter >expected <<\EOF &&
568 :100644 100644 f87290f8eb2cbbea7857214459a0739927eab154 0000000000000000000000000000000000000000 M path0
569 :120000 120000 15a98433ae33114b085f3eb3bb03b832b3180a01 0000000000000000000000000000000000000000 M path0sym
570 :100644 100644 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 0000000000000000000000000000000000000000 M path2/file2
571 :120000 120000 d8ce161addc5173867a3c3c730924388daedbc38 0000000000000000000000000000000000000000 M path2/file2sym
572 :100644 100644 0aa34cae68d0878578ad119c86ca2b5ed5b28376 0000000000000000000000000000000000000000 M path3/file3
573 :120000 120000 8599103969b43aff7e430efea79ca4636466794f 0000000000000000000000000000000000000000 M path3/file3sym
574 :100644 100644 00fb5908cb97c2564a9783c0c64087333b3b464f 0000000000000000000000000000000000000000 M path3/subp3/file3
575 :120000 120000 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c 0000000000000000000000000000000000000000 M path3/subp3/file3sym
577 git diff-files >current &&
578 test_cmp current expected
581 test_expect_success 'git update-index --refresh should succeed' '
582 git update-index --refresh
585 test_expect_success 'no diff after checkout and git update-index --refresh' '
586 git diff-files >current &&
587 cmp -s current /dev/null
590 ################################################################
591 P=$expectedtree
593 test_expect_success 'git commit-tree records the correct tree in a commit' '
594 commit0=$(echo NO | git commit-tree $P) &&
595 tree=$(git show --pretty=raw $commit0 |
596 sed -n -e "s/^tree //p" -e "/^author /q") &&
597 test "z$tree" = "z$P"
600 test_expect_success 'git commit-tree records the correct parent in a commit' '
601 commit1=$(echo NO | git commit-tree $P -p $commit0) &&
602 parent=$(git show --pretty=raw $commit1 |
603 sed -n -e "s/^parent //p" -e "/^author /q") &&
604 test "z$commit0" = "z$parent"
607 test_expect_success 'git commit-tree omits duplicated parent in a commit' '
608 commit2=$(echo NO | git commit-tree $P -p $commit0 -p $commit0) &&
609 parent=$(git show --pretty=raw $commit2 |
610 sed -n -e "s/^parent //p" -e "/^author /q" |
611 sort -u) &&
612 test "z$commit0" = "z$parent" &&
613 numparent=$(git show --pretty=raw $commit2 |
614 sed -n -e "s/^parent //p" -e "/^author /q" |
615 wc -l) &&
616 test $numparent = 1
619 test_expect_success 'update-index D/F conflict' '
620 mv path0 tmp &&
621 mv path2 path0 &&
622 mv tmp path2 &&
623 git update-index --add --replace path2 path0/file2 &&
624 numpath0=$(git ls-files path0 | wc -l) &&
625 test $numpath0 = 1
628 test_expect_success 'very long name in the index handled sanely' '
630 a=a && # 1
631 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a && # 16
632 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a && # 256
633 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a && # 4096
634 a=${a}q &&
636 >path4 &&
637 git update-index --add path4 &&
639 git ls-files -s path4 |
640 sed -e "s/ .*/ /" |
641 tr -d "\012"
642 echo "$a"
643 ) | git update-index --index-info &&
644 len=$(git ls-files "a*" | wc -c) &&
645 test $len = 4098
648 test_done