]> git.ipfire.org Git - thirdparty/git.git/blame - t/t0000-basic.sh
t0060: move tests of real_path() from t0000 to here
[thirdparty/git.git] / t / t0000-basic.sh
CommitLineData
e1970ce4
JH
1#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano
4#
5
6test_description='Test the very basics part #1.
7
8The rest of the test suite does not check the basic operation of git
9plumbing commands to work very carefully. Their job is to concentrate
10on tricky features that caused bugs in the past to detect regression.
11
12This test runs very basic features, like registering things in cache,
13writing tree, etc.
14
15Note that this test *deliberately* hard-codes many expected object
16IDs. When object ID computation changes, like in the previous case of
17swapping compression and hashing order, the person who is making the
18modification *should* take notice and update the test vectors here.
19'
eea42069
JH
20
21################################################################
e2b70087 22# It appears that people try to run tests without building...
eea42069
JH
23
24../git >/dev/null
25if test $? != 1
26then
27 echo >&2 'You do not seem to have built git yet.'
28 exit 1
29fi
30
e1970ce4
JH
31. ./test-lib.sh
32
33################################################################
5be60078 34# git init has been done in an empty repository.
e1970ce4
JH
35# make sure it is empty.
36
1b5b2b64
SL
37test_expect_success '.git/objects should be empty after git init in an empty repo' '
38 find .git/objects -type f -print >should-be-empty &&
39 test_line_count = 0 should-be-empty
40'
e1970ce4 41
9106c097
LT
42# also it should have 2 subdirectories; no fan-out anymore, pack, and info.
43# 3 is counting "objects" itself
1b5b2b64
SL
44test_expect_success '.git/objects should have 3 subdirectories' '
45 find .git/objects -type d -print >full-of-directories &&
46 test_line_count = 3 full-of-directories
47'
e1970ce4 48
41ac414e
JH
49################################################################
50# Test harness
51test_expect_success 'success is reported like this' '
1b5b2b64 52 :
41ac414e
JH
53'
54test_expect_failure 'pretend we have a known breakage' '
1b5b2b64 55 false
41ac414e 56'
7b905119
ÆAB
57
58test_expect_success 'pretend we have fixed a known breakage (run in sub test-lib)' "
1b5b2b64
SL
59 mkdir passing-todo &&
60 (cd passing-todo &&
61 cat >passing-todo.sh <<-EOF &&
62 #!$SHELL_PATH
63
64 test_description='A passing TODO test
65
66 This is run in a sub test-lib so that we do not get incorrect
67 passing metrics
68 '
69
70 # Point to the t/test-lib.sh, which isn't in ../ as usual
71 TEST_DIRECTORY=\"$TEST_DIRECTORY\"
72 . \"\$TEST_DIRECTORY\"/test-lib.sh
73
74 test_expect_failure 'pretend we have fixed a known breakage' '
75 :
76 '
77
78 test_done
79 EOF
80 chmod +x passing-todo.sh &&
81 ./passing-todo.sh >out 2>err &&
82 ! test -s err &&
83 sed -e 's/^> //' >expect <<-\\EOF &&
84 > ok 1 - pretend we have fixed a known breakage # TODO known breakage
85 > # fixed 1 known breakage(s)
86 > # passed all 1 test(s)
87 > 1..1
88 EOF
89 test_cmp expect out)
7b905119 90"
a7bb3940
JS
91test_set_prereq HAVEIT
92haveit=no
93test_expect_success HAVEIT 'test runs if prerequisite is satisfied' '
1b5b2b64
SL
94 test_have_prereq HAVEIT &&
95 haveit=yes
a7bb3940
JS
96'
97donthaveit=yes
98test_expect_success DONTHAVEIT 'unmet prerequisite causes test to be skipped' '
1b5b2b64 99 donthaveit=no
a7bb3940
JS
100'
101if test $haveit$donthaveit != yesyes
102then
103 say "bug in test framework: prerequisite tags do not work reliably"
93a57246
ÆAB
104 exit 1
105fi
106
107test_set_prereq HAVETHIS
108haveit=no
109test_expect_success HAVETHIS,HAVEIT 'test runs if prerequisites are satisfied' '
1b5b2b64
SL
110 test_have_prereq HAVEIT &&
111 test_have_prereq HAVETHIS &&
112 haveit=yes
93a57246
ÆAB
113'
114donthaveit=yes
115test_expect_success HAVEIT,DONTHAVEIT 'unmet prerequisites causes test to be skipped' '
1b5b2b64 116 donthaveit=no
93a57246 117'
ce60653e
ÆAB
118donthaveiteither=yes
119test_expect_success DONTHAVEIT,HAVEIT 'unmet prerequisites causes test to be skipped' '
1b5b2b64 120 donthaveiteither=no
ce60653e
ÆAB
121'
122if test $haveit$donthaveit$donthaveiteither != yesyesyes
93a57246
ÆAB
123then
124 say "bug in test framework: multiple prerequisite tags do not work reliably"
a7bb3940
JS
125 exit 1
126fi
41ac414e 127
b6b0afdc
JN
128clean=no
129test_expect_success 'tests clean up after themselves' '
1b5b2b64 130 test_when_finished clean=yes
b6b0afdc
JN
131'
132
892e6f7e 133if test $clean != yes
b6b0afdc 134then
892e6f7e 135 say "bug in test framework: basic cleanup command does not work reliably"
b6b0afdc
JN
136 exit 1
137fi
138
892e6f7e 139test_expect_success 'tests clean up even on failures' "
1b5b2b64
SL
140 mkdir failing-cleanup &&
141 (
142 cd failing-cleanup &&
143
144 cat >failing-cleanup.sh <<-EOF &&
145 #!$SHELL_PATH
146
147 test_description='Failing tests with cleanup commands'
148
149 # Point to the t/test-lib.sh, which isn't in ../ as usual
150 TEST_DIRECTORY=\"$TEST_DIRECTORY\"
151 . \"\$TEST_DIRECTORY\"/test-lib.sh
152
153 test_expect_success 'tests clean up even after a failure' '
154 touch clean-after-failure &&
155 test_when_finished rm clean-after-failure &&
156 (exit 1)
157 '
158 test_expect_success 'failure to clean up causes the test to fail' '
159 test_when_finished \"(exit 2)\"
160 '
161 test_done
162
163 EOF
164
165 chmod +x failing-cleanup.sh &&
166 test_must_fail ./failing-cleanup.sh >out 2>err &&
167 ! test -s err &&
168 ! test -f \"trash directory.failing-cleanup/clean-after-failure\" &&
169 sed -e 's/Z$//' -e 's/^> //' >expect <<-\\EOF &&
170 > not ok - 1 tests clean up even after a failure
171 > # Z
172 > # touch clean-after-failure &&
173 > # test_when_finished rm clean-after-failure &&
174 > # (exit 1)
175 > # Z
176 > not ok - 2 failure to clean up causes the test to fail
177 > # Z
178 > # test_when_finished \"(exit 2)\"
179 > # Z
180 > # failed 2 among 2 test(s)
181 > 1..2
182 EOF
183 test_cmp expect out
184 )
892e6f7e
ÆAB
185"
186
e1970ce4
JH
187################################################################
188# Basics of the basics
189
190# updating a new file without --add should fail.
1b5b2b64
SL
191test_expect_success 'git update-index without --add should fail adding' '
192 test_must_fail git update-index should-be-empty
41ac414e 193'
e1970ce4
JH
194
195# and with --add it should succeed, even if it is empty (it used to fail).
1b5b2b64
SL
196test_expect_success 'git update-index with --add should succeed' '
197 git update-index --add should-be-empty
198'
e1970ce4 199
1b5b2b64
SL
200test_expect_success 'writing tree out with git write-tree' '
201 tree=$(git write-tree)
202'
e1970ce4
JH
203
204# we know the shape and contents of the tree and know the object ID for it.
1b5b2b64
SL
205test_expect_success 'validate object ID of a known tree' '
206 test "$tree" = 7bb943559a305bdd6bdee2cef6e5df2413c3d30a
207 '
e1970ce4
JH
208
209# Removing paths.
1b5b2b64
SL
210test_expect_success 'git update-index without --remove should fail removing' '
211 rm -f should-be-empty full-of-directories &&
212 test_must_fail git update-index should-be-empty
41ac414e 213'
e1970ce4 214
1b5b2b64
SL
215test_expect_success 'git update-index with --remove should be able to remove' '
216 git update-index --remove should-be-empty
217'
e1970ce4
JH
218
219# Empty tree can be written with recent write-tree.
1b5b2b64
SL
220test_expect_success 'git write-tree should be able to write an empty tree' '
221 tree=$(git write-tree)
222'
e1970ce4 223
1b5b2b64
SL
224test_expect_success 'validate object ID of a known tree' '
225 test "$tree" = 4b825dc642cb6eb9a060e54bf8d69288fbee4904
226'
e1970ce4
JH
227
228# Various types of objects
1b5b2b64 229
704a3143
JS
230# Some filesystems do not support symblic links; on such systems
231# some expected values are different
704a3143
JS
232if test_have_prereq SYMLINKS
233then
704a3143
JS
234 expectfilter=cat
235 expectedtree=087704a96baf1c2d1c869a8b084481e121c88b5b
236 expectedptree1=21ae8269cacbe57ae09138dcc3a2887f904d02b3
237 expectedptree2=3c5e5399f3a333eddecce7a9b9465b63f65f51e2
238else
239 expectfilter='grep -v sym'
240 expectedtree=8e18edf7d7edcf4371a3ac6ae5f07c2641db7c46
241 expectedptree1=cfb8591b2f65de8b8cc1020cd7d9e67e7793b325
242 expectedptree2=ce580448f0148b985a513b693fdf7d802cacb44f
243fi
244
1b5b2b64
SL
245
246test_expect_success 'adding various types of objects with git update-index --add' '
247 mkdir path2 path3 path3/subp3 &&
248 paths="path0 path2/file2 path3/file3 path3/subp3/file3" &&
249 (
250 for p in $paths
251 do
252 echo "hello $p" >$p || exit 1
253 if test_have_prereq SYMLINKS
254 then
255 ln -s "hello $p" ${p}sym || exit 1
256 fi
257 done
258 ) &&
259 find path* ! -type d -print | xargs git update-index --add
260'
e1970ce4
JH
261
262# Show them and see that matches what we expect.
1b5b2b64
SL
263test_expect_success 'showing stage with git ls-files --stage' '
264 git ls-files --stage >current
265'
266
267test_expect_success 'validate git ls-files output for a known tree' '
268 $expectfilter >expected <<-\EOF &&
269 100644 f87290f8eb2cbbea7857214459a0739927eab154 0 path0
270 120000 15a98433ae33114b085f3eb3bb03b832b3180a01 0 path0sym
271 100644 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 0 path2/file2
272 120000 d8ce161addc5173867a3c3c730924388daedbc38 0 path2/file2sym
273 100644 0aa34cae68d0878578ad119c86ca2b5ed5b28376 0 path3/file3
274 120000 8599103969b43aff7e430efea79ca4636466794f 0 path3/file3sym
275 100644 00fb5908cb97c2564a9783c0c64087333b3b464f 0 path3/subp3/file3
276 120000 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c 0 path3/subp3/file3sym
277 EOF
278 test_cmp expected current
279'
280
281test_expect_success 'writing tree out with git write-tree' '
282 tree=$(git write-tree)
283'
284
285test_expect_success 'validate object ID for a known tree' '
286 test "$tree" = "$expectedtree"
287'
288
289test_expect_success 'showing tree with git ls-tree' '
290 git ls-tree $tree >current
291'
292
293test_expect_success SYMLINKS 'git ls-tree output for a known tree' '
294 cat >expected <<-\EOF &&
295 100644 blob f87290f8eb2cbbea7857214459a0739927eab154 path0
296 120000 blob 15a98433ae33114b085f3eb3bb03b832b3180a01 path0sym
297 040000 tree 58a09c23e2ca152193f2786e06986b7b6712bdbe path2
298 040000 tree 21ae8269cacbe57ae09138dcc3a2887f904d02b3 path3
299 EOF
300 test_cmp expected current
301'
e1970ce4 302
246cc52f
JH
303# This changed in ls-tree pathspec change -- recursive does
304# not show tree nodes anymore.
1b5b2b64
SL
305test_expect_success 'showing tree with git ls-tree -r' '
306 git ls-tree -r $tree >current
307'
308
309test_expect_success 'git ls-tree -r output for a known tree' '
310 $expectfilter >expected <<-\EOF &&
311 100644 blob f87290f8eb2cbbea7857214459a0739927eab154 path0
312 120000 blob 15a98433ae33114b085f3eb3bb03b832b3180a01 path0sym
313 100644 blob 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 path2/file2
314 120000 blob d8ce161addc5173867a3c3c730924388daedbc38 path2/file2sym
315 100644 blob 0aa34cae68d0878578ad119c86ca2b5ed5b28376 path3/file3
316 120000 blob 8599103969b43aff7e430efea79ca4636466794f path3/file3sym
317 100644 blob 00fb5908cb97c2564a9783c0c64087333b3b464f path3/subp3/file3
318 120000 blob 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c path3/subp3/file3sym
319 EOF
320 test_cmp expected current
321'
e1970ce4 322
fdeb6bf5 323# But with -r -t we can have both.
1b5b2b64
SL
324test_expect_success 'showing tree with git ls-tree -r -t' '
325 git ls-tree -r -t $tree >current
326'
3d12d0cf 327
1b5b2b64
SL
328test_expect_success SYMLINKS 'git ls-tree -r output for a known tree' '
329 cat >expected <<-\EOF &&
330 100644 blob f87290f8eb2cbbea7857214459a0739927eab154 path0
331 120000 blob 15a98433ae33114b085f3eb3bb03b832b3180a01 path0sym
332 040000 tree 58a09c23e2ca152193f2786e06986b7b6712bdbe path2
333 100644 blob 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 path2/file2
334 120000 blob d8ce161addc5173867a3c3c730924388daedbc38 path2/file2sym
335 040000 tree 21ae8269cacbe57ae09138dcc3a2887f904d02b3 path3
336 100644 blob 0aa34cae68d0878578ad119c86ca2b5ed5b28376 path3/file3
337 120000 blob 8599103969b43aff7e430efea79ca4636466794f path3/file3sym
338 040000 tree 3c5e5399f3a333eddecce7a9b9465b63f65f51e2 path3/subp3
339 100644 blob 00fb5908cb97c2564a9783c0c64087333b3b464f path3/subp3/file3
340 120000 blob 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c path3/subp3/file3sym
341 EOF
342 test_cmp expected current
343'
3d12d0cf 344
1b5b2b64
SL
345test_expect_success 'writing partial tree out with git write-tree --prefix' '
346 ptree=$(git write-tree --prefix=path3)
41ac414e 347'
3d12d0cf 348
1b5b2b64
SL
349test_expect_success 'validate object ID for a known tree' '
350 test "$ptree" = "$expectedptree1"
351'
352
353test_expect_success 'writing partial tree out with git write-tree --prefix' '
354 ptree=$(git write-tree --prefix=path3/subp3)
355'
356
357test_expect_success 'validate object ID for a known tree' '
358 test "$ptree" = "$expectedptree2"
359'
360
361test_expect_success 'put invalid objects into the index' '
362 rm -f .git/index &&
363 cat >badobjects <<-\EOF &&
364 100644 blob 1000000000000000000000000000000000000000 dir/file1
365 100644 blob 2000000000000000000000000000000000000000 dir/file2
366 100644 blob 3000000000000000000000000000000000000000 dir/file3
367 100644 blob 4000000000000000000000000000000000000000 dir/file4
368 100644 blob 5000000000000000000000000000000000000000 dir/file5
369 EOF
370 git update-index --index-info <badobjects
371'
372
373test_expect_success 'writing this tree without --missing-ok' '
374 test_must_fail git write-tree
375'
376
377test_expect_success 'writing this tree with --missing-ok' '
378 git write-tree --missing-ok
379'
3d12d0cf
JS
380
381
e1970ce4 382################################################################
1b5b2b64
SL
383test_expect_success 'git read-tree followed by write-tree should be idempotent' '
384 rm -f .git/index
385 git read-tree $tree &&
386 test -f .git/index &&
387 newtree=$(git write-tree) &&
388 test "$newtree" = "$tree"
389'
390
391test_expect_success 'validate git diff-files output for a know cache/work tree state' '
392 $expectfilter >expected <<\EOF &&
b6d8f309
JH
393:100644 100644 f87290f8eb2cbbea7857214459a0739927eab154 0000000000000000000000000000000000000000 M path0
394:120000 120000 15a98433ae33114b085f3eb3bb03b832b3180a01 0000000000000000000000000000000000000000 M path0sym
395:100644 100644 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 0000000000000000000000000000000000000000 M path2/file2
396:120000 120000 d8ce161addc5173867a3c3c730924388daedbc38 0000000000000000000000000000000000000000 M path2/file2sym
397:100644 100644 0aa34cae68d0878578ad119c86ca2b5ed5b28376 0000000000000000000000000000000000000000 M path3/file3
398:120000 120000 8599103969b43aff7e430efea79ca4636466794f 0000000000000000000000000000000000000000 M path3/file3sym
399:100644 100644 00fb5908cb97c2564a9783c0c64087333b3b464f 0000000000000000000000000000000000000000 M path3/subp3/file3
400:120000 120000 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c 0000000000000000000000000000000000000000 M path3/subp3/file3sym
e1970ce4 401EOF
1b5b2b64
SL
402 git diff-files >current &&
403 test_cmp current expected
404'
e1970ce4 405
1b5b2b64
SL
406test_expect_success 'git update-index --refresh should succeed' '
407 git update-index --refresh
408'
e1970ce4 409
1b5b2b64
SL
410test_expect_success 'no diff after checkout and git update-index --refresh' '
411 git diff-files >current &&
412 cmp -s current /dev/null
413'
e1970ce4 414
9af0b8db 415################################################################
704a3143 416P=$expectedtree
1b5b2b64
SL
417
418test_expect_success 'git commit-tree records the correct tree in a commit' '
419 commit0=$(echo NO | git commit-tree $P) &&
420 tree=$(git show --pretty=raw $commit0 |
421 sed -n -e "s/^tree //p" -e "/^author /q") &&
422 test "z$tree" = "z$P"
423'
424
425test_expect_success 'git commit-tree records the correct parent in a commit' '
426 commit1=$(echo NO | git commit-tree $P -p $commit0) &&
427 parent=$(git show --pretty=raw $commit1 |
428 sed -n -e "s/^parent //p" -e "/^author /q") &&
429 test "z$commit0" = "z$parent"
430'
431
432test_expect_success 'git commit-tree omits duplicated parent in a commit' '
433 commit2=$(echo NO | git commit-tree $P -p $commit0 -p $commit0) &&
434 parent=$(git show --pretty=raw $commit2 |
435 sed -n -e "s/^parent //p" -e "/^author /q" |
436 sort -u) &&
437 test "z$commit0" = "z$parent" &&
438 numparent=$(git show --pretty=raw $commit2 |
439 sed -n -e "s/^parent //p" -e "/^author /q" |
440 wc -l) &&
441 test $numparent = 1
442'
9af0b8db 443
81a361be
JH
444test_expect_success 'update-index D/F conflict' '
445 mv path0 tmp &&
446 mv path2 path0 &&
447 mv tmp path2 &&
448 git update-index --add --replace path2 path0/file2 &&
449 numpath0=$(git ls-files path0 | wc -l) &&
450 test $numpath0 = 1
451'
452
7fec10b7
JH
453test_expect_success 'very long name in the index handled sanely' '
454
455 a=a && # 1
456 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a && # 16
457 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a && # 256
458 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a && # 4096
459 a=${a}q &&
460
461 >path4 &&
462 git update-index --add path4 &&
463 (
464 git ls-files -s path4 |
465 sed -e "s/ .*/ /" |
466 tr -d "\012"
467 echo "$a"
468 ) | git update-index --index-info &&
469 len=$(git ls-files "a*" | wc -c) &&
470 test $len = 4098
471'
472
e1970ce4 473test_done