]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5300-pack-object.sh
Sync with 2.36.3
[thirdparty/git.git] / t / t5300-pack-object.sh
CommitLineData
8ee378a0
JH
1#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano
4#
5
3604e7c5 6test_description='git pack-object
8ee378a0
JH
7
8'
9. ./test-lib.sh
10
54898998
JK
11test_expect_success 'setup' '
12 rm -f .git/index* &&
13 perl -e "print \"a\" x 4096;" >a &&
14 perl -e "print \"b\" x 4096;" >b &&
15 perl -e "print \"c\" x 4096;" >c &&
16 test-tool genrandom "seed a" 2097152 >a_big &&
17 test-tool genrandom "seed b" 2097152 >b_big &&
18 git update-index --add a a_big b b_big c &&
19 cat c >d && echo foo >>d && git update-index --add d &&
20 tree=$(git write-tree) &&
21 commit=$(git commit-tree $tree </dev/null) &&
22 {
23 echo $tree &&
24 echo $commit &&
25 git ls-tree $tree | sed -e "s/.* \\([0-9a-f]*\\) .*/\\1/"
26 } >obj-list &&
27 {
28 git diff-tree --root -p $commit &&
29 while read object
30 do
31 t=$(git cat-file -t $object) &&
32 git cat-file $t $object || return 1
33 done <obj-list
34 } >expect
35'
8ee378a0 36
fb20d4b1
ÆAB
37test_expect_success 'setup pack-object <stdin' '
38 git init pack-object-stdin &&
39 test_commit -C pack-object-stdin one &&
40 test_commit -C pack-object-stdin two
41
42'
43
44test_expect_success 'pack-object <stdin parsing: basic [|--revs]' '
45 cat >in <<-EOF &&
46 $(git -C pack-object-stdin rev-parse one)
47 EOF
48
49 git -C pack-object-stdin pack-objects basic-stdin <in &&
50 idx=$(echo pack-object-stdin/basic-stdin-*.idx) &&
51 git show-index <"$idx" >actual &&
52 test_line_count = 1 actual &&
53
54 git -C pack-object-stdin pack-objects --revs basic-stdin-revs <in &&
55 idx=$(echo pack-object-stdin/basic-stdin-revs-*.idx) &&
56 git show-index <"$idx" >actual &&
57 test_line_count = 3 actual
58'
59
60test_expect_success 'pack-object <stdin parsing: [|--revs] bad line' '
61 cat >in <<-EOF &&
62 $(git -C pack-object-stdin rev-parse one)
63 garbage
64 $(git -C pack-object-stdin rev-parse two)
65 EOF
66
67 sed "s/^> //g" >err.expect <<-EOF &&
68 fatal: expected object ID, got garbage:
69 > garbage
70
71 EOF
72 test_must_fail git -C pack-object-stdin pack-objects bad-line-stdin <in 2>err.actual &&
73 test_cmp err.expect err.actual &&
74
75 cat >err.expect <<-EOF &&
76 fatal: bad revision '"'"'garbage'"'"'
77 EOF
78 test_must_fail git -C pack-object-stdin pack-objects --revs bad-line-stdin-revs <in 2>err.actual &&
79 test_cmp err.expect err.actual
80'
81
82test_expect_success 'pack-object <stdin parsing: [|--revs] empty line' '
83 cat >in <<-EOF &&
84 $(git -C pack-object-stdin rev-parse one)
85
86 $(git -C pack-object-stdin rev-parse two)
87 EOF
88
89 sed -e "s/^> //g" -e "s/Z$//g" >err.expect <<-EOF &&
90 fatal: expected object ID, got garbage:
91 > Z
92
93 EOF
94 test_must_fail git -C pack-object-stdin pack-objects empty-line-stdin <in 2>err.actual &&
95 test_cmp err.expect err.actual &&
96
97 git -C pack-object-stdin pack-objects --revs empty-line-stdin-revs <in &&
98 idx=$(echo pack-object-stdin/empty-line-stdin-revs-*.idx) &&
99 git show-index <"$idx" >actual &&
100 test_line_count = 3 actual
101'
102
103test_expect_success 'pack-object <stdin parsing: [|--revs] with --stdin' '
104 cat >in <<-EOF &&
105 $(git -C pack-object-stdin rev-parse one)
106 $(git -C pack-object-stdin rev-parse two)
107 EOF
108
109 # There is the "--stdin-packs is incompatible with --revs"
110 # test below, but we should make sure that the revision.c
111 # --stdin is not picked up
112 cat >err.expect <<-EOF &&
113 fatal: disallowed abbreviated or ambiguous option '"'"'stdin'"'"'
114 EOF
115 test_must_fail git -C pack-object-stdin pack-objects stdin-with-stdin-option --stdin <in 2>err.actual &&
116 test_cmp err.expect err.actual &&
117
118 test_must_fail git -C pack-object-stdin pack-objects --stdin --revs stdin-with-stdin-option-revs 2>err.actual <in &&
119 test_cmp err.expect err.actual
120'
121
561fa035
ÆAB
122test_expect_success 'pack-object <stdin parsing: --stdin-packs handles garbage' '
123 cat >in <<-EOF &&
124 $(git -C pack-object-stdin rev-parse one)
125 $(git -C pack-object-stdin rev-parse two)
126 EOF
127
128 # That we get "two" and not "one" has to do with OID
129 # ordering. It happens to be the same here under SHA-1 and
130 # SHA-256. See commentary in pack-objects.c
131 cat >err.expect <<-EOF &&
132 fatal: could not find pack '"'"'$(git -C pack-object-stdin rev-parse two)'"'"'
133 EOF
134 test_must_fail git \
135 -C pack-object-stdin \
136 pack-objects stdin-with-stdin-option --stdin-packs \
137 <in 2>err.actual &&
138 test_cmp err.expect err.actual
139'
140
95356789
JK
141# usage: check_deltas <stderr_from_pack_objects> <cmp_op> <nr_deltas>
142# e.g.: check_deltas stderr -gt 0
143check_deltas() {
144 deltas=$(perl -lne '/delta (\d+)/ and print $1' "$1") &&
145 shift &&
146 if ! test "$deltas" "$@"
147 then
148 echo >&2 "unexpected number of deltas (compared $delta $*)"
149 return 1
150 fi
151}
152
54898998 153test_expect_success 'pack without delta' '
95356789
JK
154 packname_1=$(git pack-objects --progress --window=0 test-1 \
155 <obj-list 2>stderr) &&
156 check_deltas stderr = 0
54898998 157'
8ee378a0 158
54898998
JK
159test_expect_success 'pack-objects with bogus arguments' '
160 test_must_fail git pack-objects --window=0 test-1 blah blah <obj-list
161'
8ee378a0 162
54898998 163check_unpack () {
d42bab44
NS
164 local packname="$1" &&
165 local object_list="$2" &&
166 local git_config="$3" &&
54898998 167 test_when_finished "rm -rf git2" &&
d42bab44
NS
168 git $git_config init --bare git2 &&
169 (
170 git $git_config -C git2 unpack-objects -n <"$packname".pack &&
171 git $git_config -C git2 unpack-objects <"$packname".pack &&
172 git $git_config -C git2 cat-file --batch-check="%(objectname)"
173 ) <"$object_list" >current &&
174 cmp "$object_list" current
54898998
JK
175}
176
177test_expect_success 'unpack without delta' '
d42bab44
NS
178 check_unpack test-1-${packname_1} obj-list
179'
180
181BATCH_CONFIGURATION='-c core.fsync=loose-object -c core.fsyncmethod=batch'
182
183test_expect_success 'unpack without delta (core.fsyncmethod=batch)' '
184 check_unpack test-1-${packname_1} obj-list "$BATCH_CONFIGURATION"
54898998 185'
8ee378a0 186
54898998 187test_expect_success 'pack with REF_DELTA' '
95356789
JK
188 packname_2=$(git pack-objects --progress test-2 <obj-list 2>stderr) &&
189 check_deltas stderr -gt 0
54898998 190'
8ee378a0 191
54898998 192test_expect_success 'unpack with REF_DELTA' '
d42bab44
NS
193 check_unpack test-2-${packname_2} obj-list
194'
195
196test_expect_success 'unpack with REF_DELTA (core.fsyncmethod=batch)' '
197 check_unpack test-2-${packname_2} obj-list "$BATCH_CONFIGURATION"
54898998 198'
ac527b0b 199
54898998 200test_expect_success 'pack with OFS_DELTA' '
95356789
JK
201 packname_3=$(git pack-objects --progress --delta-base-offset test-3 \
202 <obj-list 2>stderr) &&
203 check_deltas stderr -gt 0
54898998 204'
ac527b0b 205
54898998 206test_expect_success 'unpack with OFS_DELTA' '
d42bab44
NS
207 check_unpack test-3-${packname_3} obj-list
208'
209
210test_expect_success 'unpack with OFS_DELTA (core.fsyncmethod=batch)' '
211 check_unpack test-3-${packname_3} obj-list "$BATCH_CONFIGURATION"
54898998 212'
ac527b0b 213
d93f7c18 214test_expect_success 'compare delta flavors' '
94221d22 215 perl -e '\''
d93f7c18
AL
216 defined($_ = -s $_) or die for @ARGV;
217 exit 1 if $ARGV[0] <= $ARGV[1];
218 '\'' test-2-$packname_2.pack test-3-$packname_3.pack
219'
ac527b0b 220
54898998
JK
221check_use_objects () {
222 test_when_finished "rm -rf git2" &&
223 git init --bare git2 &&
224 cp "$1".pack "$1".idx git2/objects/pack &&
225 (
226 cd git2 &&
227 git diff-tree --root -p $commit &&
228 while read object
229 do
230 t=$(git cat-file -t $object) &&
231 git cat-file $t $object || exit 1
232 done
233 ) <obj-list >current &&
234 cmp expect current
235}
236
237test_expect_success 'use packed objects' '
238 check_use_objects test-1-${packname_1}
239'
1f688557 240
54898998
JK
241test_expect_success 'use packed deltified (REF_DELTA) objects' '
242 check_use_objects test-2-${packname_2}
243'
1f688557 244
54898998
JK
245test_expect_success 'use packed deltified (OFS_DELTA) objects' '
246 check_use_objects test-3-${packname_3}
247'
f9253394 248
6e180cdc
JH
249test_expect_success 'survive missing objects/pack directory' '
250 (
251 rm -fr missing-pack &&
252 mkdir missing-pack &&
253 cd missing-pack &&
254 git init &&
51b85471 255 GOP=.git/objects/pack &&
6e180cdc
JH
256 rm -fr $GOP &&
257 git index-pack --stdin --keep=test <../test-3-${packname_3}.pack &&
258 test -f $GOP/pack-${packname_3}.pack &&
ce1a0473 259 cmp $GOP/pack-${packname_3}.pack ../test-3-${packname_3}.pack &&
6e180cdc 260 test -f $GOP/pack-${packname_3}.idx &&
ce1a0473 261 cmp $GOP/pack-${packname_3}.idx ../test-3-${packname_3}.idx &&
6e180cdc
JH
262 test -f $GOP/pack-${packname_3}.keep
263 )
264'
265
f9253394
JH
266test_expect_success \
267 'verify pack' \
5be60078 268 'git verify-pack test-1-${packname_1}.idx \
ac527b0b
NP
269 test-2-${packname_2}.idx \
270 test-3-${packname_3}.idx'
f9253394 271
4b480c67
NP
272test_expect_success \
273 'verify pack -v' \
274 'git verify-pack -v test-1-${packname_1}.idx \
275 test-2-${packname_2}.idx \
276 test-3-${packname_3}.idx'
277
f9253394 278test_expect_success \
63405283 279 'verify-pack catches mismatched .idx and .pack files' \
a5878961
JH
280 'cat test-1-${packname_1}.idx >test-3.idx &&
281 cat test-2-${packname_2}.pack >test-3.pack &&
5be60078 282 if git verify-pack test-3.idx
f9253394
JH
283 then false
284 else :;
63405283 285 fi'
f9253394 286
63405283
JS
287test_expect_success \
288 'verify-pack catches a corrupted pack signature' \
289 'cat test-1-${packname_1}.pack >test-3.pack &&
b689ccf6 290 echo | dd of=test-3.pack count=1 bs=1 conv=notrunc seek=2 &&
5be60078 291 if git verify-pack test-3.idx
f9253394
JH
292 then false
293 else :;
63405283 294 fi'
f9253394 295
63405283
JS
296test_expect_success \
297 'verify-pack catches a corrupted pack version' \
298 'cat test-1-${packname_1}.pack >test-3.pack &&
b689ccf6 299 echo | dd of=test-3.pack count=1 bs=1 conv=notrunc seek=7 &&
5be60078 300 if git verify-pack test-3.idx
f9253394
JH
301 then false
302 else :;
63405283 303 fi'
f9253394 304
63405283
JS
305test_expect_success \
306 'verify-pack catches a corrupted type/size of the 1st packed object data' \
307 'cat test-1-${packname_1}.pack >test-3.pack &&
b689ccf6 308 echo | dd of=test-3.pack count=1 bs=1 conv=notrunc seek=12 &&
5be60078 309 if git verify-pack test-3.idx
f9253394
JH
310 then false
311 else :;
63405283 312 fi'
f9253394 313
63405283
JS
314test_expect_success \
315 'verify-pack catches a corrupted sum of the index file itself' \
d6cd9ac9
EP
316 'l=$(wc -c <test-3.idx) &&
317 l=$(expr $l - 20) &&
a5878961 318 cat test-1-${packname_1}.pack >test-3.pack &&
b689ccf6 319 printf "%20s" "" | dd of=test-3.idx count=20 bs=1 conv=notrunc seek=$l &&
5be60078 320 if git verify-pack test-3.pack
c5ced645
JH
321 then false
322 else :;
63405283 323 fi'
f9253394 324
9cf6d335
SV
325test_expect_success \
326 'build pack index for an existing pack' \
a5878961 327 'cat test-1-${packname_1}.pack >test-3.pack &&
3604e7c5 328 git index-pack -o tmp.idx test-3.pack &&
9cf6d335
SV
329 cmp tmp.idx test-1-${packname_1}.idx &&
330
1f52cdfa 331 git index-pack --promisor=message test-3.pack &&
9cf6d335 332 cmp test-3.idx test-1-${packname_1}.idx &&
1f52cdfa
DS
333 echo message >expect &&
334 test_cmp expect test-3.promisor &&
9cf6d335 335
a5878961 336 cat test-2-${packname_2}.pack >test-3.pack &&
3604e7c5 337 git index-pack -o tmp.idx test-2-${packname_2}.pack &&
9cf6d335
SV
338 cmp tmp.idx test-2-${packname_2}.idx &&
339
3604e7c5 340 git index-pack test-3.pack &&
9cf6d335
SV
341 cmp test-3.idx test-2-${packname_2}.idx &&
342
a5878961 343 cat test-3-${packname_3}.pack >test-3.pack &&
3604e7c5 344 git index-pack -o tmp.idx test-3-${packname_3}.pack &&
ac527b0b
NP
345 cmp tmp.idx test-3-${packname_3}.idx &&
346
3604e7c5 347 git index-pack test-3.pack &&
ac527b0b
NP
348 cmp test-3.idx test-3-${packname_3}.idx &&
349
0e94242d
JH
350 cat test-1-${packname_1}.pack >test-4.pack &&
351 rm -f test-4.keep &&
352 git index-pack --keep=why test-4.pack &&
353 cmp test-1-${packname_1}.idx test-4.idx &&
354 test -f test-4.keep &&
355
9cf6d335
SV
356 :'
357
f2898cfa 358test_expect_success 'unpacking with --strict' '
c0e809e5 359
c0e809e5
JH
360 for j in a b c d e f g
361 do
362 for i in 0 1 2 3 4 5 6 7 8 9
363 do
364 o=$(echo $j$i | git hash-object -w --stdin) &&
d0fd9931 365 echo "100644 $o 0 $j$i" || return 1
c0e809e5
JH
366 done
367 done >LIST &&
368 rm -f .git/index &&
369 git update-index --index-info <LIST &&
370 LIST=$(git write-tree) &&
371 rm -f .git/index &&
372 head -n 10 LIST | git update-index --index-info &&
373 LI=$(git write-tree) &&
374 rm -f .git/index &&
375 tail -n 10 LIST | git update-index --index-info &&
376 ST=$(git write-tree) &&
a4d4e32a
PK
377 git rev-list --objects "$LIST" "$LI" "$ST" >actual &&
378 PACK5=$( git pack-objects test-5 <actual ) &&
08495412 379 PACK6=$( test_write_lines "$LIST" "$LI" "$ST" | git pack-objects test-6 ) &&
c0e809e5
JH
380 test_create_repo test-5 &&
381 (
382 cd test-5 &&
383 git unpack-objects --strict <../test-5-$PACK5.pack &&
384 git ls-tree -r $LIST &&
385 git ls-tree -r $LI &&
386 git ls-tree -r $ST
387 ) &&
388 test_create_repo test-6 &&
389 (
390 # tree-only into empty repo -- many unreachables
391 cd test-6 &&
392 test_must_fail git unpack-objects --strict <../test-6-$PACK6.pack
393 ) &&
394 (
395 # already populated -- no unreachables
396 cd test-5 &&
397 git unpack-objects --strict <../test-6-$PACK6.pack
398 )
399'
400
38a5739d
MK
401test_expect_success 'index-pack with --strict' '
402
403 for j in a b c d e f g
404 do
405 for i in 0 1 2 3 4 5 6 7 8 9
406 do
407 o=$(echo $j$i | git hash-object -w --stdin) &&
d0fd9931 408 echo "100644 $o 0 $j$i" || return 1
38a5739d
MK
409 done
410 done >LIST &&
411 rm -f .git/index &&
412 git update-index --index-info <LIST &&
413 LIST=$(git write-tree) &&
414 rm -f .git/index &&
415 head -n 10 LIST | git update-index --index-info &&
416 LI=$(git write-tree) &&
417 rm -f .git/index &&
418 tail -n 10 LIST | git update-index --index-info &&
419 ST=$(git write-tree) &&
a4d4e32a
PK
420 git rev-list --objects "$LIST" "$LI" "$ST" >actual &&
421 PACK5=$( git pack-objects test-5 <actual ) &&
08495412 422 PACK6=$( test_write_lines "$LIST" "$LI" "$ST" | git pack-objects test-6 ) &&
38a5739d
MK
423 test_create_repo test-7 &&
424 (
425 cd test-7 &&
426 git index-pack --strict --stdin <../test-5-$PACK5.pack &&
427 git ls-tree -r $LIST &&
428 git ls-tree -r $LI &&
429 git ls-tree -r $ST
430 ) &&
431 test_create_repo test-8 &&
432 (
433 # tree-only into empty repo -- many unreachables
434 cd test-8 &&
435 test_must_fail git index-pack --strict --stdin <../test-6-$PACK6.pack
436 ) &&
437 (
438 # already populated -- no unreachables
439 cd test-7 &&
440 git index-pack --strict --stdin <../test-6-$PACK6.pack
441 )
442'
443
2fca19fb 444test_expect_success 'honor pack.packSizeLimit' '
07cf0f24 445 git config pack.packSizeLimit 3m &&
2fca19fb 446 packname_10=$(git pack-objects test-10 <obj-list) &&
07cf0f24 447 test 2 = $(ls test-10-*.pack | wc -l)
2fca19fb
NP
448'
449
450test_expect_success 'verify resulting packs' '
451 git verify-pack test-10-*.pack
452'
453
07cf0f24
NP
454test_expect_success 'tolerate packsizelimit smaller than biggest object' '
455 git config pack.packSizeLimit 1 &&
2fca19fb 456 packname_11=$(git pack-objects test-11 <obj-list) &&
720c9f7b 457 test 5 = $(ls test-11-*.pack | wc -l)
a1e4760f
NP
458'
459
2fca19fb
NP
460test_expect_success 'verify resulting packs' '
461 git verify-pack test-11-*.pack
462'
463
7176a314
JK
464test_expect_success 'set up pack for non-repo tests' '
465 # make sure we have a pack with no matching index file
466 cp test-1-*.pack foo.pack
467'
468
469test_expect_success 'index-pack --stdin complains of non-repo' '
371c4079 470 nongit test_must_fail git index-pack --object-format=$(test_oid algo) --stdin <foo.pack &&
7176a314
JK
471 test_path_is_missing non-repo/.git
472'
473
474test_expect_success 'index-pack <pack> works in non-repo' '
371c4079 475 nongit git index-pack --object-format=$(test_oid algo) ../foo.pack &&
7176a314
JK
476 test_path_is_file foo.idx
477'
478
14a9bd28
JK
479test_expect_success 'index-pack --strict <pack> works in non-repo' '
480 rm -f foo.idx &&
371c4079 481 nongit git index-pack --strict --object-format=$(test_oid algo) ../foo.pack &&
14a9bd28
JK
482 test_path_is_file foo.idx
483'
484
27d578d9
JK
485test_expect_success !PTHREADS,!FAIL_PREREQS \
486 'index-pack --threads=N or pack.threads=N warns when no pthreads' '
967a3eaf
ÆAB
487 test_must_fail git index-pack --threads=2 2>err &&
488 grep ^warning: err >warnings &&
489 test_line_count = 1 warnings &&
490 grep -F "no threads support, ignoring --threads=2" err &&
491
492 test_must_fail git -c pack.threads=2 index-pack 2>err &&
493 grep ^warning: err >warnings &&
494 test_line_count = 1 warnings &&
495 grep -F "no threads support, ignoring pack.threads" err &&
496
497 test_must_fail git -c pack.threads=2 index-pack --threads=4 2>err &&
498 grep ^warning: err >warnings &&
499 test_line_count = 2 warnings &&
500 grep -F "no threads support, ignoring --threads=4" err &&
501 grep -F "no threads support, ignoring pack.threads" err
502'
503
27d578d9
JK
504test_expect_success !PTHREADS,!FAIL_PREREQS \
505 'pack-objects --threads=N or pack.threads=N warns when no pthreads' '
967a3eaf
ÆAB
506 git pack-objects --threads=2 --stdout --all </dev/null >/dev/null 2>err &&
507 grep ^warning: err >warnings &&
508 test_line_count = 1 warnings &&
509 grep -F "no threads support, ignoring --threads" err &&
510
511 git -c pack.threads=2 pack-objects --stdout --all </dev/null >/dev/null 2>err &&
512 grep ^warning: err >warnings &&
2e96d815 513 test_line_count = 1 warnings &&
967a3eaf
ÆAB
514 grep -F "no threads support, ignoring pack.threads" err &&
515
516 git -c pack.threads=2 pack-objects --threads=4 --stdout --all </dev/null >/dev/null 2>err &&
517 grep ^warning: err >warnings &&
518 test_line_count = 2 warnings &&
519 grep -F "no threads support, ignoring --threads" err &&
520 grep -F "no threads support, ignoring pack.threads" err
521'
522
43fa44fa
NTND
523test_expect_success 'pack-objects in too-many-packs mode' '
524 GIT_TEST_FULL_IN_PACK_ARRAY=1 git repack -ad &&
525 git fsck
526'
527
228135d9
ÆAB
528test_expect_success 'setup: fake a SHA1 hash collision' '
529 git init corrupt &&
530 (
531 cd corrupt &&
532 long_a=$(git hash-object -w ../a | sed -e "s!^..!&/!") &&
533 long_b=$(git hash-object -w ../b | sed -e "s!^..!&/!") &&
534 test -f .git/objects/$long_b &&
535 cp -f .git/objects/$long_a \
536 .git/objects/$long_b
537 )
80938c39 538'
2fca19fb 539
80938c39 540test_expect_success 'make sure index-pack detects the SHA1 collision' '
228135d9
ÆAB
541 (
542 cd corrupt &&
543 test_must_fail git index-pack -o ../bad.idx ../test-3.pack 2>msg &&
544 test_i18ngrep "SHA1 COLLISION FOUND" msg
545 )
80938c39 546'
2fca19fb 547
80938c39 548test_expect_success 'make sure index-pack detects the SHA1 collision (large blobs)' '
228135d9
ÆAB
549 (
550 cd corrupt &&
551 test_must_fail git -c core.bigfilethreshold=1 index-pack -o ../bad.idx ../test-3.pack 2>msg &&
552 test_i18ngrep "SHA1 COLLISION FOUND" msg
553 )
80938c39 554'
4614043c 555
e00549aa
JT
556test_expect_success 'prefetch objects' '
557 rm -rf server client &&
558
559 git init server &&
560 test_config -C server uploadpack.allowanysha1inwant 1 &&
561 test_config -C server uploadpack.allowfilter 1 &&
562 test_config -C server protocol.version 2 &&
563
564 echo one >server/one &&
565 git -C server add one &&
566 git -C server commit -m one &&
567 git -C server branch one_branch &&
568
569 echo two_a >server/two_a &&
570 echo two_b >server/two_b &&
571 git -C server add two_a two_b &&
572 git -C server commit -m two &&
573
574 echo three >server/three &&
575 git -C server add three &&
576 git -C server commit -m three &&
577 git -C server branch three_branch &&
578
579 # Clone, fetch "two" with blobs excluded, and re-push it. This requires
580 # the client to have the blobs of "two" - verify that these are
581 # prefetched in one batch.
582 git clone --filter=blob:none --single-branch -b one_branch \
583 "file://$(pwd)/server" client &&
584 test_config -C client protocol.version 2 &&
585 TWO=$(git -C server rev-parse three_branch^) &&
586 git -C client fetch --filter=blob:none origin "$TWO" &&
587 GIT_TRACE_PACKET=$(pwd)/trace git -C client push origin "$TWO":refs/heads/two_branch &&
7ca3c0ac 588 grep "fetch> done" trace >donelines &&
e00549aa
JT
589 test_line_count = 1 donelines
590'
591
339bce27
TB
592test_expect_success 'setup for --stdin-packs tests' '
593 git init stdin-packs &&
594 (
595 cd stdin-packs &&
596
597 test_commit A &&
598 test_commit B &&
599 test_commit C &&
600
601 for id in A B C
602 do
603 git pack-objects .git/objects/pack/pack-$id \
d0fd9931 604 --incremental --revs <<-EOF || exit 1
339bce27
TB
605 refs/tags/$id
606 EOF
607 done &&
608
609 ls -la .git/objects/pack
610 )
611'
612
613test_expect_success '--stdin-packs with excluded packs' '
614 (
615 cd stdin-packs &&
616
617 PACK_A="$(basename .git/objects/pack/pack-A-*.pack)" &&
618 PACK_B="$(basename .git/objects/pack/pack-B-*.pack)" &&
619 PACK_C="$(basename .git/objects/pack/pack-C-*.pack)" &&
620
621 git pack-objects test --stdin-packs <<-EOF &&
622 $PACK_A
623 ^$PACK_B
624 $PACK_C
625 EOF
626
627 (
628 git show-index <$(ls .git/objects/pack/pack-A-*.idx) &&
629 git show-index <$(ls .git/objects/pack/pack-C-*.idx)
630 ) >expect.raw &&
631 git show-index <$(ls test-*.idx) >actual.raw &&
632
633 cut -d" " -f2 <expect.raw | sort >expect &&
634 cut -d" " -f2 <actual.raw | sort >actual &&
635 test_cmp expect actual
636 )
637'
638
639test_expect_success '--stdin-packs is incompatible with --filter' '
640 (
641 cd stdin-packs &&
642 test_must_fail git pack-objects --stdin-packs --stdout \
643 --filter=blob:none </dev/null 2>err &&
644 test_i18ngrep "cannot use --filter with --stdin-packs" err
645 )
646'
647
648test_expect_success '--stdin-packs is incompatible with --revs' '
649 (
650 cd stdin-packs &&
651 test_must_fail git pack-objects --stdin-packs --revs out \
652 </dev/null 2>err &&
653 test_i18ngrep "cannot use internal rev list with --stdin-packs" err
654 )
655'
656
657test_expect_success '--stdin-packs with loose objects' '
658 (
659 cd stdin-packs &&
660
661 PACK_A="$(basename .git/objects/pack/pack-A-*.pack)" &&
662 PACK_B="$(basename .git/objects/pack/pack-B-*.pack)" &&
663 PACK_C="$(basename .git/objects/pack/pack-C-*.pack)" &&
664
665 test_commit D && # loose
666
667 git pack-objects test2 --stdin-packs --unpacked <<-EOF &&
668 $PACK_A
669 ^$PACK_B
670 $PACK_C
671 EOF
672
673 (
674 git show-index <$(ls .git/objects/pack/pack-A-*.idx) &&
675 git show-index <$(ls .git/objects/pack/pack-C-*.idx) &&
676 git rev-list --objects --no-object-names \
677 refs/tags/C..refs/tags/D
678
679 ) >expect.raw &&
680 ls -la . &&
681 git show-index <$(ls test2-*.idx) >actual.raw &&
682
683 cut -d" " -f2 <expect.raw | sort >expect &&
684 cut -d" " -f2 <actual.raw | sort >actual &&
685 test_cmp expect actual
686 )
687'
688
14e7b834
TB
689test_expect_success '--stdin-packs with broken links' '
690 (
691 cd stdin-packs &&
692
693 # make an unreachable object with a bogus parent
694 git cat-file -p HEAD >commit &&
695 sed "s/$(git rev-parse HEAD^)/$(test_oid zero)/" <commit |
696 git hash-object -w -t commit --stdin >in &&
697
698 git pack-objects .git/objects/pack/pack-D <in &&
699
700 PACK_A="$(basename .git/objects/pack/pack-A-*.pack)" &&
701 PACK_B="$(basename .git/objects/pack/pack-B-*.pack)" &&
702 PACK_C="$(basename .git/objects/pack/pack-C-*.pack)" &&
703 PACK_D="$(basename .git/objects/pack/pack-D-*.pack)" &&
704
705 git pack-objects test3 --stdin-packs --unpacked <<-EOF &&
706 $PACK_A
707 ^$PACK_B
708 $PACK_C
709 $PACK_D
710 EOF
711
712 (
713 git show-index <$(ls .git/objects/pack/pack-A-*.idx) &&
714 git show-index <$(ls .git/objects/pack/pack-C-*.idx) &&
715 git show-index <$(ls .git/objects/pack/pack-D-*.idx) &&
716 git rev-list --objects --no-object-names \
717 refs/tags/C..refs/tags/D
718 ) >expect.raw &&
719 git show-index <$(ls test3-*.idx) >actual.raw &&
720
721 cut -d" " -f2 <expect.raw | sort >expect &&
722 cut -d" " -f2 <actual.raw | sort >actual &&
723 test_cmp expect actual
724 )
725'
726
953aa54e
JK
727test_expect_success 'negative window clamps to 0' '
728 git pack-objects --progress --window=-1 neg-window <obj-list 2>stderr &&
729 check_deltas stderr = 0
730'
731
8ee378a0 732test_done