3 # Copyright (c) 2005 Junio C Hamano
6 test_description
='git-pack-object
18 dd if=/dev/zero bs=4k count=1 | perl -pe "y/\\000/$i/" >$i &&
19 git update-index --add $i || return 1
21 cat c >d && echo foo >>d && git update-index --add d &&
22 tree=`git write-tree` &&
23 commit=`git commit-tree $tree </dev/null` && {
26 git ls-tree $tree | sed -e "s/.* \\([0-9a-f]*\\) .*/\\1/"
28 git diff-tree --root -p $commit &&
31 t=`git cat-file -t $object` &&
32 git cat-file $t $object || return 1
37 'pack without delta' \
38 'packname_1=$(git pack-objects --window=0 test-1 <obj-list)'
44 'unpack without delta' \
45 "GIT_OBJECT_DIRECTORY=.git2/objects &&
46 export GIT_OBJECT_DIRECTORY &&
48 git unpack-objects -n <test-1-${packname_1}.pack &&
49 git unpack-objects <test-1-${packname_1}.pack"
51 unset GIT_OBJECT_DIRECTORY
55 'check unpack without delta' \
56 '(cd ../.git && find objects -type f -print) |
59 cmp $path ../.git/$path || {
67 'pack with REF_DELTA' \
69 packname_2=$(git pack-objects test-2 <obj-list)'
75 'unpack with REF_DELTA' \
76 'GIT_OBJECT_DIRECTORY=.git2/objects &&
77 export GIT_OBJECT_DIRECTORY &&
79 git unpack-objects -n <test-2-${packname_2}.pack &&
80 git unpack-objects <test-2-${packname_2}.pack'
82 unset GIT_OBJECT_DIRECTORY
85 'check unpack with REF_DELTA' \
86 '(cd ../.git && find objects -type f -print) |
89 cmp $path ../.git/$path || {
97 'pack with OFS_DELTA' \
99 packname_3=$(git pack-objects --delta-base-offset test-3 <obj-list)'
104 test_expect_success \
105 'unpack with OFS_DELTA' \
106 'GIT_OBJECT_DIRECTORY=.git2/objects &&
107 export GIT_OBJECT_DIRECTORY &&
109 git unpack-objects -n <test-3-${packname_3}.pack &&
110 git unpack-objects <test-3-${packname_3}.pack'
112 unset GIT_OBJECT_DIRECTORY
114 test_expect_success \
115 'check unpack with OFS_DELTA' \
116 '(cd ../.git && find objects -type f -print) |
119 cmp $path ../.git/$path || {
126 test_expect_success
'compare delta flavors' '
128 defined($_ = -s $_) or die for @ARGV;
129 exit 1 if $ARGV[0] <= $ARGV[1];
130 '\'' test-2-$packname_2.pack test-3-$packname_3.pack
136 test_expect_success \
137 'use packed objects' \
138 'GIT_OBJECT_DIRECTORY=.git2/objects &&
139 export GIT_OBJECT_DIRECTORY &&
141 cp test-1-${packname_1}.pack test-1-${packname_1}.idx .git2/objects/pack && {
142 git diff-tree --root -p $commit &&
145 t=`git cat-file -t $object` &&
146 git cat-file $t $object || return 1
151 test_expect_success \
152 'use packed deltified (REF_DELTA) objects' \
153 'GIT_OBJECT_DIRECTORY=.git2/objects &&
154 export GIT_OBJECT_DIRECTORY &&
155 rm -f .git2/objects/pack/test-* &&
156 cp test-2-${packname_2}.pack test-2-${packname_2}.idx .git2/objects/pack && {
157 git diff-tree --root -p $commit &&
160 t=`git cat-file -t $object` &&
161 git cat-file $t $object || return 1
166 test_expect_success \
167 'use packed deltified (OFS_DELTA) objects' \
168 'GIT_OBJECT_DIRECTORY=.git2/objects &&
169 export GIT_OBJECT_DIRECTORY &&
170 rm -f .git2/objects/pack/test-* &&
171 cp test-3-${packname_3}.pack test-3-${packname_3}.idx .git2/objects/pack && {
172 git diff-tree --root -p $commit &&
175 t=`git cat-file -t $object` &&
176 git cat-file $t $object || return 1
181 unset GIT_OBJECT_DIRECTORY
183 test_expect_success \
185 'git verify-pack test-1-${packname_1}.idx \
186 test-2-${packname_2}.idx \
187 test-3-${packname_3}.idx'
189 test_expect_success \
190 'verify-pack catches mismatched .idx and .pack files' \
191 'cat test-1-${packname_1}.idx >test-3.idx &&
192 cat test-2-${packname_2}.pack >test-3.pack &&
193 if git verify-pack test-3.idx
198 test_expect_success \
199 'verify-pack catches a corrupted pack signature' \
200 'cat test-1-${packname_1}.pack >test-3.pack &&
201 dd if=/dev/zero of=test-3.pack count=1 bs=1 conv=notrunc seek=2 &&
202 if git verify-pack test-3.idx
207 test_expect_success \
208 'verify-pack catches a corrupted pack version' \
209 'cat test-1-${packname_1}.pack >test-3.pack &&
210 dd if=/dev/zero of=test-3.pack count=1 bs=1 conv=notrunc seek=7 &&
211 if git verify-pack test-3.idx
216 test_expect_success \
217 'verify-pack catches a corrupted type/size of the 1st packed object data' \
218 'cat test-1-${packname_1}.pack >test-3.pack &&
219 dd if=/dev/zero of=test-3.pack count=1 bs=1 conv=notrunc seek=12 &&
220 if git verify-pack test-3.idx
225 test_expect_success \
226 'verify-pack catches a corrupted sum of the index file itself' \
227 'l=`wc -c <test-3.idx` &&
229 cat test-1-${packname_1}.pack >test-3.pack &&
230 dd if=/dev/zero of=test-3.idx count=20 bs=1 conv=notrunc seek=$l &&
231 if git verify-pack test-3.pack
236 test_expect_success \
237 'build pack index for an existing pack' \
238 'cat test-1-${packname_1}.pack >test-3.pack &&
239 git-index-pack -o tmp.idx test-3.pack &&
240 cmp tmp.idx test-1-${packname_1}.idx &&
242 git-index-pack test-3.pack &&
243 cmp test-3.idx test-1-${packname_1}.idx &&
245 cat test-2-${packname_2}.pack >test-3.pack &&
246 git-index-pack -o tmp.idx test-2-${packname_2}.pack &&
247 cmp tmp.idx test-2-${packname_2}.idx &&
249 git-index-pack test-3.pack &&
250 cmp test-3.idx test-2-${packname_2}.idx &&
252 cat test-3-${packname_3}.pack >test-3.pack &&
253 git-index-pack -o tmp.idx test-3-${packname_3}.pack &&
254 cmp tmp.idx test-3-${packname_3}.idx &&
256 git-index-pack test-3.pack &&
257 cmp test-3.idx test-3-${packname_3}.idx &&
261 test_expect_success \
262 'fake a SHA1 hash collision' \
263 'test -f .git/objects/c8/2de19312b6c3695c0c18f70709a6c535682a67 &&
264 cp -f .git/objects/9d/235ed07cd19811a6ceb342de82f190e49c9f68 \
265 .git/objects/c8/2de19312b6c3695c0c18f70709a6c535682a67'
267 test_expect_success \
268 'make sure index-pack detects the SHA1 collision' \
269 '! git-index-pack -o bad.idx test-3.pack'
271 test_expect_success \
272 'honor pack.packSizeLimit' \
273 'git config pack.packSizeLimit 200 &&
274 packname_4=$(git pack-objects test-4 <obj-list) &&
275 test 3 = $(ls test-4-*.pack | wc -l)'
277 test_expect_success
'unpacking with --strict' '
279 git config --unset pack.packsizelimit &&
280 for j in a b c d e f g
282 for i in 0 1 2 3 4 5 6 7 8 9
284 o=$(echo $j$i | git hash-object -w --stdin) &&
285 echo "100644 $o 0 $j$i"
289 git update-index --index-info <LIST &&
290 LIST=$(git write-tree) &&
292 head -n 10 LIST | git update-index --index-info &&
293 LI=$(git write-tree) &&
295 tail -n 10 LIST | git update-index --index-info &&
296 ST=$(git write-tree) &&
297 PACK5=$( git rev-list --objects "$LIST" "$LI" "$ST" | \
298 git pack-objects test-5 ) &&
303 ) | git pack-objects test-6 ) &&
304 test_create_repo test-5 &&
307 git unpack-objects --strict <../test-5-$PACK5.pack &&
308 git ls-tree -r $LIST &&
309 git ls-tree -r $LI &&
312 test_create_repo test-6 &&
314 # tree-only into empty repo -- many unreachables
316 test_must_fail git unpack-objects --strict <../test-6-$PACK6.pack
319 # already populated -- no unreachables
321 git unpack-objects --strict <../test-6-$PACK6.pack
325 test_expect_success
'index-pack with --strict' '
327 for j in a b c d e f g
329 for i in 0 1 2 3 4 5 6 7 8 9
331 o=$(echo $j$i | git hash-object -w --stdin) &&
332 echo "100644 $o 0 $j$i"
336 git update-index --index-info <LIST &&
337 LIST=$(git write-tree) &&
339 head -n 10 LIST | git update-index --index-info &&
340 LI=$(git write-tree) &&
342 tail -n 10 LIST | git update-index --index-info &&
343 ST=$(git write-tree) &&
344 PACK5=$( git rev-list --objects "$LIST" "$LI" "$ST" | \
345 git pack-objects test-5 ) &&
350 ) | git pack-objects test-6 ) &&
351 test_create_repo test-7 &&
354 git index-pack --strict --stdin <../test-5-$PACK5.pack &&
355 git ls-tree -r $LIST &&
356 git ls-tree -r $LI &&
359 test_create_repo test-8 &&
361 # tree-only into empty repo -- many unreachables
363 test_must_fail git index-pack --strict --stdin <../test-6-$PACK6.pack
366 # already populated -- no unreachables
368 git index-pack --strict --stdin <../test-6-$PACK6.pack