1#!/bin/sh
2
3test_description='partial clone'
4
5. ./test-lib.sh
6
7delete_object () {
8 rm $1/.git/objects/$(echo $2 | sed -e 's|^..|&/|')
9}
10
11pack_as_from_promisor () {
12 HASH=$(git -C repo pack-objects .git/objects/pack/pack) &&
13 >repo/.git/objects/pack/pack-$HASH.promisor &&
14 echo $HASH
15}
16
17promise_and_delete () {
18 HASH=$(git -C repo rev-parse "$1") &&
19 git -C repo tag -a -m message my_annotated_tag "$HASH" &&
20 git -C repo rev-parse my_annotated_tag | pack_as_from_promisor &&
21 # tag -d prints a message to stdout, so redirect it
22 git -C repo tag -d my_annotated_tag >/dev/null &&
23 delete_object repo "$HASH"
24}
25
26test_expect_success 'extensions.partialclone without filter' '
27 test_create_repo server &&
28 git clone --filter="blob:none" "file://$(pwd)/server" client &&
29 git -C client config --unset core.partialclonefilter &&
30 git -C client fetch origin
31'
32
33test_expect_success 'missing reflog object, but promised by a commit, passes fsck' '
34 rm -rf repo &&
35 test_create_repo repo &&
36 test_commit -C repo my_commit &&
37
38 A=$(git -C repo commit-tree -m a HEAD^{tree}) &&
39 C=$(git -C repo commit-tree -m c -p $A HEAD^{tree}) &&
40
41 # Reference $A only from reflog, and delete it
42 git -C repo branch my_branch "$A" &&
43 git -C repo branch -f my_branch my_commit &&
44 delete_object repo "$A" &&
45
46 # State that we got $C, which refers to $A, from promisor
47 printf "$C\n" | pack_as_from_promisor &&
48
49 # Normally, it fails
50 test_must_fail git -C repo fsck &&
51
52 # But with the extension, it succeeds
53 git -C repo config core.repositoryformatversion 1 &&
54 git -C repo config extensions.partialclone "arbitrary string" &&
55 git -C repo fsck
56'
57
58test_expect_success 'missing reflog object, but promised by a tag, passes fsck' '
59 rm -rf repo &&
60 test_create_repo repo &&
61 test_commit -C repo my_commit &&
62
63 A=$(git -C repo commit-tree -m a HEAD^{tree}) &&
64 git -C repo tag -a -m d my_tag_name $A &&
65 T=$(git -C repo rev-parse my_tag_name) &&
66 git -C repo tag -d my_tag_name &&
67
68 # Reference $A only from reflog, and delete it
69 git -C repo branch my_branch "$A" &&
70 git -C repo branch -f my_branch my_commit &&
71 delete_object repo "$A" &&
72
73 # State that we got $T, which refers to $A, from promisor
74 printf "$T\n" | pack_as_from_promisor &&
75
76 git -C repo config core.repositoryformatversion 1 &&
77 git -C repo config extensions.partialclone "arbitrary string" &&
78 git -C repo fsck
79'
80
81test_expect_success 'missing reflog object alone fails fsck, even with extension set' '
82 rm -rf repo &&
83 test_create_repo repo &&
84 test_commit -C repo my_commit &&
85
86 A=$(git -C repo commit-tree -m a HEAD^{tree}) &&
87 B=$(git -C repo commit-tree -m b HEAD^{tree}) &&
88
89 # Reference $A only from reflog, and delete it
90 git -C repo branch my_branch "$A" &&
91 git -C repo branch -f my_branch my_commit &&
92 delete_object repo "$A" &&
93
94 git -C repo config core.repositoryformatversion 1 &&
95 git -C repo config extensions.partialclone "arbitrary string" &&
96 test_must_fail git -C repo fsck
97'
98
99test_expect_success 'missing ref object, but promised, passes fsck' '
100 rm -rf repo &&
101 test_create_repo repo &&
102 test_commit -C repo my_commit &&
103
104 A=$(git -C repo commit-tree -m a HEAD^{tree}) &&
105
106 # Reference $A only from ref
107 git -C repo branch my_branch "$A" &&
108 promise_and_delete "$A" &&
109
110 git -C repo config core.repositoryformatversion 1 &&
111 git -C repo config extensions.partialclone "arbitrary string" &&
112 git -C repo fsck
113'
114
115test_expect_success 'missing object, but promised, passes fsck' '
116 rm -rf repo &&
117 test_create_repo repo &&
118 test_commit -C repo 1 &&
119 test_commit -C repo 2 &&
120 test_commit -C repo 3 &&
121 git -C repo tag -a annotated_tag -m "annotated tag" &&
122
123 C=$(git -C repo rev-parse 1) &&
124 T=$(git -C repo rev-parse 2^{tree}) &&
125 B=$(git hash-object repo/3.t) &&
126 AT=$(git -C repo rev-parse annotated_tag) &&
127
128 promise_and_delete "$C" &&
129 promise_and_delete "$T" &&
130 promise_and_delete "$B" &&
131 promise_and_delete "$AT" &&
132
133 git -C repo config core.repositoryformatversion 1 &&
134 git -C repo config extensions.partialclone "arbitrary string" &&
135 git -C repo fsck
136'
137
138test_expect_success 'missing CLI object, but promised, passes fsck' '
139 rm -rf repo &&
140 test_create_repo repo &&
141 test_commit -C repo my_commit &&
142
143 A=$(git -C repo commit-tree -m a HEAD^{tree}) &&
144 promise_and_delete "$A" &&
145
146 git -C repo config core.repositoryformatversion 1 &&
147 git -C repo config extensions.partialclone "arbitrary string" &&
148 git -C repo fsck "$A"
149'
150
151test_expect_success 'fetching of missing objects' '
152 rm -rf repo &&
153 test_create_repo server &&
154 test_commit -C server foo &&
155 git -C server repack -a -d --write-bitmap-index &&
156
157 git clone "file://$(pwd)/server" repo &&
158 HASH=$(git -C repo rev-parse foo) &&
159 rm -rf repo/.git/objects/* &&
160
161 git -C repo config core.repositoryformatversion 1 &&
162 git -C repo config extensions.partialclone "origin" &&
163 git -C repo cat-file -p "$HASH" &&
164
165 # Ensure that the .promisor file is written, and check that its
166 # associated packfile contains the object
167 ls repo/.git/objects/pack/pack-*.promisor >promisorlist &&
168 test_line_count = 1 promisorlist &&
169 IDX=$(cat promisorlist | sed "s/promisor$/idx/") &&
170 git verify-pack --verbose "$IDX" | grep "$HASH"
171'
172
173test_expect_success 'fetching of missing objects works with ref-in-want enabled' '
174 # ref-in-want requires protocol version 2
175 git -C server config protocol.version 2 &&
176 git -C server config uploadpack.allowrefinwant 1 &&
177 git -C repo config protocol.version 2 &&
178
179 rm -rf repo/.git/objects/* &&
180 rm -f trace &&
181 GIT_TRACE_PACKET="$(pwd)/trace" git -C repo cat-file -p "$HASH" &&
182 grep "git< fetch=.*ref-in-want" trace
183'
184
185test_expect_success 'fetching of missing blobs works' '
186 rm -rf server repo &&
187 test_create_repo server &&
188 test_commit -C server foo &&
189 git -C server repack -a -d --write-bitmap-index &&
190
191 git clone "file://$(pwd)/server" repo &&
192 git hash-object repo/foo.t >blobhash &&
193 rm -rf repo/.git/objects/* &&
194
195 git -C server config uploadpack.allowanysha1inwant 1 &&
196 git -C server config uploadpack.allowfilter 1 &&
197 git -C repo config core.repositoryformatversion 1 &&
198 git -C repo config extensions.partialclone "origin" &&
199
200 git -C repo cat-file -p $(cat blobhash)
201'
202
203test_expect_success 'fetching of missing trees does not fetch blobs' '
204 rm -rf server repo &&
205 test_create_repo server &&
206 test_commit -C server foo &&
207 git -C server repack -a -d --write-bitmap-index &&
208
209 git clone "file://$(pwd)/server" repo &&
210 git -C repo rev-parse foo^{tree} >treehash &&
211 git hash-object repo/foo.t >blobhash &&
212 rm -rf repo/.git/objects/* &&
213
214 git -C server config uploadpack.allowanysha1inwant 1 &&
215 git -C server config uploadpack.allowfilter 1 &&
216 git -C repo config core.repositoryformatversion 1 &&
217 git -C repo config extensions.partialclone "origin" &&
218 git -C repo cat-file -p $(cat treehash) &&
219
220 # Ensure that the tree, but not the blob, is fetched
221 git -C repo rev-list --objects --missing=print $(cat treehash) >objects &&
222 grep "^$(cat treehash)" objects &&
223 grep "^[?]$(cat blobhash)" objects
224'
225
226test_expect_success 'rev-list stops traversal at missing and promised commit' '
227 rm -rf repo &&
228 test_create_repo repo &&
229 test_commit -C repo foo &&
230 test_commit -C repo bar &&
231
232 FOO=$(git -C repo rev-parse foo) &&
233 promise_and_delete "$FOO" &&
234
235 git -C repo config core.repositoryformatversion 1 &&
236 git -C repo config extensions.partialclone "arbitrary string" &&
237 GIT_TEST_COMMIT_GRAPH=0 git -C repo rev-list --exclude-promisor-objects --objects bar >out &&
238 grep $(git -C repo rev-parse bar) out &&
239 ! grep $FOO out
240'
241
242test_expect_success 'rev-list stops traversal at missing and promised tree' '
243 rm -rf repo &&
244 test_create_repo repo &&
245 test_commit -C repo foo &&
246 mkdir repo/a_dir &&
247 echo something >repo/a_dir/something &&
248 git -C repo add a_dir/something &&
249 git -C repo commit -m bar &&
250
251 # foo^{tree} (tree referenced from commit)
252 TREE=$(git -C repo rev-parse foo^{tree}) &&
253
254 # a tree referenced by HEAD^{tree} (tree referenced from tree)
255 TREE2=$(git -C repo ls-tree HEAD^{tree} | grep " tree " | head -1 | cut -b13-52) &&
256
257 promise_and_delete "$TREE" &&
258 promise_and_delete "$TREE2" &&
259
260 git -C repo config core.repositoryformatversion 1 &&
261 git -C repo config extensions.partialclone "arbitrary string" &&
262 git -C repo rev-list --exclude-promisor-objects --objects HEAD >out &&
263 grep $(git -C repo rev-parse foo) out &&
264 ! grep $TREE out &&
265 grep $(git -C repo rev-parse HEAD) out &&
266 ! grep $TREE2 out
267'
268
269test_expect_success 'rev-list stops traversal at missing and promised blob' '
270 rm -rf repo &&
271 test_create_repo repo &&
272 echo something >repo/something &&
273 git -C repo add something &&
274 git -C repo commit -m foo &&
275
276 BLOB=$(git -C repo hash-object -w something) &&
277 promise_and_delete "$BLOB" &&
278
279 git -C repo config core.repositoryformatversion 1 &&
280 git -C repo config extensions.partialclone "arbitrary string" &&
281 git -C repo rev-list --exclude-promisor-objects --objects HEAD >out &&
282 grep $(git -C repo rev-parse HEAD) out &&
283 ! grep $BLOB out
284'
285
286test_expect_success 'rev-list stops traversal at promisor commit, tree, and blob' '
287 rm -rf repo &&
288 test_create_repo repo &&
289 test_commit -C repo foo &&
290 test_commit -C repo bar &&
291 test_commit -C repo baz &&
292
293 COMMIT=$(git -C repo rev-parse foo) &&
294 TREE=$(git -C repo rev-parse bar^{tree}) &&
295 BLOB=$(git hash-object repo/baz.t) &&
296 printf "%s\n%s\n%s\n" $COMMIT $TREE $BLOB | pack_as_from_promisor &&
297
298 git -C repo config core.repositoryformatversion 1 &&
299 git -C repo config extensions.partialclone "arbitrary string" &&
300 git -C repo rev-list --exclude-promisor-objects --objects HEAD >out &&
301 ! grep $COMMIT out &&
302 ! grep $TREE out &&
303 ! grep $BLOB out &&
304 grep $(git -C repo rev-parse bar) out # sanity check that some walking was done
305'
306
307test_expect_success 'rev-list dies for missing objects on cmd line' '
308 rm -rf repo &&
309 test_create_repo repo &&
310 test_commit -C repo foo &&
311 test_commit -C repo bar &&
312 test_commit -C repo baz &&
313
314 COMMIT=$(git -C repo rev-parse foo) &&
315 TREE=$(git -C repo rev-parse bar^{tree}) &&
316 BLOB=$(git hash-object repo/baz.t) &&
317
318 promise_and_delete $COMMIT &&
319 promise_and_delete $TREE &&
320 promise_and_delete $BLOB &&
321
322 git -C repo config core.repositoryformatversion 1 &&
323 git -C repo config extensions.partialclone "arbitrary string" &&
324
325 for OBJ in "$COMMIT" "$TREE" "$BLOB"; do
326 test_must_fail git -C repo rev-list --objects \
327 --exclude-promisor-objects "$OBJ" &&
328 test_must_fail git -C repo rev-list --objects-edge-aggressive \
329 --exclude-promisor-objects "$OBJ" &&
330
331 # Do not die or crash when --ignore-missing is passed.
332 git -C repo rev-list --ignore-missing --objects \
333 --exclude-promisor-objects "$OBJ" &&
334 git -C repo rev-list --ignore-missing --objects-edge-aggressive \
335 --exclude-promisor-objects "$OBJ"
336 done
337'
338
339test_expect_success 'gc repacks promisor objects separately from non-promisor objects' '
340 rm -rf repo &&
341 test_create_repo repo &&
342 test_commit -C repo one &&
343 test_commit -C repo two &&
344
345 TREE_ONE=$(git -C repo rev-parse one^{tree}) &&
346 printf "$TREE_ONE\n" | pack_as_from_promisor &&
347 TREE_TWO=$(git -C repo rev-parse two^{tree}) &&
348 printf "$TREE_TWO\n" | pack_as_from_promisor &&
349
350 git -C repo config core.repositoryformatversion 1 &&
351 git -C repo config extensions.partialclone "arbitrary string" &&
352 git -C repo gc &&
353
354 # Ensure that exactly one promisor packfile exists, and that it
355 # contains the trees but not the commits
356 ls repo/.git/objects/pack/pack-*.promisor >promisorlist &&
357 test_line_count = 1 promisorlist &&
358 PROMISOR_PACKFILE=$(sed "s/.promisor/.pack/" <promisorlist) &&
359 git verify-pack $PROMISOR_PACKFILE -v >out &&
360 grep "$TREE_ONE" out &&
361 grep "$TREE_TWO" out &&
362 ! grep "$(git -C repo rev-parse one)" out &&
363 ! grep "$(git -C repo rev-parse two)" out &&
364
365 # Remove the promisor packfile and associated files
366 rm $(sed "s/.promisor//" <promisorlist).* &&
367
368 # Ensure that the single other pack contains the commits, but not the
369 # trees
370 ls repo/.git/objects/pack/pack-*.pack >packlist &&
371 test_line_count = 1 packlist &&
372 git verify-pack repo/.git/objects/pack/pack-*.pack -v >out &&
373 grep "$(git -C repo rev-parse one)" out &&
374 grep "$(git -C repo rev-parse two)" out &&
375 ! grep "$TREE_ONE" out &&
376 ! grep "$TREE_TWO" out
377'
378
379test_expect_success 'gc does not repack promisor objects if there are none' '
380 rm -rf repo &&
381 test_create_repo repo &&
382 test_commit -C repo one &&
383
384 git -C repo config core.repositoryformatversion 1 &&
385 git -C repo config extensions.partialclone "arbitrary string" &&
386 git -C repo gc &&
387
388 # Ensure that only one pack exists
389 ls repo/.git/objects/pack/pack-*.pack >packlist &&
390 test_line_count = 1 packlist
391'
392
393repack_and_check () {
394 rm -rf repo2 &&
395 cp -r repo repo2 &&
396 git -C repo2 repack $1 -d &&
397 git -C repo2 fsck &&
398
399 git -C repo2 cat-file -e $2 &&
400 git -C repo2 cat-file -e $3
401}
402
403test_expect_success 'repack -d does not irreversibly delete promisor objects' '
404 rm -rf repo &&
405 test_create_repo repo &&
406 git -C repo config core.repositoryformatversion 1 &&
407 git -C repo config extensions.partialclone "arbitrary string" &&
408
409 git -C repo commit --allow-empty -m one &&
410 git -C repo commit --allow-empty -m two &&
411 git -C repo commit --allow-empty -m three &&
412 git -C repo commit --allow-empty -m four &&
413 ONE=$(git -C repo rev-parse HEAD^^^) &&
414 TWO=$(git -C repo rev-parse HEAD^^) &&
415 THREE=$(git -C repo rev-parse HEAD^) &&
416
417 printf "$TWO\n" | pack_as_from_promisor &&
418 printf "$THREE\n" | pack_as_from_promisor &&
419 delete_object repo "$ONE" &&
420
421 repack_and_check -a "$TWO" "$THREE" &&
422 repack_and_check -A "$TWO" "$THREE" &&
423 repack_and_check -l "$TWO" "$THREE"
424'
425
426test_expect_success 'gc stops traversal when a missing but promised object is reached' '
427 rm -rf repo &&
428 test_create_repo repo &&
429 test_commit -C repo my_commit &&
430
431 TREE_HASH=$(git -C repo rev-parse HEAD^{tree}) &&
432 HASH=$(promise_and_delete $TREE_HASH) &&
433
434 git -C repo config core.repositoryformatversion 1 &&
435 git -C repo config extensions.partialclone "arbitrary string" &&
436 git -C repo gc &&
437
438 # Ensure that the promisor packfile still exists, and remove it
439 test -e repo/.git/objects/pack/pack-$HASH.pack &&
440 rm repo/.git/objects/pack/pack-$HASH.* &&
441
442 # Ensure that the single other pack contains the commit, but not the tree
443 ls repo/.git/objects/pack/pack-*.pack >packlist &&
444 test_line_count = 1 packlist &&
445 git verify-pack repo/.git/objects/pack/pack-*.pack -v >out &&
446 grep "$(git -C repo rev-parse HEAD)" out &&
447 ! grep "$TREE_HASH" out
448'
449
450LIB_HTTPD_PORT=12345 # default port, 410, cannot be used as non-root
451. "$TEST_DIRECTORY"/lib-httpd.sh
452start_httpd
453
454test_expect_success 'fetching of missing objects from an HTTP server' '
455 rm -rf repo &&
456 SERVER="$HTTPD_DOCUMENT_ROOT_PATH/server" &&
457 test_create_repo "$SERVER" &&
458 test_commit -C "$SERVER" foo &&
459 git -C "$SERVER" repack -a -d --write-bitmap-index &&
460
461 git clone $HTTPD_URL/smart/server repo &&
462 HASH=$(git -C repo rev-parse foo) &&
463 rm -rf repo/.git/objects/* &&
464
465 git -C repo config core.repositoryformatversion 1 &&
466 git -C repo config extensions.partialclone "origin" &&
467 git -C repo cat-file -p "$HASH" &&
468
469 # Ensure that the .promisor file is written, and check that its
470 # associated packfile contains the object
471 ls repo/.git/objects/pack/pack-*.promisor >promisorlist &&
472 test_line_count = 1 promisorlist &&
473 IDX=$(cat promisorlist | sed "s/promisor$/idx/") &&
474 git verify-pack --verbose "$IDX" | grep "$HASH"
475'
476
477stop_httpd
478
479test_done