Git 2.31.7
[alt-git.git] / t / t5616-partial-clone.sh
blobc1cc00329fc5dd46cfd22cd6fdadc9d6670ad26d
1 #!/bin/sh
3 test_description='git partial clone'
5 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
6 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
8 . ./test-lib.sh
10 # create a normal "src" repo where we can later create new commits.
11 # expect_1.oids will contain a list of the OIDs of all blobs.
12 test_expect_success 'setup normal src repo' '
13 echo "{print \$1}" >print_1.awk &&
14 echo "{print \$2}" >print_2.awk &&
16 git init src &&
17 for n in 1 2 3 4
19 echo "This is file: $n" > src/file.$n.txt
20 git -C src add file.$n.txt
21 git -C src commit -m "file $n"
22 git -C src ls-files -s file.$n.txt >>temp
23 done &&
24 awk -f print_2.awk <temp | sort >expect_1.oids &&
25 test_line_count = 4 expect_1.oids
28 # bare clone "src" giving "srv.bare" for use as our server.
29 test_expect_success 'setup bare clone for server' '
30 git clone --bare "file://$(pwd)/src" srv.bare &&
31 git -C srv.bare config --local uploadpack.allowfilter 1 &&
32 git -C srv.bare config --local uploadpack.allowanysha1inwant 1
35 # do basic partial clone from "srv.bare"
36 # confirm we are missing all of the known blobs.
37 # confirm partial clone was registered in the local config.
38 test_expect_success 'do partial clone 1' '
39 git clone --no-checkout --filter=blob:none "file://$(pwd)/srv.bare" pc1 &&
41 git -C pc1 rev-list --quiet --objects --missing=print HEAD >revs &&
42 awk -f print_1.awk revs |
43 sed "s/?//" |
44 sort >observed.oids &&
46 test_cmp expect_1.oids observed.oids &&
47 test "$(git -C pc1 config --local core.repositoryformatversion)" = "1" &&
48 test "$(git -C pc1 config --local remote.origin.promisor)" = "true" &&
49 test "$(git -C pc1 config --local remote.origin.partialclonefilter)" = "blob:none"
52 test_expect_success 'verify that .promisor file contains refs fetched' '
53 ls pc1/.git/objects/pack/pack-*.promisor >promisorlist &&
54 test_line_count = 1 promisorlist &&
55 git -C srv.bare rev-parse --verify HEAD >headhash &&
56 grep "$(cat headhash) HEAD" $(cat promisorlist) &&
57 grep "$(cat headhash) refs/heads/main" $(cat promisorlist)
60 # checkout main to force dynamic object fetch of blobs at HEAD.
61 test_expect_success 'verify checkout with dynamic object fetch' '
62 git -C pc1 rev-list --quiet --objects --missing=print HEAD >observed &&
63 test_line_count = 4 observed &&
64 git -C pc1 checkout main &&
65 git -C pc1 rev-list --quiet --objects --missing=print HEAD >observed &&
66 test_line_count = 0 observed
69 # create new commits in "src" repo to establish a blame history on file.1.txt
70 # and push to "srv.bare".
71 test_expect_success 'push new commits to server' '
72 git -C src remote add srv "file://$(pwd)/srv.bare" &&
73 for x in a b c d e
75 echo "Mod file.1.txt $x" >>src/file.1.txt
76 git -C src add file.1.txt
77 git -C src commit -m "mod $x"
78 done &&
79 git -C src blame main -- file.1.txt >expect.blame &&
80 git -C src push -u srv main
83 # (partial) fetch in the partial clone repo from the promisor remote.
84 # verify that fetch inherited the filter-spec from the config and DOES NOT
85 # have the new blobs.
86 test_expect_success 'partial fetch inherits filter settings' '
87 git -C pc1 fetch origin &&
88 git -C pc1 rev-list --quiet --objects --missing=print \
89 main..origin/main >observed &&
90 test_line_count = 5 observed
93 # force dynamic object fetch using diff.
94 # we should only get 1 new blob (for the file in origin/main).
95 test_expect_success 'verify diff causes dynamic object fetch' '
96 git -C pc1 diff main..origin/main -- file.1.txt &&
97 git -C pc1 rev-list --quiet --objects --missing=print \
98 main..origin/main >observed &&
99 test_line_count = 4 observed
102 # force full dynamic object fetch of the file's history using blame.
103 # we should get the intermediate blobs for the file.
104 test_expect_success 'verify blame causes dynamic object fetch' '
105 git -C pc1 blame origin/main -- file.1.txt >observed.blame &&
106 test_cmp expect.blame observed.blame &&
107 git -C pc1 rev-list --quiet --objects --missing=print \
108 main..origin/main >observed &&
109 test_line_count = 0 observed
112 # create new commits in "src" repo to establish a history on file.2.txt
113 # and push to "srv.bare".
114 test_expect_success 'push new commits to server for file.2.txt' '
115 for x in a b c d e f
117 echo "Mod file.2.txt $x" >>src/file.2.txt
118 git -C src add file.2.txt
119 git -C src commit -m "mod $x"
120 done &&
121 git -C src push -u srv main
124 # Do FULL fetch by disabling inherited filter-spec using --no-filter.
125 # Verify we have all the new blobs.
126 test_expect_success 'override inherited filter-spec using --no-filter' '
127 git -C pc1 fetch --no-filter origin &&
128 git -C pc1 rev-list --quiet --objects --missing=print \
129 main..origin/main >observed &&
130 test_line_count = 0 observed
133 # create new commits in "src" repo to establish a history on file.3.txt
134 # and push to "srv.bare".
135 test_expect_success 'push new commits to server for file.3.txt' '
136 for x in a b c d e f
138 echo "Mod file.3.txt $x" >>src/file.3.txt
139 git -C src add file.3.txt
140 git -C src commit -m "mod $x"
141 done &&
142 git -C src push -u srv main
145 # Do a partial fetch and then try to manually fetch the missing objects.
146 # This can be used as the basis of a pre-command hook to bulk fetch objects
147 # perhaps combined with a command in dry-run mode.
148 test_expect_success 'manual prefetch of missing objects' '
149 git -C pc1 fetch --filter=blob:none origin &&
151 git -C pc1 rev-list --quiet --objects --missing=print \
152 main..origin/main >revs &&
153 awk -f print_1.awk revs |
154 sed "s/?//" |
155 sort >observed.oids &&
157 test_line_count = 6 observed.oids &&
158 git -C pc1 fetch-pack --stdin "file://$(pwd)/srv.bare" <observed.oids &&
160 git -C pc1 rev-list --quiet --objects --missing=print \
161 main..origin/main >revs &&
162 awk -f print_1.awk revs |
163 sed "s/?//" |
164 sort >observed.oids &&
166 test_line_count = 0 observed.oids
169 test_expect_success 'partial clone with transfer.fsckobjects=1 works with submodules' '
170 test_create_repo submodule &&
171 test_commit -C submodule mycommit &&
173 test_create_repo src_with_sub &&
174 test_config -C src_with_sub uploadpack.allowfilter 1 &&
175 test_config -C src_with_sub uploadpack.allowanysha1inwant 1 &&
177 test_config_global protocol.file.allow always &&
179 git -C src_with_sub submodule add "file://$(pwd)/submodule" mysub &&
180 git -C src_with_sub commit -m "commit with submodule" &&
182 git -c transfer.fsckobjects=1 \
183 clone --filter="blob:none" "file://$(pwd)/src_with_sub" dst &&
184 test_when_finished rm -rf dst
187 test_expect_success 'partial clone with transfer.fsckobjects=1 uses index-pack --fsck-objects' '
188 git init src &&
189 test_commit -C src x &&
190 test_config -C src uploadpack.allowfilter 1 &&
191 test_config -C src uploadpack.allowanysha1inwant 1 &&
193 GIT_TRACE="$(pwd)/trace" git -c transfer.fsckobjects=1 \
194 clone --filter="blob:none" "file://$(pwd)/src" dst &&
195 grep "git index-pack.*--fsck-objects" trace
198 test_expect_success 'use fsck before and after manually fetching a missing subtree' '
199 # push new commit so server has a subtree
200 mkdir src/dir &&
201 echo "in dir" >src/dir/file.txt &&
202 git -C src add dir/file.txt &&
203 git -C src commit -m "file in dir" &&
204 git -C src push -u srv main &&
205 SUBTREE=$(git -C src rev-parse HEAD:dir) &&
207 rm -rf dst &&
208 git clone --no-checkout --filter=tree:0 "file://$(pwd)/srv.bare" dst &&
209 git -C dst fsck &&
211 # Make sure we only have commits, and all trees and blobs are missing.
212 git -C dst rev-list --missing=allow-any --objects main \
213 >fetched_objects &&
214 awk -f print_1.awk fetched_objects |
215 xargs -n1 git -C dst cat-file -t >fetched_types &&
217 sort -u fetched_types >unique_types.observed &&
218 echo commit >unique_types.expected &&
219 test_cmp unique_types.expected unique_types.observed &&
221 # Auto-fetch a tree with cat-file.
222 git -C dst cat-file -p $SUBTREE >tree_contents &&
223 grep file.txt tree_contents &&
225 # fsck still works after an auto-fetch of a tree.
226 git -C dst fsck &&
228 # Auto-fetch all remaining trees and blobs with --missing=error
229 git -C dst rev-list --missing=error --objects main >fetched_objects &&
230 test_line_count = 70 fetched_objects &&
232 awk -f print_1.awk fetched_objects |
233 xargs -n1 git -C dst cat-file -t >fetched_types &&
235 sort -u fetched_types >unique_types.observed &&
236 test_write_lines blob commit tree >unique_types.expected &&
237 test_cmp unique_types.expected unique_types.observed
240 test_expect_success 'implicitly construct combine: filter with repeated flags' '
241 GIT_TRACE=$(pwd)/trace git clone --bare \
242 --filter=blob:none --filter=tree:1 \
243 "file://$(pwd)/srv.bare" pc2 &&
244 grep "trace:.* git pack-objects .*--filter=combine:blob:none+tree:1" \
245 trace &&
246 git -C pc2 rev-list --objects --missing=allow-any HEAD >objects &&
248 # We should have gotten some root trees.
249 grep " $" objects &&
250 # Should not have gotten any non-root trees or blobs.
251 ! grep " ." objects &&
253 xargs -n 1 git -C pc2 cat-file -t <objects >types &&
254 sort -u types >unique_types.actual &&
255 test_write_lines commit tree >unique_types.expected &&
256 test_cmp unique_types.expected unique_types.actual
259 test_expect_success 'upload-pack complains of bogus filter config' '
260 printf 0000 |
261 test_must_fail git \
262 -c uploadpackfilter.tree.maxdepth \
263 upload-pack . >/dev/null 2>err &&
264 test_i18ngrep "unable to parse.*tree.maxdepth" err
267 test_expect_success 'upload-pack fails banned object filters' '
268 test_config -C srv.bare uploadpackfilter.blob:none.allow false &&
269 test_must_fail ok=sigpipe git clone --no-checkout --filter=blob:none \
270 "file://$(pwd)/srv.bare" pc3 2>err &&
271 test_i18ngrep "filter '\''blob:none'\'' not supported" err
274 test_expect_success 'upload-pack fails banned combine object filters' '
275 test_config -C srv.bare uploadpackfilter.allow false &&
276 test_config -C srv.bare uploadpackfilter.combine.allow true &&
277 test_config -C srv.bare uploadpackfilter.tree.allow true &&
278 test_config -C srv.bare uploadpackfilter.blob:none.allow false &&
279 test_must_fail ok=sigpipe git clone --no-checkout --filter=tree:1 \
280 --filter=blob:none "file://$(pwd)/srv.bare" pc3 2>err &&
281 test_i18ngrep "filter '\''blob:none'\'' not supported" err
284 test_expect_success 'upload-pack fails banned object filters with fallback' '
285 test_config -C srv.bare uploadpackfilter.allow false &&
286 test_must_fail ok=sigpipe git clone --no-checkout --filter=blob:none \
287 "file://$(pwd)/srv.bare" pc3 2>err &&
288 test_i18ngrep "filter '\''blob:none'\'' not supported" err
291 test_expect_success 'upload-pack limits tree depth filters' '
292 test_config -C srv.bare uploadpackfilter.allow false &&
293 test_config -C srv.bare uploadpackfilter.tree.allow true &&
294 test_config -C srv.bare uploadpackfilter.tree.maxDepth 0 &&
295 test_must_fail ok=sigpipe git clone --no-checkout --filter=tree:1 \
296 "file://$(pwd)/srv.bare" pc3 2>err &&
297 test_i18ngrep "tree filter allows max depth 0, but got 1" err &&
299 git clone --no-checkout --filter=tree:0 "file://$(pwd)/srv.bare" pc4 &&
301 test_config -C srv.bare uploadpackfilter.tree.maxDepth 5 &&
302 git clone --no-checkout --filter=tree:5 "file://$(pwd)/srv.bare" pc5 &&
303 test_must_fail ok=sigpipe git clone --no-checkout --filter=tree:6 \
304 "file://$(pwd)/srv.bare" pc6 2>err &&
305 test_i18ngrep "tree filter allows max depth 5, but got 6" err
308 test_expect_success 'partial clone fetches blobs pointed to by refs even if normally filtered out' '
309 rm -rf src dst &&
310 git init src &&
311 test_commit -C src x &&
312 test_config -C src uploadpack.allowfilter 1 &&
313 test_config -C src uploadpack.allowanysha1inwant 1 &&
315 # Create a tag pointing to a blob.
316 BLOB=$(echo blob-contents | git -C src hash-object --stdin -w) &&
317 git -C src tag myblob "$BLOB" &&
319 git clone --filter="blob:none" "file://$(pwd)/src" dst 2>err &&
320 ! grep "does not point to a valid object" err &&
321 git -C dst fsck
324 test_expect_success 'fetch what is specified on CLI even if already promised' '
325 rm -rf src dst.git &&
326 git init src &&
327 test_commit -C src foo &&
328 test_config -C src uploadpack.allowfilter 1 &&
329 test_config -C src uploadpack.allowanysha1inwant 1 &&
331 git hash-object --stdin <src/foo.t >blob &&
333 git clone --bare --filter=blob:none "file://$(pwd)/src" dst.git &&
334 git -C dst.git rev-list --objects --quiet --missing=print HEAD >missing_before &&
335 grep "?$(cat blob)" missing_before &&
336 git -C dst.git fetch origin $(cat blob) &&
337 git -C dst.git rev-list --objects --quiet --missing=print HEAD >missing_after &&
338 ! grep "?$(cat blob)" missing_after
341 test_expect_success 'setup src repo for sparse filter' '
342 git init sparse-src &&
343 git -C sparse-src config --local uploadpack.allowfilter 1 &&
344 git -C sparse-src config --local uploadpack.allowanysha1inwant 1 &&
345 test_commit -C sparse-src one &&
346 test_commit -C sparse-src two &&
347 echo /one.t >sparse-src/only-one &&
348 git -C sparse-src add . &&
349 git -C sparse-src commit -m "add sparse checkout files"
352 test_expect_success 'partial clone with sparse filter succeeds' '
353 rm -rf dst.git &&
354 git clone --no-local --bare \
355 --filter=sparse:oid=main:only-one \
356 sparse-src dst.git &&
358 cd dst.git &&
359 git rev-list --objects --missing=print HEAD >out &&
360 grep "^$(git rev-parse HEAD:one.t)" out &&
361 grep "^?$(git rev-parse HEAD:two.t)" out
365 test_expect_success 'partial clone with unresolvable sparse filter fails cleanly' '
366 rm -rf dst.git &&
367 test_must_fail git clone --no-local --bare \
368 --filter=sparse:oid=main:no-such-name \
369 sparse-src dst.git 2>err &&
370 test_i18ngrep "unable to access sparse blob in .main:no-such-name" err &&
371 test_must_fail git clone --no-local --bare \
372 --filter=sparse:oid=main \
373 sparse-src dst.git 2>err &&
374 test_i18ngrep "unable to parse sparse filter data in" err
377 setup_triangle () {
378 rm -rf big-blob.txt server client promisor-remote &&
380 printf "line %d\n" $(test_seq 1 100) >big-blob.txt &&
382 # Create a server with 2 commits: a commit with a big tree and a child
383 # commit with an incremental change. Also, create a partial clone
384 # client that only contains the first commit.
385 git init server &&
386 git -C server config --local uploadpack.allowfilter 1 &&
387 for i in $(test_seq 1 100)
389 echo "make the tree big" >server/file$i &&
390 git -C server add file$i
391 done &&
392 git -C server commit -m "initial" &&
393 git clone --bare --filter=tree:0 "file://$(pwd)/server" client &&
394 echo another line >>server/file1 &&
395 git -C server commit -am "incremental change" &&
397 # Create a promisor remote that only contains the tree and blob from
398 # the first commit.
399 git init promisor-remote &&
400 git -C server config --local uploadpack.allowanysha1inwant 1 &&
401 TREE_HASH=$(git -C server rev-parse HEAD~1^{tree}) &&
402 git -C promisor-remote fetch --keep "file://$(pwd)/server" "$TREE_HASH" &&
403 git -C promisor-remote count-objects -v >object-count &&
404 test_i18ngrep "count: 0" object-count &&
405 test_i18ngrep "in-pack: 2" object-count &&
407 # Set it as the promisor remote of client. Thus, whenever
408 # the client lazy fetches, the lazy fetch will succeed only if it is
409 # for this tree or blob.
410 test_commit -C promisor-remote one && # so that ref advertisement is not empty
411 git -C promisor-remote config --local uploadpack.allowanysha1inwant 1 &&
412 git -C client remote set-url origin "file://$(pwd)/promisor-remote"
415 # NEEDSWORK: The tests beginning with "fetch lazy-fetches" below only
416 # test that "fetch" avoid fetching trees and blobs, but not commits or
417 # tags. Revisit this if Git is ever taught to support partial clones
418 # with commits and/or tags filtered out.
420 test_expect_success 'fetch lazy-fetches only to resolve deltas' '
421 setup_triangle &&
423 # Exercise to make sure it works. Git will not fetch anything from the
424 # promisor remote other than for the big tree (because it needs to
425 # resolve the delta).
426 GIT_TRACE_PACKET="$(pwd)/trace" git -C client \
427 fetch "file://$(pwd)/server" main &&
429 # Verify the assumption that the client needed to fetch the delta base
430 # to resolve the delta.
431 git -C server rev-parse HEAD~1^{tree} >hash &&
432 grep "want $(cat hash)" trace
435 test_expect_success 'fetch lazy-fetches only to resolve deltas, protocol v2' '
436 setup_triangle &&
438 git -C server config --local protocol.version 2 &&
439 git -C client config --local protocol.version 2 &&
440 git -C promisor-remote config --local protocol.version 2 &&
442 # Exercise to make sure it works. Git will not fetch anything from the
443 # promisor remote other than for the big blob (because it needs to
444 # resolve the delta).
445 GIT_TRACE_PACKET="$(pwd)/trace" git -C client \
446 fetch "file://$(pwd)/server" main &&
448 # Verify that protocol version 2 was used.
449 grep "fetch< version 2" trace &&
451 # Verify the assumption that the client needed to fetch the delta base
452 # to resolve the delta.
453 git -C server rev-parse HEAD~1^{tree} >hash &&
454 grep "want $(cat hash)" trace
457 test_expect_success 'fetch does not lazy-fetch missing targets of its refs' '
458 rm -rf server client trace &&
460 test_create_repo server &&
461 test_config -C server uploadpack.allowfilter 1 &&
462 test_config -C server uploadpack.allowanysha1inwant 1 &&
463 test_commit -C server foo &&
465 git clone --filter=blob:none "file://$(pwd)/server" client &&
466 # Make all refs point to nothing by deleting all objects.
467 rm client/.git/objects/pack/* &&
469 test_commit -C server bar &&
470 GIT_TRACE_PACKET="$(pwd)/trace" git -C client fetch \
471 --no-tags --recurse-submodules=no \
472 origin refs/tags/bar &&
473 FOO_HASH=$(git -C server rev-parse foo) &&
474 ! grep "want $FOO_HASH" trace
477 # The following two tests must be in this order. It is important that
478 # the srv.bare repository did not have tags during clone, but has tags
479 # in the fetch.
481 test_expect_success 'verify fetch succeeds when asking for new tags' '
482 git clone --filter=blob:none "file://$(pwd)/srv.bare" tag-test &&
483 for i in I J K
485 test_commit -C src $i &&
486 git -C src branch $i || return 1
487 done &&
488 git -C srv.bare fetch --tags origin +refs/heads/*:refs/heads/* &&
489 git -C tag-test -c protocol.version=2 fetch --tags origin
492 test_expect_success 'verify fetch downloads only one pack when updating refs' '
493 git clone --filter=blob:none "file://$(pwd)/srv.bare" pack-test &&
494 ls pack-test/.git/objects/pack/*pack >pack-list &&
495 test_line_count = 2 pack-list &&
496 for i in A B C
498 test_commit -C src $i &&
499 git -C src branch $i || return 1
500 done &&
501 git -C srv.bare fetch origin +refs/heads/*:refs/heads/* &&
502 git -C pack-test fetch origin &&
503 ls pack-test/.git/objects/pack/*pack >pack-list &&
504 test_line_count = 3 pack-list
507 test_expect_success 'single-branch tag following respects partial clone' '
508 git clone --single-branch -b B --filter=blob:none \
509 "file://$(pwd)/srv.bare" single &&
510 git -C single rev-parse --verify refs/tags/B &&
511 git -C single rev-parse --verify refs/tags/A &&
512 test_must_fail git -C single rev-parse --verify refs/tags/C
515 test_expect_success 'fetch from a partial clone, protocol v0' '
516 rm -rf server client trace &&
518 # Pretend that the server is a partial clone
519 git init server &&
520 git -C server remote add a_remote "file://$(pwd)/" &&
521 test_config -C server core.repositoryformatversion 1 &&
522 test_config -C server extensions.partialclone a_remote &&
523 test_config -C server protocol.version 0 &&
524 test_commit -C server foo &&
526 # Fetch from the server
527 git init client &&
528 test_config -C client protocol.version 0 &&
529 test_commit -C client bar &&
530 GIT_TRACE_PACKET="$(pwd)/trace" git -C client fetch "file://$(pwd)/server" &&
531 ! grep "version 2" trace
534 test_expect_success 'fetch from a partial clone, protocol v2' '
535 rm -rf server client trace &&
537 # Pretend that the server is a partial clone
538 git init server &&
539 git -C server remote add a_remote "file://$(pwd)/" &&
540 test_config -C server core.repositoryformatversion 1 &&
541 test_config -C server extensions.partialclone a_remote &&
542 test_config -C server protocol.version 2 &&
543 test_commit -C server foo &&
545 # Fetch from the server
546 git init client &&
547 test_config -C client protocol.version 2 &&
548 test_commit -C client bar &&
549 GIT_TRACE_PACKET="$(pwd)/trace" git -C client fetch "file://$(pwd)/server" &&
550 grep "version 2" trace
553 . "$TEST_DIRECTORY"/lib-httpd.sh
554 start_httpd
556 # Converts bytes into their hexadecimal representation. For example,
557 # "printf 'ab\r\n' | hex_unpack" results in '61620d0a'.
558 hex_unpack () {
559 perl -e '$/ = undef; $input = <>; print unpack("H2" x length($input), $input)'
562 # Inserts $1 at the start of the string and every 2 characters thereafter.
563 intersperse () {
564 sed 's/\(..\)/'$1'\1/g'
567 # Create a one-time-perl command to replace the existing packfile with $1.
568 replace_packfile () {
569 # The protocol requires that the packfile be sent in sideband 1, hence
570 # the extra \x01 byte at the beginning.
571 cp $1 "$HTTPD_ROOT_PATH/one-time-pack" &&
572 echo 'if (/packfile/) {
573 print;
574 my $length = -s "one-time-pack";
575 printf "%04x\x01", $length + 5;
576 print `cat one-time-pack` . "0000";
577 last
578 }' >"$HTTPD_ROOT_PATH/one-time-perl"
581 test_expect_success 'upon cloning, check that all refs point to objects' '
582 SERVER="$HTTPD_DOCUMENT_ROOT_PATH/server" &&
583 rm -rf "$SERVER" repo &&
584 test_create_repo "$SERVER" &&
585 test_commit -C "$SERVER" foo &&
586 test_config -C "$SERVER" uploadpack.allowfilter 1 &&
587 test_config -C "$SERVER" uploadpack.allowanysha1inwant 1 &&
589 # Create a tag pointing to a blob.
590 BLOB=$(echo blob-contents | git -C "$SERVER" hash-object --stdin -w) &&
591 git -C "$SERVER" tag myblob "$BLOB" &&
593 # Craft a packfile not including that blob.
594 git -C "$SERVER" rev-parse HEAD |
595 git -C "$SERVER" pack-objects --stdout >incomplete.pack &&
597 # Replace the existing packfile with the crafted one. The protocol
598 # requires that the packfile be sent in sideband 1, hence the extra
599 # \x01 byte at the beginning.
600 replace_packfile incomplete.pack &&
602 # Use protocol v2 because the perl command looks for the "packfile"
603 # section header.
604 test_config -C "$SERVER" protocol.version 2 &&
605 test_must_fail git -c protocol.version=2 clone \
606 --filter=blob:none $HTTPD_URL/one_time_perl/server repo 2>err &&
608 test_i18ngrep "did not send all necessary objects" err &&
610 # Ensure that the one-time-perl script was used.
611 ! test -e "$HTTPD_ROOT_PATH/one-time-perl"
614 test_expect_success 'when partial cloning, tolerate server not sending target of tag' '
615 SERVER="$HTTPD_DOCUMENT_ROOT_PATH/server" &&
616 rm -rf "$SERVER" repo &&
617 test_create_repo "$SERVER" &&
618 test_commit -C "$SERVER" foo &&
619 test_config -C "$SERVER" uploadpack.allowfilter 1 &&
620 test_config -C "$SERVER" uploadpack.allowanysha1inwant 1 &&
622 # Create an annotated tag pointing to a blob.
623 BLOB=$(echo blob-contents | git -C "$SERVER" hash-object --stdin -w) &&
624 git -C "$SERVER" tag -m message -a myblob "$BLOB" &&
626 # Craft a packfile including the tag, but not the blob it points to.
627 # Also, omit objects referenced from HEAD in order to force a second
628 # fetch (to fetch missing objects) upon the automatic checkout that
629 # happens after a clone.
630 printf "%s\n%s\n--not\n%s\n%s\n" \
631 $(git -C "$SERVER" rev-parse HEAD) \
632 $(git -C "$SERVER" rev-parse myblob) \
633 $(git -C "$SERVER" rev-parse HEAD^{tree}) \
634 $(git -C "$SERVER" rev-parse myblob^{blob}) |
635 git -C "$SERVER" pack-objects --thin --stdout >incomplete.pack &&
637 # Replace the existing packfile with the crafted one. The protocol
638 # requires that the packfile be sent in sideband 1, hence the extra
639 # \x01 byte at the beginning.
640 replace_packfile incomplete.pack &&
642 # Use protocol v2 because the perl command looks for the "packfile"
643 # section header.
644 test_config -C "$SERVER" protocol.version 2 &&
646 # Exercise to make sure it works.
647 git -c protocol.version=2 clone \
648 --filter=blob:none $HTTPD_URL/one_time_perl/server repo 2> err &&
649 ! grep "missing object referenced by" err &&
651 # Ensure that the one-time-perl script was used.
652 ! test -e "$HTTPD_ROOT_PATH/one-time-perl"
655 test_expect_success 'tolerate server sending REF_DELTA against missing promisor objects' '
656 SERVER="$HTTPD_DOCUMENT_ROOT_PATH/server" &&
657 rm -rf "$SERVER" repo &&
658 test_create_repo "$SERVER" &&
659 test_config -C "$SERVER" uploadpack.allowfilter 1 &&
660 test_config -C "$SERVER" uploadpack.allowanysha1inwant 1 &&
662 # Create a commit with 2 blobs to be used as delta bases.
663 for i in $(test_seq 10)
665 echo "this is a line" >>"$SERVER/foo.txt" &&
666 echo "this is another line" >>"$SERVER/have.txt"
667 done &&
668 git -C "$SERVER" add foo.txt have.txt &&
669 git -C "$SERVER" commit -m bar &&
670 git -C "$SERVER" rev-parse HEAD:foo.txt >deltabase_missing &&
671 git -C "$SERVER" rev-parse HEAD:have.txt >deltabase_have &&
673 # Clone. The client has deltabase_have but not deltabase_missing.
674 git -c protocol.version=2 clone --no-checkout \
675 --filter=blob:none $HTTPD_URL/one_time_perl/server repo &&
676 git -C repo hash-object -w -- "$SERVER/have.txt" &&
678 # Sanity check to ensure that the client does not have
679 # deltabase_missing.
680 git -C repo rev-list --objects --ignore-missing \
681 -- $(cat deltabase_missing) >objlist &&
682 test_line_count = 0 objlist &&
684 # Another commit. This commit will be fetched by the client.
685 echo "abcdefghijklmnopqrstuvwxyz" >>"$SERVER/foo.txt" &&
686 echo "abcdefghijklmnopqrstuvwxyz" >>"$SERVER/have.txt" &&
687 git -C "$SERVER" add foo.txt have.txt &&
688 git -C "$SERVER" commit -m baz &&
690 # Pack a thin pack containing, among other things, HEAD:foo.txt
691 # delta-ed against HEAD^:foo.txt and HEAD:have.txt delta-ed against
692 # HEAD^:have.txt.
693 printf "%s\n--not\n%s\n" \
694 $(git -C "$SERVER" rev-parse HEAD) \
695 $(git -C "$SERVER" rev-parse HEAD^) |
696 git -C "$SERVER" pack-objects --thin --stdout >thin.pack &&
698 # Ensure that the pack contains one delta against HEAD^:foo.txt. Since
699 # the delta contains at least 26 novel characters, the size cannot be
700 # contained in 4 bits, so the object header will take up 2 bytes. The
701 # most significant nybble of the first byte is 0b1111 (0b1 to indicate
702 # that the header continues, and 0b111 to indicate REF_DELTA), followed
703 # by any 3 nybbles, then the OID of the delta base.
704 printf "f.,..%s" $(intersperse "," <deltabase_missing) >want &&
705 hex_unpack <thin.pack | intersperse "," >have &&
706 grep $(cat want) have &&
708 # Ensure that the pack contains one delta against HEAD^:have.txt,
709 # similar to the above.
710 printf "f.,..%s" $(intersperse "," <deltabase_have) >want &&
711 hex_unpack <thin.pack | intersperse "," >have &&
712 grep $(cat want) have &&
714 replace_packfile thin.pack &&
716 # Use protocol v2 because the perl command looks for the "packfile"
717 # section header.
718 test_config -C "$SERVER" protocol.version 2 &&
720 # Fetch the thin pack and ensure that index-pack is able to handle the
721 # REF_DELTA object with a missing promisor delta base.
722 GIT_TRACE_PACKET="$(pwd)/trace" git -C repo -c protocol.version=2 fetch &&
724 # Ensure that the missing delta base was directly fetched, but not the
725 # one that the client has.
726 grep "want $(cat deltabase_missing)" trace &&
727 ! grep "want $(cat deltabase_have)" trace &&
729 # Ensure that the one-time-perl script was used.
730 ! test -e "$HTTPD_ROOT_PATH/one-time-perl"
733 # DO NOT add non-httpd-specific tests here, because the last part of this
734 # test script is only executed when httpd is available and enabled.
736 test_done