]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5616-partial-clone.sh
Merge branch 'ma/header-dup-cleanup'
[thirdparty/git.git] / t / t5616-partial-clone.sh
CommitLineData
35a7ae95
JH
1#!/bin/sh
2
3test_description='git partial clone'
4
95cf2c01 5GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
334afbc7
JS
6export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7
35a7ae95
JH
8. ./test-lib.sh
9
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.
12test_expect_success 'setup normal src repo' '
13 echo "{print \$1}" >print_1.awk &&
14 echo "{print \$2}" >print_2.awk &&
15
16 git init src &&
17 for n in 1 2 3 4
18 do
74d2f569
ES
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" &&
d0fd9931 22 git -C src ls-files -s file.$n.txt >>temp || return 1
35a7ae95
JH
23 done &&
24 awk -f print_2.awk <temp | sort >expect_1.oids &&
25 test_line_count = 4 expect_1.oids
26'
27
28# bare clone "src" giving "srv.bare" for use as our server.
29test_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
33'
34
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.
38test_expect_success 'do partial clone 1' '
39 git clone --no-checkout --filter=blob:none "file://$(pwd)/srv.bare" pc1 &&
bdbc17e8 40
8d6ba495 41 git -C pc1 rev-list --quiet --objects --missing=print HEAD >revs &&
61de0ff6 42 awk -f print_1.awk revs |
bdbc17e8
MD
43 sed "s/?//" |
44 sort >observed.oids &&
45
35a7ae95
JH
46 test_cmp expect_1.oids observed.oids &&
47 test "$(git -C pc1 config --local core.repositoryformatversion)" = "1" &&
b14ed5ad 48 test "$(git -C pc1 config --local remote.origin.promisor)" = "true" &&
fa3d1b63 49 test "$(git -C pc1 config --local remote.origin.partialclonefilter)" = "blob:none"
35a7ae95
JH
50'
51
5374a290
JT
52test_expect_success 'verify that .promisor file contains refs fetched' '
53 ls pc1/.git/objects/pack/pack-*.promisor >promisorlist &&
54 test_line_count = 1 promisorlist &&
6c28bef2 55 git -C srv.bare rev-parse --verify HEAD >headhash &&
5374a290 56 grep "$(cat headhash) HEAD" $(cat promisorlist) &&
95cf2c01 57 grep "$(cat headhash) refs/heads/main" $(cat promisorlist)
5374a290
JT
58'
59
95cf2c01 60# checkout main to force dynamic object fetch of blobs at HEAD.
35a7ae95 61test_expect_success 'verify checkout with dynamic object fetch' '
8d6ba495 62 git -C pc1 rev-list --quiet --objects --missing=print HEAD >observed &&
35a7ae95 63 test_line_count = 4 observed &&
95cf2c01 64 git -C pc1 checkout main &&
8d6ba495 65 git -C pc1 rev-list --quiet --objects --missing=print HEAD >observed &&
35a7ae95
JH
66 test_line_count = 0 observed
67'
68
69# create new commits in "src" repo to establish a blame history on file.1.txt
70# and push to "srv.bare".
71test_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
74 do
74d2f569
ES
75 echo "Mod file.1.txt $x" >>src/file.1.txt &&
76 git -C src add file.1.txt &&
d0fd9931 77 git -C src commit -m "mod $x" || return 1
35a7ae95 78 done &&
95cf2c01
JS
79 git -C src blame main -- file.1.txt >expect.blame &&
80 git -C src push -u srv main
35a7ae95
JH
81'
82
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.
86test_expect_success 'partial fetch inherits filter settings' '
87 git -C pc1 fetch origin &&
8d6ba495 88 git -C pc1 rev-list --quiet --objects --missing=print \
95cf2c01 89 main..origin/main >observed &&
35a7ae95
JH
90 test_line_count = 5 observed
91'
92
93# force dynamic object fetch using diff.
95cf2c01 94# we should only get 1 new blob (for the file in origin/main).
35a7ae95 95test_expect_success 'verify diff causes dynamic object fetch' '
95cf2c01 96 git -C pc1 diff main..origin/main -- file.1.txt &&
8d6ba495 97 git -C pc1 rev-list --quiet --objects --missing=print \
95cf2c01 98 main..origin/main >observed &&
35a7ae95
JH
99 test_line_count = 4 observed
100'
101
102# force full dynamic object fetch of the file's history using blame.
103# we should get the intermediate blobs for the file.
104test_expect_success 'verify blame causes dynamic object fetch' '
95cf2c01 105 git -C pc1 blame origin/main -- file.1.txt >observed.blame &&
35a7ae95 106 test_cmp expect.blame observed.blame &&
8d6ba495 107 git -C pc1 rev-list --quiet --objects --missing=print \
95cf2c01 108 main..origin/main >observed &&
35a7ae95
JH
109 test_line_count = 0 observed
110'
111
aa57b871
JH
112# create new commits in "src" repo to establish a history on file.2.txt
113# and push to "srv.bare".
114test_expect_success 'push new commits to server for file.2.txt' '
115 for x in a b c d e f
116 do
74d2f569
ES
117 echo "Mod file.2.txt $x" >>src/file.2.txt &&
118 git -C src add file.2.txt &&
d0fd9931 119 git -C src commit -m "mod $x" || return 1
aa57b871 120 done &&
95cf2c01 121 git -C src push -u srv main
aa57b871
JH
122'
123
3aa6694f 124# Do FULL fetch by disabling inherited filter-spec using --no-filter.
aa57b871
JH
125# Verify we have all the new blobs.
126test_expect_success 'override inherited filter-spec using --no-filter' '
127 git -C pc1 fetch --no-filter origin &&
8d6ba495 128 git -C pc1 rev-list --quiet --objects --missing=print \
95cf2c01 129 main..origin/main >observed &&
aa57b871
JH
130 test_line_count = 0 observed
131'
132
3aa6694f
JH
133# create new commits in "src" repo to establish a history on file.3.txt
134# and push to "srv.bare".
135test_expect_success 'push new commits to server for file.3.txt' '
136 for x in a b c d e f
137 do
74d2f569
ES
138 echo "Mod file.3.txt $x" >>src/file.3.txt &&
139 git -C src add file.3.txt &&
d0fd9931 140 git -C src commit -m "mod $x" || return 1
3aa6694f 141 done &&
95cf2c01 142 git -C src push -u srv main
3aa6694f
JH
143'
144
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.
148test_expect_success 'manual prefetch of missing objects' '
149 git -C pc1 fetch --filter=blob:none origin &&
bdbc17e8 150
8d6ba495 151 git -C pc1 rev-list --quiet --objects --missing=print \
95cf2c01 152 main..origin/main >revs &&
61de0ff6 153 awk -f print_1.awk revs |
bdbc17e8
MD
154 sed "s/?//" |
155 sort >observed.oids &&
156
3aa6694f
JH
157 test_line_count = 6 observed.oids &&
158 git -C pc1 fetch-pack --stdin "file://$(pwd)/srv.bare" <observed.oids &&
bdbc17e8 159
8d6ba495 160 git -C pc1 rev-list --quiet --objects --missing=print \
95cf2c01 161 main..origin/main >revs &&
61de0ff6 162 awk -f print_1.awk revs |
bdbc17e8
MD
163 sed "s/?//" |
164 sort >observed.oids &&
165
3aa6694f
JH
166 test_line_count = 0 observed.oids
167'
168
1b03df5f
JT
169test_expect_success 'partial clone with transfer.fsckobjects=1 works with submodules' '
170 test_create_repo submodule &&
171 test_commit -C submodule mycommit &&
172
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 &&
176
177 git -C src_with_sub submodule add "file://$(pwd)/submodule" mysub &&
178 git -C src_with_sub commit -m "commit with submodule" &&
179
180 git -c transfer.fsckobjects=1 \
181 clone --filter="blob:none" "file://$(pwd)/src_with_sub" dst &&
182 test_when_finished rm -rf dst
183'
184
98a2ea46
JT
185test_expect_success 'partial clone with transfer.fsckobjects=1 uses index-pack --fsck-objects' '
186 git init src &&
187 test_commit -C src x &&
188 test_config -C src uploadpack.allowfilter 1 &&
189 test_config -C src uploadpack.allowanysha1inwant 1 &&
190
191 GIT_TRACE="$(pwd)/trace" git -c transfer.fsckobjects=1 \
192 clone --filter="blob:none" "file://$(pwd)/src" dst &&
193 grep "git index-pack.*--fsck-objects" trace
194'
195
bc5975d2
MD
196test_expect_success 'use fsck before and after manually fetching a missing subtree' '
197 # push new commit so server has a subtree
198 mkdir src/dir &&
199 echo "in dir" >src/dir/file.txt &&
200 git -C src add dir/file.txt &&
201 git -C src commit -m "file in dir" &&
95cf2c01 202 git -C src push -u srv main &&
bc5975d2
MD
203 SUBTREE=$(git -C src rev-parse HEAD:dir) &&
204
205 rm -rf dst &&
206 git clone --no-checkout --filter=tree:0 "file://$(pwd)/srv.bare" dst &&
207 git -C dst fsck &&
208
209 # Make sure we only have commits, and all trees and blobs are missing.
95cf2c01 210 git -C dst rev-list --missing=allow-any --objects main \
bc5975d2
MD
211 >fetched_objects &&
212 awk -f print_1.awk fetched_objects |
213 xargs -n1 git -C dst cat-file -t >fetched_types &&
214
215 sort -u fetched_types >unique_types.observed &&
216 echo commit >unique_types.expected &&
217 test_cmp unique_types.expected unique_types.observed &&
218
219 # Auto-fetch a tree with cat-file.
220 git -C dst cat-file -p $SUBTREE >tree_contents &&
221 grep file.txt tree_contents &&
222
223 # fsck still works after an auto-fetch of a tree.
224 git -C dst fsck &&
225
226 # Auto-fetch all remaining trees and blobs with --missing=error
95cf2c01 227 git -C dst rev-list --missing=error --objects main >fetched_objects &&
bc5975d2
MD
228 test_line_count = 70 fetched_objects &&
229
230 awk -f print_1.awk fetched_objects |
231 xargs -n1 git -C dst cat-file -t >fetched_types &&
232
233 sort -u fetched_types >unique_types.observed &&
d9e6d094 234 test_write_lines blob commit tree >unique_types.expected &&
bc5975d2
MD
235 test_cmp unique_types.expected unique_types.observed
236'
237
489fc9ee
MD
238test_expect_success 'implicitly construct combine: filter with repeated flags' '
239 GIT_TRACE=$(pwd)/trace git clone --bare \
240 --filter=blob:none --filter=tree:1 \
241 "file://$(pwd)/srv.bare" pc2 &&
242 grep "trace:.* git pack-objects .*--filter=combine:blob:none+tree:1" \
243 trace &&
244 git -C pc2 rev-list --objects --missing=allow-any HEAD >objects &&
245
246 # We should have gotten some root trees.
247 grep " $" objects &&
248 # Should not have gotten any non-root trees or blobs.
249 ! grep " ." objects &&
250
251 xargs -n 1 git -C pc2 cat-file -t <objects >types &&
252 sort -u types >unique_types.actual &&
253 test_write_lines commit tree >unique_types.expected &&
254 test_cmp unique_types.expected unique_types.actual
255'
256
d43a21bd
JK
257test_expect_success 'upload-pack complains of bogus filter config' '
258 printf 0000 |
259 test_must_fail git \
260 -c uploadpackfilter.tree.maxdepth \
261 upload-pack . >/dev/null 2>err &&
262 test_i18ngrep "unable to parse.*tree.maxdepth" err
263'
264
6dd3456a
TB
265test_expect_success 'upload-pack fails banned object filters' '
266 test_config -C srv.bare uploadpackfilter.blob:none.allow false &&
267 test_must_fail ok=sigpipe git clone --no-checkout --filter=blob:none \
268 "file://$(pwd)/srv.bare" pc3 2>err &&
6cc275ea 269 test_i18ngrep "filter '\''blob:none'\'' not supported" err
6dd3456a
TB
270'
271
272test_expect_success 'upload-pack fails banned combine object filters' '
273 test_config -C srv.bare uploadpackfilter.allow false &&
274 test_config -C srv.bare uploadpackfilter.combine.allow true &&
275 test_config -C srv.bare uploadpackfilter.tree.allow true &&
276 test_config -C srv.bare uploadpackfilter.blob:none.allow false &&
277 test_must_fail ok=sigpipe git clone --no-checkout --filter=tree:1 \
278 --filter=blob:none "file://$(pwd)/srv.bare" pc3 2>err &&
6cc275ea 279 test_i18ngrep "filter '\''blob:none'\'' not supported" err
6dd3456a
TB
280'
281
282test_expect_success 'upload-pack fails banned object filters with fallback' '
283 test_config -C srv.bare uploadpackfilter.allow false &&
284 test_must_fail ok=sigpipe git clone --no-checkout --filter=blob:none \
285 "file://$(pwd)/srv.bare" pc3 2>err &&
6cc275ea 286 test_i18ngrep "filter '\''blob:none'\'' not supported" err
6dd3456a
TB
287'
288
5b01a4e8
TB
289test_expect_success 'upload-pack limits tree depth filters' '
290 test_config -C srv.bare uploadpackfilter.allow false &&
291 test_config -C srv.bare uploadpackfilter.tree.allow true &&
292 test_config -C srv.bare uploadpackfilter.tree.maxDepth 0 &&
293 test_must_fail ok=sigpipe git clone --no-checkout --filter=tree:1 \
294 "file://$(pwd)/srv.bare" pc3 2>err &&
8d133f50
TB
295 test_i18ngrep "tree filter allows max depth 0, but got 1" err &&
296
297 git clone --no-checkout --filter=tree:0 "file://$(pwd)/srv.bare" pc4 &&
298
299 test_config -C srv.bare uploadpackfilter.tree.maxDepth 5 &&
300 git clone --no-checkout --filter=tree:5 "file://$(pwd)/srv.bare" pc5 &&
301 test_must_fail ok=sigpipe git clone --no-checkout --filter=tree:6 \
302 "file://$(pwd)/srv.bare" pc6 2>err &&
303 test_i18ngrep "tree filter allows max depth 5, but got 6" err
5b01a4e8
TB
304'
305
a0c9016a
JT
306test_expect_success 'partial clone fetches blobs pointed to by refs even if normally filtered out' '
307 rm -rf src dst &&
308 git init src &&
309 test_commit -C src x &&
310 test_config -C src uploadpack.allowfilter 1 &&
311 test_config -C src uploadpack.allowanysha1inwant 1 &&
312
313 # Create a tag pointing to a blob.
314 BLOB=$(echo blob-contents | git -C src hash-object --stdin -w) &&
315 git -C src tag myblob "$BLOB" &&
316
317 git clone --filter="blob:none" "file://$(pwd)/src" dst 2>err &&
318 ! grep "does not point to a valid object" err &&
319 git -C dst fsck
320'
321
35f9e3e5
JT
322test_expect_success 'fetch what is specified on CLI even if already promised' '
323 rm -rf src dst.git &&
324 git init src &&
325 test_commit -C src foo &&
326 test_config -C src uploadpack.allowfilter 1 &&
327 test_config -C src uploadpack.allowanysha1inwant 1 &&
328
329 git hash-object --stdin <src/foo.t >blob &&
330
331 git clone --bare --filter=blob:none "file://$(pwd)/src" dst.git &&
332 git -C dst.git rev-list --objects --quiet --missing=print HEAD >missing_before &&
333 grep "?$(cat blob)" missing_before &&
334 git -C dst.git fetch origin $(cat blob) &&
335 git -C dst.git rev-list --objects --quiet --missing=print HEAD >missing_after &&
336 ! grep "?$(cat blob)" missing_after
337'
338
72de5895
JS
339test_expect_success 'setup src repo for sparse filter' '
340 git init sparse-src &&
341 git -C sparse-src config --local uploadpack.allowfilter 1 &&
342 git -C sparse-src config --local uploadpack.allowanysha1inwant 1 &&
343 test_commit -C sparse-src one &&
344 test_commit -C sparse-src two &&
345 echo /one.t >sparse-src/only-one &&
346 git -C sparse-src add . &&
347 git -C sparse-src commit -m "add sparse checkout files"
348'
349
4c96a775 350test_expect_success 'partial clone with sparse filter succeeds' '
72de5895
JS
351 rm -rf dst.git &&
352 git clone --no-local --bare \
95cf2c01 353 --filter=sparse:oid=main:only-one \
72de5895
JS
354 sparse-src dst.git &&
355 (
356 cd dst.git &&
357 git rev-list --objects --missing=print HEAD >out &&
358 grep "^$(git rev-parse HEAD:one.t)" out &&
359 grep "^?$(git rev-parse HEAD:two.t)" out
360 )
361'
362
4c96a775 363test_expect_success 'partial clone with unresolvable sparse filter fails cleanly' '
72de5895
JS
364 rm -rf dst.git &&
365 test_must_fail git clone --no-local --bare \
95cf2c01 366 --filter=sparse:oid=main:no-such-name \
72de5895 367 sparse-src dst.git 2>err &&
95cf2c01 368 test_i18ngrep "unable to access sparse blob in .main:no-such-name" err &&
72de5895 369 test_must_fail git clone --no-local --bare \
95cf2c01 370 --filter=sparse:oid=main \
72de5895 371 sparse-src dst.git 2>err &&
cf34337f 372 test_i18ngrep "unable to parse sparse filter data in" err
72de5895
JS
373'
374
6462d5eb
JT
375setup_triangle () {
376 rm -rf big-blob.txt server client promisor-remote &&
377
378 printf "line %d\n" $(test_seq 1 100) >big-blob.txt &&
379
b54128bb 380 # Create a server with 2 commits: a commit with a big tree and a child
6462d5eb
JT
381 # commit with an incremental change. Also, create a partial clone
382 # client that only contains the first commit.
383 git init server &&
384 git -C server config --local uploadpack.allowfilter 1 &&
b54128bb
JT
385 for i in $(test_seq 1 100)
386 do
387 echo "make the tree big" >server/file$i &&
d0fd9931 388 git -C server add file$i || return 1
b54128bb 389 done &&
6462d5eb
JT
390 git -C server commit -m "initial" &&
391 git clone --bare --filter=tree:0 "file://$(pwd)/server" client &&
b54128bb
JT
392 echo another line >>server/file1 &&
393 git -C server commit -am "incremental change" &&
6462d5eb 394
b54128bb
JT
395 # Create a promisor remote that only contains the tree and blob from
396 # the first commit.
6462d5eb 397 git init promisor-remote &&
b54128bb
JT
398 git -C server config --local uploadpack.allowanysha1inwant 1 &&
399 TREE_HASH=$(git -C server rev-parse HEAD~1^{tree}) &&
400 git -C promisor-remote fetch --keep "file://$(pwd)/server" "$TREE_HASH" &&
401 git -C promisor-remote count-objects -v >object-count &&
402 test_i18ngrep "count: 0" object-count &&
403 test_i18ngrep "in-pack: 2" object-count &&
404
405 # Set it as the promisor remote of client. Thus, whenever
406 # the client lazy fetches, the lazy fetch will succeed only if it is
407 # for this tree or blob.
6462d5eb
JT
408 test_commit -C promisor-remote one && # so that ref advertisement is not empty
409 git -C promisor-remote config --local uploadpack.allowanysha1inwant 1 &&
6462d5eb
JT
410 git -C client remote set-url origin "file://$(pwd)/promisor-remote"
411}
412
413# NEEDSWORK: The tests beginning with "fetch lazy-fetches" below only
414# test that "fetch" avoid fetching trees and blobs, but not commits or
415# tags. Revisit this if Git is ever taught to support partial clones
416# with commits and/or tags filtered out.
417
418test_expect_success 'fetch lazy-fetches only to resolve deltas' '
419 setup_triangle &&
420
421 # Exercise to make sure it works. Git will not fetch anything from the
b54128bb 422 # promisor remote other than for the big tree (because it needs to
6462d5eb
JT
423 # resolve the delta).
424 GIT_TRACE_PACKET="$(pwd)/trace" git -C client \
95cf2c01 425 fetch "file://$(pwd)/server" main &&
6462d5eb
JT
426
427 # Verify the assumption that the client needed to fetch the delta base
428 # to resolve the delta.
b54128bb 429 git -C server rev-parse HEAD~1^{tree} >hash &&
6462d5eb
JT
430 grep "want $(cat hash)" trace
431'
432
433test_expect_success 'fetch lazy-fetches only to resolve deltas, protocol v2' '
434 setup_triangle &&
435
436 git -C server config --local protocol.version 2 &&
437 git -C client config --local protocol.version 2 &&
438 git -C promisor-remote config --local protocol.version 2 &&
439
440 # Exercise to make sure it works. Git will not fetch anything from the
441 # promisor remote other than for the big blob (because it needs to
442 # resolve the delta).
443 GIT_TRACE_PACKET="$(pwd)/trace" git -C client \
95cf2c01 444 fetch "file://$(pwd)/server" main &&
6462d5eb
JT
445
446 # Verify that protocol version 2 was used.
447 grep "fetch< version 2" trace &&
448
449 # Verify the assumption that the client needed to fetch the delta base
450 # to resolve the delta.
b54128bb 451 git -C server rev-parse HEAD~1^{tree} >hash &&
6462d5eb
JT
452 grep "want $(cat hash)" trace
453'
454
5c3b801d
JT
455test_expect_success 'fetch does not lazy-fetch missing targets of its refs' '
456 rm -rf server client trace &&
457
458 test_create_repo server &&
459 test_config -C server uploadpack.allowfilter 1 &&
460 test_config -C server uploadpack.allowanysha1inwant 1 &&
461 test_commit -C server foo &&
462
463 git clone --filter=blob:none "file://$(pwd)/server" client &&
464 # Make all refs point to nothing by deleting all objects.
465 rm client/.git/objects/pack/* &&
466
467 test_commit -C server bar &&
468 GIT_TRACE_PACKET="$(pwd)/trace" git -C client fetch \
469 --no-tags --recurse-submodules=no \
470 origin refs/tags/bar &&
471 FOO_HASH=$(git -C server rev-parse foo) &&
472 ! grep "want $FOO_HASH" trace
473'
474
08450ef7
CC
475# The following two tests must be in this order. It is important that
476# the srv.bare repository did not have tags during clone, but has tags
d0badf87
DS
477# in the fetch.
478
08450ef7 479test_expect_success 'verify fetch succeeds when asking for new tags' '
d0badf87
DS
480 git clone --filter=blob:none "file://$(pwd)/srv.bare" tag-test &&
481 for i in I J K
482 do
483 test_commit -C src $i &&
484 git -C src branch $i || return 1
485 done &&
486 git -C srv.bare fetch --tags origin +refs/heads/*:refs/heads/* &&
487 git -C tag-test -c protocol.version=2 fetch --tags origin
488'
489
3e96c668 490test_expect_success 'verify fetch downloads only one pack when updating refs' '
d0badf87
DS
491 git clone --filter=blob:none "file://$(pwd)/srv.bare" pack-test &&
492 ls pack-test/.git/objects/pack/*pack >pack-list &&
493 test_line_count = 2 pack-list &&
494 for i in A B C
495 do
496 test_commit -C src $i &&
497 git -C src branch $i || return 1
498 done &&
499 git -C srv.bare fetch origin +refs/heads/*:refs/heads/* &&
500 git -C pack-test fetch origin &&
501 ls pack-test/.git/objects/pack/*pack >pack-list &&
502 test_line_count = 3 pack-list
503'
504
167a575e
JK
505test_expect_success 'single-branch tag following respects partial clone' '
506 git clone --single-branch -b B --filter=blob:none \
507 "file://$(pwd)/srv.bare" single &&
508 git -C single rev-parse --verify refs/tags/B &&
509 git -C single rev-parse --verify refs/tags/A &&
510 test_must_fail git -C single rev-parse --verify refs/tags/C
511'
512
77aa0941
JT
513test_expect_success 'fetch from a partial clone, protocol v0' '
514 rm -rf server client trace &&
515
516 # Pretend that the server is a partial clone
517 git init server &&
518 git -C server remote add a_remote "file://$(pwd)/" &&
519 test_config -C server core.repositoryformatversion 1 &&
520 test_config -C server extensions.partialclone a_remote &&
521 test_config -C server protocol.version 0 &&
522 test_commit -C server foo &&
523
524 # Fetch from the server
525 git init client &&
526 test_config -C client protocol.version 0 &&
527 test_commit -C client bar &&
528 GIT_TRACE_PACKET="$(pwd)/trace" git -C client fetch "file://$(pwd)/server" &&
529 ! grep "version 2" trace
530'
531
532test_expect_success 'fetch from a partial clone, protocol v2' '
533 rm -rf server client trace &&
534
535 # Pretend that the server is a partial clone
536 git init server &&
537 git -C server remote add a_remote "file://$(pwd)/" &&
538 test_config -C server core.repositoryformatversion 1 &&
539 test_config -C server extensions.partialclone a_remote &&
540 test_config -C server protocol.version 2 &&
541 test_commit -C server foo &&
542
543 # Fetch from the server
544 git init client &&
545 test_config -C client protocol.version 2 &&
546 test_commit -C client bar &&
547 GIT_TRACE_PACKET="$(pwd)/trace" git -C client fetch "file://$(pwd)/server" &&
548 grep "version 2" trace
549'
550
a643157d
RS
551test_expect_success 'repack does not loosen promisor objects' '
552 rm -rf client trace &&
553 git clone --bare --filter=blob:none "file://$(pwd)/srv.bare" client &&
554 test_when_finished "rm -rf client trace" &&
555 GIT_TRACE2_PERF="$(pwd)/trace" git -C client repack -A -d &&
556 grep "loosen_unused_packed_objects/loosened:0" trace
557'
558
a7e67c11
JT
559. "$TEST_DIRECTORY"/lib-httpd.sh
560start_httpd
561
385d1bfd
JT
562# Converts bytes into their hexadecimal representation. For example,
563# "printf 'ab\r\n' | hex_unpack" results in '61620d0a'.
564hex_unpack () {
565 perl -e '$/ = undef; $input = <>; print unpack("H2" x length($input), $input)'
566}
567
568# Inserts $1 at the start of the string and every 2 characters thereafter.
569intersperse () {
570 sed 's/\(..\)/'$1'\1/g'
571}
572
eafff6e4 573# Create a one-time-perl command to replace the existing packfile with $1.
385d1bfd
JT
574replace_packfile () {
575 # The protocol requires that the packfile be sent in sideband 1, hence
576 # the extra \x01 byte at the beginning.
eafff6e4
JS
577 cp $1 "$HTTPD_ROOT_PATH/one-time-pack" &&
578 echo 'if (/packfile/) {
579 print;
580 my $length = -s "one-time-pack";
581 printf "%04x\x01", $length + 5;
582 print `cat one-time-pack` . "0000";
583 last
584 }' >"$HTTPD_ROOT_PATH/one-time-perl"
a7e67c11
JT
585}
586
587test_expect_success 'upon cloning, check that all refs point to objects' '
588 SERVER="$HTTPD_DOCUMENT_ROOT_PATH/server" &&
589 rm -rf "$SERVER" repo &&
590 test_create_repo "$SERVER" &&
591 test_commit -C "$SERVER" foo &&
592 test_config -C "$SERVER" uploadpack.allowfilter 1 &&
593 test_config -C "$SERVER" uploadpack.allowanysha1inwant 1 &&
594
595 # Create a tag pointing to a blob.
596 BLOB=$(echo blob-contents | git -C "$SERVER" hash-object --stdin -w) &&
597 git -C "$SERVER" tag myblob "$BLOB" &&
598
599 # Craft a packfile not including that blob.
600 git -C "$SERVER" rev-parse HEAD |
bdbc17e8 601 git -C "$SERVER" pack-objects --stdout >incomplete.pack &&
a7e67c11
JT
602
603 # Replace the existing packfile with the crafted one. The protocol
604 # requires that the packfile be sent in sideband 1, hence the extra
605 # \x01 byte at the beginning.
385d1bfd 606 replace_packfile incomplete.pack &&
a7e67c11 607
eafff6e4 608 # Use protocol v2 because the perl command looks for the "packfile"
a7e67c11
JT
609 # section header.
610 test_config -C "$SERVER" protocol.version 2 &&
611 test_must_fail git -c protocol.version=2 clone \
eafff6e4 612 --filter=blob:none $HTTPD_URL/one_time_perl/server repo 2>err &&
a7e67c11 613
3813a89f 614 test_i18ngrep "did not send all necessary objects" err &&
a7e67c11 615
eafff6e4
JS
616 # Ensure that the one-time-perl script was used.
617 ! test -e "$HTTPD_ROOT_PATH/one-time-perl"
a7e67c11
JT
618'
619
dc0a13f6
JT
620test_expect_success 'when partial cloning, tolerate server not sending target of tag' '
621 SERVER="$HTTPD_DOCUMENT_ROOT_PATH/server" &&
622 rm -rf "$SERVER" repo &&
623 test_create_repo "$SERVER" &&
624 test_commit -C "$SERVER" foo &&
625 test_config -C "$SERVER" uploadpack.allowfilter 1 &&
626 test_config -C "$SERVER" uploadpack.allowanysha1inwant 1 &&
627
628 # Create an annotated tag pointing to a blob.
629 BLOB=$(echo blob-contents | git -C "$SERVER" hash-object --stdin -w) &&
630 git -C "$SERVER" tag -m message -a myblob "$BLOB" &&
631
632 # Craft a packfile including the tag, but not the blob it points to.
8c4cc326
JT
633 # Also, omit objects referenced from HEAD in order to force a second
634 # fetch (to fetch missing objects) upon the automatic checkout that
635 # happens after a clone.
636 printf "%s\n%s\n--not\n%s\n%s\n" \
dc0a13f6
JT
637 $(git -C "$SERVER" rev-parse HEAD) \
638 $(git -C "$SERVER" rev-parse myblob) \
8c4cc326 639 $(git -C "$SERVER" rev-parse HEAD^{tree}) \
dc0a13f6
JT
640 $(git -C "$SERVER" rev-parse myblob^{blob}) |
641 git -C "$SERVER" pack-objects --thin --stdout >incomplete.pack &&
642
643 # Replace the existing packfile with the crafted one. The protocol
644 # requires that the packfile be sent in sideband 1, hence the extra
645 # \x01 byte at the beginning.
385d1bfd 646 replace_packfile incomplete.pack &&
dc0a13f6 647
eafff6e4 648 # Use protocol v2 because the perl command looks for the "packfile"
dc0a13f6
JT
649 # section header.
650 test_config -C "$SERVER" protocol.version 2 &&
651
652 # Exercise to make sure it works.
653 git -c protocol.version=2 clone \
eafff6e4 654 --filter=blob:none $HTTPD_URL/one_time_perl/server repo 2> err &&
8c4cc326 655 ! grep "missing object referenced by" err &&
dc0a13f6 656
eafff6e4
JS
657 # Ensure that the one-time-perl script was used.
658 ! test -e "$HTTPD_ROOT_PATH/one-time-perl"
dc0a13f6
JT
659'
660
8a30a1ef
JT
661test_expect_success 'tolerate server sending REF_DELTA against missing promisor objects' '
662 SERVER="$HTTPD_DOCUMENT_ROOT_PATH/server" &&
663 rm -rf "$SERVER" repo &&
664 test_create_repo "$SERVER" &&
665 test_config -C "$SERVER" uploadpack.allowfilter 1 &&
666 test_config -C "$SERVER" uploadpack.allowanysha1inwant 1 &&
667
810e1932 668 # Create a commit with 2 blobs to be used as delta bases.
8a30a1ef
JT
669 for i in $(test_seq 10)
670 do
810e1932 671 echo "this is a line" >>"$SERVER/foo.txt" &&
d0fd9931 672 echo "this is another line" >>"$SERVER/have.txt" || return 1
8a30a1ef 673 done &&
810e1932 674 git -C "$SERVER" add foo.txt have.txt &&
8a30a1ef 675 git -C "$SERVER" commit -m bar &&
810e1932
JT
676 git -C "$SERVER" rev-parse HEAD:foo.txt >deltabase_missing &&
677 git -C "$SERVER" rev-parse HEAD:have.txt >deltabase_have &&
8a30a1ef 678
810e1932 679 # Clone. The client has deltabase_have but not deltabase_missing.
8a30a1ef 680 git -c protocol.version=2 clone --no-checkout \
eafff6e4 681 --filter=blob:none $HTTPD_URL/one_time_perl/server repo &&
810e1932 682 git -C repo hash-object -w -- "$SERVER/have.txt" &&
8a30a1ef 683
810e1932
JT
684 # Sanity check to ensure that the client does not have
685 # deltabase_missing.
5718c53d 686 git -C repo rev-list --objects --ignore-missing \
810e1932 687 -- $(cat deltabase_missing) >objlist &&
8a30a1ef
JT
688 test_line_count = 0 objlist &&
689
690 # Another commit. This commit will be fetched by the client.
691 echo "abcdefghijklmnopqrstuvwxyz" >>"$SERVER/foo.txt" &&
810e1932
JT
692 echo "abcdefghijklmnopqrstuvwxyz" >>"$SERVER/have.txt" &&
693 git -C "$SERVER" add foo.txt have.txt &&
8a30a1ef
JT
694 git -C "$SERVER" commit -m baz &&
695
696 # Pack a thin pack containing, among other things, HEAD:foo.txt
810e1932
JT
697 # delta-ed against HEAD^:foo.txt and HEAD:have.txt delta-ed against
698 # HEAD^:have.txt.
8a30a1ef
JT
699 printf "%s\n--not\n%s\n" \
700 $(git -C "$SERVER" rev-parse HEAD) \
701 $(git -C "$SERVER" rev-parse HEAD^) |
702 git -C "$SERVER" pack-objects --thin --stdout >thin.pack &&
703
704 # Ensure that the pack contains one delta against HEAD^:foo.txt. Since
705 # the delta contains at least 26 novel characters, the size cannot be
706 # contained in 4 bits, so the object header will take up 2 bytes. The
707 # most significant nybble of the first byte is 0b1111 (0b1 to indicate
708 # that the header continues, and 0b111 to indicate REF_DELTA), followed
709 # by any 3 nybbles, then the OID of the delta base.
810e1932
JT
710 printf "f.,..%s" $(intersperse "," <deltabase_missing) >want &&
711 hex_unpack <thin.pack | intersperse "," >have &&
712 grep $(cat want) have &&
713
714 # Ensure that the pack contains one delta against HEAD^:have.txt,
715 # similar to the above.
716 printf "f.,..%s" $(intersperse "," <deltabase_have) >want &&
8a30a1ef
JT
717 hex_unpack <thin.pack | intersperse "," >have &&
718 grep $(cat want) have &&
719
720 replace_packfile thin.pack &&
721
eafff6e4 722 # Use protocol v2 because the perl command looks for the "packfile"
8a30a1ef
JT
723 # section header.
724 test_config -C "$SERVER" protocol.version 2 &&
725
726 # Fetch the thin pack and ensure that index-pack is able to handle the
727 # REF_DELTA object with a missing promisor delta base.
810e1932
JT
728 GIT_TRACE_PACKET="$(pwd)/trace" git -C repo -c protocol.version=2 fetch &&
729
730 # Ensure that the missing delta base was directly fetched, but not the
731 # one that the client has.
732 grep "want $(cat deltabase_missing)" trace &&
733 ! grep "want $(cat deltabase_have)" trace &&
8a30a1ef 734
eafff6e4
JS
735 # Ensure that the one-time-perl script was used.
736 ! test -e "$HTTPD_ROOT_PATH/one-time-perl"
8a30a1ef
JT
737'
738
decfe05b
SG
739# DO NOT add non-httpd-specific tests here, because the last part of this
740# test script is only executed when httpd is available and enabled.
741
35a7ae95 742test_done