]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5319-multi-pack-index.sh
sha1-file: split OBJECT_INFO_FOR_PREFETCH
[thirdparty/git.git] / t / t5319-multi-pack-index.sh
CommitLineData
a3407730
DS
1#!/bin/sh
2
3test_description='multi-pack-indexes'
4. ./test-lib.sh
5
c4d25228
DS
6objdir=.git/objects
7
4d80560c 8midx_read_expect () {
396f2570 9 NUM_PACKS=$1
d7cacf29 10 NUM_OBJECTS=$2
662148c4
DS
11 NUM_CHUNKS=$3
12 OBJECT_DIR=$4
13 EXTRA_CHUNKS="$5"
3227565c
DS
14 {
15 cat <<-EOF &&
662148c4
DS
16 header: 4d494458 1 $NUM_CHUNKS $NUM_PACKS
17 chunks: pack-names oid-fanout oid-lookup object-offsets$EXTRA_CHUNKS
d7cacf29 18 num_objects: $NUM_OBJECTS
3227565c
DS
19 packs:
20 EOF
21 if test $NUM_PACKS -ge 1
22 then
662148c4 23 ls $OBJECT_DIR/pack/ | grep idx | sort
3227565c 24 fi &&
662148c4 25 printf "object-dir: $OBJECT_DIR\n"
3227565c 26 } >expect &&
662148c4 27 test-tool read-midx $OBJECT_DIR >actual &&
4d80560c
DS
28 test_cmp expect actual
29}
30
a3407730 31test_expect_success 'write midx with no packs' '
fc59e748
DS
32 test_when_finished rm -f pack/multi-pack-index &&
33 git multi-pack-index --object-dir=. write &&
662148c4 34 midx_read_expect 0 0 4 .
a3407730
DS
35'
36
2c381335
DS
37generate_objects () {
38 i=$1
39 iii=$(printf '%03i' $i)
40 {
41 test-tool genrandom "bar" 200 &&
42 test-tool genrandom "baz $iii" 50
43 } >wide_delta_$iii &&
44 {
45 test-tool genrandom "foo"$i 100 &&
46 test-tool genrandom "foo"$(( $i + 1 )) 100 &&
47 test-tool genrandom "foo"$(( $i + 2 )) 100
48 } >deep_delta_$iii &&
49 {
50 echo $iii &&
51 test-tool genrandom "$iii" 8192
52 } >file_$iii &&
53 git update-index --add file_$iii deep_delta_$iii wide_delta_$iii
54}
55
56commit_and_list_objects () {
57 {
58 echo 101 &&
59 test-tool genrandom 100 8192;
60 } >file_101 &&
61 git update-index --add file_101 &&
62 tree=$(git write-tree) &&
63 commit=$(git commit-tree $tree -p HEAD</dev/null) &&
64 {
65 echo $tree &&
66 git ls-tree $tree | sed -e "s/.* \\([0-9a-f]*\\) .*/\\1/"
67 } >obj-list &&
68 git reset --hard $commit
69}
70
71test_expect_success 'create objects' '
72 test_commit initial &&
73 for i in $(test_seq 1 5)
74 do
75 generate_objects $i
76 done &&
77 commit_and_list_objects
78'
79
80test_expect_success 'write midx with one v1 pack' '
c4d25228
DS
81 pack=$(git pack-objects --index-version=1 $objdir/pack/test <obj-list) &&
82 test_when_finished rm $objdir/pack/test-$pack.pack \
83 $objdir/pack/test-$pack.idx $objdir/pack/multi-pack-index &&
84 git multi-pack-index --object-dir=$objdir write &&
85 midx_read_expect 1 18 4 $objdir
2c381335
DS
86'
87
c4d25228 88midx_git_two_modes () {
e9ab2ed7
DS
89 if [ "$2" = "sorted" ]
90 then
91 git -c core.multiPackIndex=false $1 | sort >expect &&
92 git -c core.multiPackIndex=true $1 | sort >actual
93 else
94 git -c core.multiPackIndex=false $1 >expect &&
95 git -c core.multiPackIndex=true $1 >actual
96 fi &&
c4d25228
DS
97 test_cmp expect actual
98}
99
100compare_results_with_midx () {
101 MSG=$1
102 test_expect_success "check normal git operations: $MSG" '
103 midx_git_two_modes "rev-list --objects --all" &&
e9ab2ed7
DS
104 midx_git_two_modes "log --raw" &&
105 midx_git_two_modes "count-objects --verbose" &&
106 midx_git_two_modes "cat-file --batch-all-objects --buffer --batch-check" &&
107 midx_git_two_modes "cat-file --batch-all-objects --buffer --batch-check --unsorted" sorted
c4d25228
DS
108 '
109}
110
2c381335 111test_expect_success 'write midx with one v2 pack' '
c4d25228
DS
112 git pack-objects --index-version=2,0x40 $objdir/pack/test <obj-list &&
113 git multi-pack-index --object-dir=$objdir write &&
114 midx_read_expect 1 18 4 $objdir
2c381335
DS
115'
116
c4d25228
DS
117compare_results_with_midx "one v2 pack"
118
2c381335
DS
119test_expect_success 'add more objects' '
120 for i in $(test_seq 6 10)
121 do
122 generate_objects $i
123 done &&
124 commit_and_list_objects
125'
126
127test_expect_success 'write midx with two packs' '
c4d25228
DS
128 git pack-objects --index-version=1 $objdir/pack/test-2 <obj-list &&
129 git multi-pack-index --object-dir=$objdir write &&
130 midx_read_expect 2 34 4 $objdir
2c381335
DS
131'
132
c4d25228
DS
133compare_results_with_midx "two packs"
134
2c381335
DS
135test_expect_success 'add more packs' '
136 for j in $(test_seq 11 20)
137 do
138 generate_objects $j &&
139 commit_and_list_objects &&
c4d25228 140 git pack-objects --index-version=2 $objdir/pack/test-pack <obj-list
2c381335
DS
141 done
142'
143
c4d25228
DS
144compare_results_with_midx "mixed mode (two packs + extra)"
145
2c381335 146test_expect_success 'write midx with twelve packs' '
c4d25228
DS
147 git multi-pack-index --object-dir=$objdir write &&
148 midx_read_expect 12 74 4 $objdir
662148c4
DS
149'
150
c4d25228
DS
151compare_results_with_midx "twelve packs"
152
56ee7ff1
DS
153test_expect_success 'verify multi-pack-index success' '
154 git multi-pack-index verify --object-dir=$objdir
155'
156
53ad0407
DS
157# usage: corrupt_midx_and_verify <pos> <data> <objdir> <string>
158corrupt_midx_and_verify() {
159 POS=$1 &&
160 DATA="${2:-\0}" &&
161 OBJDIR=$3 &&
162 GREPSTR="$4" &&
66ec0390
DS
163 COMMAND="$5" &&
164 if test -z "$COMMAND"
165 then
166 COMMAND="git multi-pack-index verify --object-dir=$OBJDIR"
167 fi &&
53ad0407
DS
168 FILE=$OBJDIR/pack/multi-pack-index &&
169 chmod a+w $FILE &&
170 test_when_finished mv midx-backup $FILE &&
171 cp $FILE midx-backup &&
172 printf "$DATA" | dd of="$FILE" bs=1 seek="$POS" conv=notrunc &&
66ec0390 173 test_must_fail $COMMAND 2>test_err &&
53ad0407
DS
174 grep -v "^+" test_err >err &&
175 test_i18ngrep "$GREPSTR" err
176}
177
178test_expect_success 'verify bad signature' '
179 corrupt_midx_and_verify 0 "\00" $objdir \
180 "multi-pack-index signature"
181'
182
55c5648d 183HASH_LEN=20
cc6af73c 184NUM_OBJECTS=74
53ad0407
DS
185MIDX_BYTE_VERSION=4
186MIDX_BYTE_OID_VERSION=5
187MIDX_BYTE_CHUNK_COUNT=6
d3f8e211
DS
188MIDX_HEADER_SIZE=12
189MIDX_BYTE_CHUNK_ID=$MIDX_HEADER_SIZE
190MIDX_BYTE_CHUNK_OFFSET=$(($MIDX_HEADER_SIZE + 4))
8e72a3c3
DS
191MIDX_NUM_CHUNKS=5
192MIDX_CHUNK_LOOKUP_WIDTH=12
193MIDX_OFFSET_PACKNAMES=$(($MIDX_HEADER_SIZE + \
194 $MIDX_NUM_CHUNKS * $MIDX_CHUNK_LOOKUP_WIDTH))
195MIDX_BYTE_PACKNAME_ORDER=$(($MIDX_OFFSET_PACKNAMES + 2))
2f23d3f3
DS
196MIDX_OFFSET_OID_FANOUT=$(($MIDX_OFFSET_PACKNAMES + 652))
197MIDX_OID_FANOUT_WIDTH=4
198MIDX_BYTE_OID_FANOUT_ORDER=$((MIDX_OFFSET_OID_FANOUT + 250 * $MIDX_OID_FANOUT_WIDTH + 1))
55c5648d
DS
199MIDX_OFFSET_OID_LOOKUP=$(($MIDX_OFFSET_OID_FANOUT + 256 * $MIDX_OID_FANOUT_WIDTH))
200MIDX_BYTE_OID_LOOKUP=$(($MIDX_OFFSET_OID_LOOKUP + 16 * $HASH_LEN))
cc6af73c
DS
201MIDX_OFFSET_OBJECT_OFFSETS=$(($MIDX_OFFSET_OID_LOOKUP + $NUM_OBJECTS * $HASH_LEN))
202MIDX_OFFSET_WIDTH=8
203MIDX_BYTE_PACK_INT_ID=$(($MIDX_OFFSET_OBJECT_OFFSETS + 16 * $MIDX_OFFSET_WIDTH + 2))
204MIDX_BYTE_OFFSET=$(($MIDX_OFFSET_OBJECT_OFFSETS + 16 * $MIDX_OFFSET_WIDTH + 6))
53ad0407
DS
205
206test_expect_success 'verify bad version' '
207 corrupt_midx_and_verify $MIDX_BYTE_VERSION "\00" $objdir \
208 "multi-pack-index version"
209'
210
211test_expect_success 'verify bad OID version' '
212 corrupt_midx_and_verify $MIDX_BYTE_OID_VERSION "\02" $objdir \
213 "hash version"
214'
215
216test_expect_success 'verify truncated chunk count' '
217 corrupt_midx_and_verify $MIDX_BYTE_CHUNK_COUNT "\01" $objdir \
218 "missing required"
219'
220
221test_expect_success 'verify extended chunk count' '
222 corrupt_midx_and_verify $MIDX_BYTE_CHUNK_COUNT "\07" $objdir \
223 "terminating multi-pack-index chunk id appears earlier than expected"
224'
225
d3f8e211
DS
226test_expect_success 'verify missing required chunk' '
227 corrupt_midx_and_verify $MIDX_BYTE_CHUNK_ID "\01" $objdir \
228 "missing required"
229'
230
231test_expect_success 'verify invalid chunk offset' '
232 corrupt_midx_and_verify $MIDX_BYTE_CHUNK_OFFSET "\01" $objdir \
233 "invalid chunk offset (too large)"
234'
235
8e72a3c3
DS
236test_expect_success 'verify packnames out of order' '
237 corrupt_midx_and_verify $MIDX_BYTE_PACKNAME_ORDER "z" $objdir \
238 "pack names out of order"
239'
240
d4bf1d88
DS
241test_expect_success 'verify packnames out of order' '
242 corrupt_midx_and_verify $MIDX_BYTE_PACKNAME_ORDER "a" $objdir \
243 "failed to load pack"
244'
245
2f23d3f3
DS
246test_expect_success 'verify oid fanout out of order' '
247 corrupt_midx_and_verify $MIDX_BYTE_OID_FANOUT_ORDER "\01" $objdir \
248 "oid fanout out of order"
249'
250
55c5648d
DS
251test_expect_success 'verify oid lookup out of order' '
252 corrupt_midx_and_verify $MIDX_BYTE_OID_LOOKUP "\00" $objdir \
253 "oid lookup out of order"
254'
255
cc6af73c
DS
256test_expect_success 'verify incorrect pack-int-id' '
257 corrupt_midx_and_verify $MIDX_BYTE_PACK_INT_ID "\07" $objdir \
258 "bad pack-int-id"
259'
260
261test_expect_success 'verify incorrect offset' '
262 corrupt_midx_and_verify $MIDX_BYTE_OFFSET "\07" $objdir \
263 "incorrect object offset"
264'
265
66ec0390
DS
266test_expect_success 'git-fsck incorrect offset' '
267 corrupt_midx_and_verify $MIDX_BYTE_OFFSET "\07" $objdir \
268 "incorrect object offset" \
269 "git -c core.multipackindex=true fsck"
270'
271
525e18c0
DS
272test_expect_success 'repack removes multi-pack-index' '
273 test_path_is_file $objdir/pack/multi-pack-index &&
0465a505 274 GIT_TEST_MULTI_PACK_INDEX=0 git repack -adf &&
525e18c0
DS
275 test_path_is_missing $objdir/pack/multi-pack-index
276'
277
278compare_results_with_midx "after repack"
279
e9ab2ed7
DS
280test_expect_success 'multi-pack-index and pack-bitmap' '
281 git -c repack.writeBitmaps=true repack -ad &&
282 git multi-pack-index write &&
283 git rev-list --test-bitmap HEAD
284'
285
29e2016b
DS
286test_expect_success 'multi-pack-index and alternates' '
287 git init --bare alt.git &&
288 echo $(pwd)/alt.git/objects >.git/objects/info/alternates &&
289 echo content1 >file1 &&
290 altblob=$(GIT_DIR=alt.git git hash-object -w file1) &&
291 git cat-file blob $altblob &&
292 git rev-list --all
293'
294
295compare_results_with_midx "with alternate (local midx)"
296
297test_expect_success 'multi-pack-index in an alternate' '
6a22d521
DS
298 mv .git/objects/pack/* alt.git/objects/pack &&
299 test_commit add_local_objects &&
300 git repack --local &&
301 git multi-pack-index write &&
302 midx_read_expect 1 3 4 $objdir &&
303 git reset --hard HEAD~1 &&
304 rm -f .git/objects/pack/*
29e2016b
DS
305'
306
307compare_results_with_midx "with alternate (remote midx)"
308
662148c4
DS
309# usage: corrupt_data <file> <pos> [<data>]
310corrupt_data () {
311 file=$1
312 pos=$2
313 data="${3:-\0}"
314 printf "$data" | dd of="$file" bs=1 seek="$pos" conv=notrunc
315}
316
317# Force 64-bit offsets by manipulating the idx file.
318# This makes the IDX file _incorrect_ so be careful to clean up after!
319test_expect_success 'force some 64-bit offsets with pack-objects' '
320 mkdir objects64 &&
321 mkdir objects64/pack &&
322 for i in $(test_seq 1 11)
323 do
324 generate_objects 11
325 done &&
326 commit_and_list_objects &&
327 pack64=$(git pack-objects --index-version=2,0x40 objects64/pack/test-64 <obj-list) &&
328 idx64=objects64/pack/test-64-$pack64.idx &&
329 chmod u+w $idx64 &&
330 corrupt_data $idx64 2999 "\02" &&
331 midx64=$(git multi-pack-index --object-dir=objects64 write) &&
332 midx_read_expect 1 63 5 objects64 " large-offsets"
2c381335
DS
333'
334
56ee7ff1
DS
335test_expect_success 'verify multi-pack-index with 64-bit offsets' '
336 git multi-pack-index verify --object-dir=objects64
337'
338
cc6af73c
DS
339NUM_OBJECTS=63
340MIDX_OFFSET_OID_FANOUT=$((MIDX_OFFSET_PACKNAMES + 54))
341MIDX_OFFSET_OID_LOOKUP=$((MIDX_OFFSET_OID_FANOUT + 256 * $MIDX_OID_FANOUT_WIDTH))
342MIDX_OFFSET_OBJECT_OFFSETS=$(($MIDX_OFFSET_OID_LOOKUP + $NUM_OBJECTS * $HASH_LEN))
343MIDX_OFFSET_LARGE_OFFSETS=$(($MIDX_OFFSET_OBJECT_OFFSETS + $NUM_OBJECTS * $MIDX_OFFSET_WIDTH))
344MIDX_BYTE_LARGE_OFFSET=$(($MIDX_OFFSET_LARGE_OFFSETS + 3))
345
346test_expect_success 'verify incorrect 64-bit offset' '
347 corrupt_midx_and_verify $MIDX_BYTE_LARGE_OFFSET "\07" objects64 \
348 "incorrect object offset"
349'
350
a3407730 351test_done