3 test_description
='upload-pack ref-in-want'
8 sed -n -e '/wanted-refs/,/0001/{
12 }' <out | test-tool pkt-line unpack
>actual_refs
15 get_actual_commits
() {
16 test-tool pkt-line unpack-sideband
<out
>o.pack
&&
17 git index-pack o.pack
&&
18 git verify-pack
-v o.idx
>objs
&&
19 sed -n -e 's/\([0-9a-f][0-9a-f]*\) commit .*/\1/p' objs
>objs.
sed &&
20 sort >actual_commits
<objs.
sed
25 test_cmp expected_refs actual_refs
&&
27 sort expected_commits
>sorted_commits
&&
28 test_cmp sorted_commits actual_commits
34 if test "$(test_oid algo)" != sha1
36 echo "object-format=$(test_oid algo)"
40 # Write a complete fetch command to stdout, suitable for use with `test-tool
41 # pkt-line`. "want-ref", "want", and "have" lines are read from stdin.
45 # write_fetch_command <<-EOF
46 # want-ref refs/heads/main
47 # have $(git rev-parse a)
50 # write_fetch_command <<-EOF
51 # want $(git rev-parse b)
52 # have $(git rev-parse a)
55 write_fetch_command
() {
56 write_command fetch
&&
70 test_expect_success
'setup repository' '
73 git checkout -b o/foo &&
76 git checkout -b o/bar b &&
78 git checkout -b baz a &&
84 test_expect_success
'config controls ref-in-want advertisement' '
85 test-tool serve-v2 --advertise-capabilities >out &&
86 perl -ne "/ref-in-want/ and print" out >out.filter &&
87 test_must_be_empty out.filter &&
89 git config uploadpack.allowRefInWant false &&
90 test-tool serve-v2 --advertise-capabilities >out &&
91 perl -ne "/ref-in-want/ and print" out >out.filter &&
92 test_must_be_empty out.filter &&
94 git config uploadpack.allowRefInWant true &&
95 test-tool serve-v2 --advertise-capabilities >out &&
96 perl -ne "/ref-in-want/ and print" out >out.filter &&
97 test_file_not_empty out.filter
100 test_expect_success
'invalid want-ref line' '
101 write_fetch_command >pkt <<-EOF &&
102 want-ref refs/heads/non-existent
105 test-tool pkt-line pack <pkt >in &&
106 test_must_fail test-tool serve-v2 --stateless-rpc 2>out <in &&
107 grep "unknown ref" out
110 test_expect_success
'basic want-ref' '
111 oid=$(git rev-parse f) &&
112 cat >expected_refs <<-EOF &&
115 git rev-parse f >expected_commits &&
117 write_fetch_command >pkt <<-EOF &&
118 want-ref refs/heads/main
119 have $(git rev-parse a)
121 test-tool pkt-line pack <pkt >in &&
123 test-tool serve-v2 --stateless-rpc >out <in &&
127 test_expect_success
'multiple want-ref lines' '
128 oid_c=$(git rev-parse c) &&
129 oid_d=$(git rev-parse d) &&
130 cat >expected_refs <<-EOF &&
131 $oid_c refs/heads/o/foo
132 $oid_d refs/heads/o/bar
134 git rev-parse c d >expected_commits &&
136 write_fetch_command >pkt <<-EOF &&
137 want-ref refs/heads/o/foo
138 want-ref refs/heads/o/bar
139 have $(git rev-parse b)
141 test-tool pkt-line pack <pkt >in &&
143 test-tool serve-v2 --stateless-rpc >out <in &&
147 test_expect_success
'mix want and want-ref' '
148 oid=$(git rev-parse f) &&
149 cat >expected_refs <<-EOF &&
152 git rev-parse e f >expected_commits &&
154 write_fetch_command >pkt <<-EOF &&
155 want-ref refs/heads/main
156 want $(git rev-parse e)
157 have $(git rev-parse a)
159 test-tool pkt-line pack <pkt >in &&
161 test-tool serve-v2 --stateless-rpc >out <in &&
165 test_expect_success
'want-ref with ref we already have commit for' '
166 oid=$(git rev-parse c) &&
167 cat >expected_refs <<-EOF &&
168 $oid refs/heads/o/foo
172 write_fetch_command >pkt <<-EOF &&
173 want-ref refs/heads/o/foo
174 have $(git rev-parse c)
176 test-tool pkt-line pack <pkt >in &&
178 test-tool serve-v2 --stateless-rpc >out <in &&
183 LOCAL_PRISTINE
="$(pwd)/local_pristine"
200 test_expect_success
'setup repos for fetching with ref-in-want tests' '
202 git init -b main "$REPO" &&
206 # Local repo with many commits (so that negotiation will take
207 # more than 1 request/response pair)
208 rm -rf "$LOCAL_PRISTINE" &&
209 git clone "file://$REPO" "$LOCAL_PRISTINE" &&
210 cd "$LOCAL_PRISTINE" &&
211 git checkout -b side &&
212 test_commit_bulk --id=s 33 &&
214 # Add novel commits to upstream
217 git checkout -b o/foo &&
220 git checkout -b o/bar b &&
222 git checkout -b baz a &&
227 git -C "$REPO" config uploadpack.allowRefInWant true &&
228 git -C "$LOCAL_PRISTINE" config protocol.version 2
231 test_expect_success
'fetching with exact OID' '
232 test_when_finished "rm -f log trace2" &&
235 cp -r "$LOCAL_PRISTINE" local &&
236 oid=$(git -C "$REPO" rev-parse d) &&
237 GIT_TRACE_PACKET="$(pwd)/log" GIT_TRACE2_EVENT="$(pwd)/trace2" \
238 git -C local fetch origin \
239 "$oid":refs/heads/actual &&
241 grep \"key\":\"total_rounds\",\"value\":\"2\" trace2 &&
242 git -C "$REPO" rev-parse "d" >expected &&
243 git -C local rev-parse refs/heads/actual >actual &&
244 test_cmp expected actual &&
248 test_expect_success
'fetching multiple refs' '
249 test_when_finished "rm -f log" &&
252 cp -r "$LOCAL_PRISTINE" local &&
253 GIT_TRACE_PACKET="$(pwd)/log" git -C local fetch origin main baz &&
255 git -C "$REPO" rev-parse "main" "baz" >expected &&
256 git -C local rev-parse refs/remotes/origin/main refs/remotes/origin/baz >actual &&
257 test_cmp expected actual &&
258 grep "want-ref refs/heads/main" log &&
259 grep "want-ref refs/heads/baz" log
262 test_expect_success
'fetching ref and exact OID' '
263 test_when_finished "rm -f log" &&
266 cp -r "$LOCAL_PRISTINE" local &&
267 oid=$(git -C "$REPO" rev-parse b) &&
268 GIT_TRACE_PACKET="$(pwd)/log" git -C local fetch origin \
269 main "$oid":refs/heads/actual &&
271 git -C "$REPO" rev-parse "main" "b" >expected &&
272 git -C local rev-parse refs/remotes/origin/main refs/heads/actual >actual &&
273 test_cmp expected actual &&
274 grep "want $oid" log &&
275 grep "want-ref refs/heads/main" log
278 test_expect_success
'fetching with wildcard that does not match any refs' '
279 test_when_finished "rm -f log" &&
282 cp -r "$LOCAL_PRISTINE" local &&
283 git -C local fetch origin refs/heads/none*:refs/heads/* >out &&
284 test_must_be_empty out
287 test_expect_success
'fetching with wildcard that matches multiple refs' '
288 test_when_finished "rm -f log" &&
291 cp -r "$LOCAL_PRISTINE" local &&
292 GIT_TRACE_PACKET="$(pwd)/log" git -C local fetch origin refs/heads/o*:refs/heads/o* &&
294 git -C "$REPO" rev-parse "o/foo" "o/bar" >expected &&
295 git -C local rev-parse "o/foo" "o/bar" >actual &&
296 test_cmp expected actual &&
297 grep "want-ref refs/heads/o/foo" log &&
298 grep "want-ref refs/heads/o/bar" log
301 REPO
="$(pwd)/repo-ns"
303 test_expect_success
'setup namespaced repo' '
305 git init -b main "$REPO" &&
313 git update-ref refs/heads/ns-no b &&
314 git update-ref refs/namespaces/ns/refs/heads/ns-yes c &&
315 git update-ref refs/namespaces/ns/refs/heads/hidden d
317 git -C "$REPO" config uploadpack.allowRefInWant true
320 test_expect_success
'with namespace: want-ref is considered relative to namespace' '
321 wanted_ref=refs/heads/ns-yes &&
323 oid=$(git -C "$REPO" rev-parse "refs/namespaces/ns/$wanted_ref") &&
324 cat >expected_refs <<-EOF &&
327 cat >expected_commits <<-EOF &&
329 $(git -C "$REPO" rev-parse a)
332 write_fetch_command >pkt <<-EOF &&
335 test-tool pkt-line pack <pkt >in &&
337 GIT_NAMESPACE=ns test-tool -C "$REPO" serve-v2 --stateless-rpc >out <in &&
341 test_expect_success
'with namespace: want-ref outside namespace is unknown' '
342 wanted_ref=refs/heads/ns-no &&
344 write_fetch_command >pkt <<-EOF &&
347 test-tool pkt-line pack <pkt >in &&
349 test_must_fail env GIT_NAMESPACE=ns \
350 test-tool -C "$REPO" serve-v2 --stateless-rpc >out <in &&
351 grep "unknown ref" out
354 # Cross-check refs/heads/ns-no indeed exists
355 test_expect_success
'without namespace: want-ref outside namespace succeeds' '
356 wanted_ref=refs/heads/ns-no &&
358 oid=$(git -C "$REPO" rev-parse $wanted_ref) &&
359 cat >expected_refs <<-EOF &&
362 cat >expected_commits <<-EOF &&
364 $(git -C "$REPO" rev-parse a)
367 write_fetch_command >pkt <<-EOF &&
370 test-tool pkt-line pack <pkt >in &&
372 test-tool -C "$REPO" serve-v2 --stateless-rpc >out <in &&
376 test_expect_success
'with namespace: hideRefs is matched, relative to namespace' '
377 wanted_ref=refs/heads/hidden &&
378 git -C "$REPO" config transfer.hideRefs $wanted_ref &&
380 write_fetch_command >pkt <<-EOF &&
383 test-tool pkt-line pack <pkt >in &&
385 test_must_fail env GIT_NAMESPACE=ns \
386 test-tool -C "$REPO" serve-v2 --stateless-rpc >out <in &&
387 grep "unknown ref" out
390 # Cross-check refs/heads/hidden indeed exists
391 test_expect_success
'with namespace: want-ref succeeds if hideRefs is removed' '
392 wanted_ref=refs/heads/hidden &&
393 git -C "$REPO" config --unset transfer.hideRefs $wanted_ref &&
395 oid=$(git -C "$REPO" rev-parse "refs/namespaces/ns/$wanted_ref") &&
396 cat >expected_refs <<-EOF &&
399 cat >expected_commits <<-EOF &&
401 $(git -C "$REPO" rev-parse a)
404 write_fetch_command >pkt <<-EOF &&
407 test-tool pkt-line pack <pkt >in &&
409 GIT_NAMESPACE=ns test-tool -C "$REPO" serve-v2 --stateless-rpc >out <in &&
413 test_expect_success
'without namespace: relative hideRefs does not match' '
414 wanted_ref=refs/namespaces/ns/refs/heads/hidden &&
415 git -C "$REPO" config transfer.hideRefs refs/heads/hidden &&
417 oid=$(git -C "$REPO" rev-parse $wanted_ref) &&
418 cat >expected_refs <<-EOF &&
421 cat >expected_commits <<-EOF &&
423 $(git -C "$REPO" rev-parse a)
426 write_fetch_command >pkt <<-EOF &&
429 test-tool pkt-line pack <pkt >in &&
431 test-tool -C "$REPO" serve-v2 --stateless-rpc >out <in &&
436 .
"$TEST_DIRECTORY"/lib-httpd.sh
439 REPO
="$HTTPD_DOCUMENT_ROOT_PATH/repo"
440 LOCAL_PRISTINE
="$(pwd)/local_pristine"
442 test_expect_success
'setup repos for change-while-negotiating test' '
444 git init -b main "$REPO" &&
446 >.git/git-daemon-export-ok &&
450 # Local repo with many commits (so that negotiation will take
451 # more than 1 request/response pair)
452 rm -rf "$LOCAL_PRISTINE" &&
453 git clone "http://127.0.0.1:$LIB_HTTPD_PORT/smart/repo" "$LOCAL_PRISTINE" &&
454 cd "$LOCAL_PRISTINE" &&
455 git checkout -b side &&
456 test_commit_bulk --id=s 33 &&
458 # Add novel commits to upstream
465 git -C "$LOCAL_PRISTINE" remote set-url origin "http://127.0.0.1:$LIB_HTTPD_PORT/one_time_perl/repo" &&
466 git -C "$LOCAL_PRISTINE" config protocol.version 2
470 # Simulate that the server initially reports $2 as the ref
471 # corresponding to $1, and after that, $1 as the ref corresponding to
472 # $1. This corresponds to the real-life situation where the server's
473 # repository appears to change during negotiation, for example, when
474 # different servers in a load-balancing arrangement serve (stateless)
475 # RPCs during a single negotiation.
476 oid1
=$
(git
-C "$REPO" rev-parse
$1) &&
477 oid2
=$
(git
-C "$REPO" rev-parse
$2) &&
478 echo "s/$oid1/$oid2/" >"$HTTPD_ROOT_PATH/one-time-perl"
481 test_expect_success
'server is initially ahead - no ref in want' '
482 git -C "$REPO" config uploadpack.allowRefInWant false &&
484 cp -r "$LOCAL_PRISTINE" local &&
485 inconsistency main $(test_oid numeric) &&
486 test_must_fail git -C local fetch 2>err &&
487 test_i18ngrep "fatal: remote error: upload-pack: not our ref" err
490 test_expect_success
'server is initially ahead - ref in want' '
491 git -C "$REPO" config uploadpack.allowRefInWant true &&
493 cp -r "$LOCAL_PRISTINE" local &&
494 inconsistency main $(test_oid numeric) &&
495 git -C local fetch &&
497 git -C "$REPO" rev-parse --verify main >expected &&
498 git -C local rev-parse --verify refs/remotes/origin/main >actual &&
499 test_cmp expected actual
502 test_expect_success
'server is initially behind - no ref in want' '
503 git -C "$REPO" config uploadpack.allowRefInWant false &&
505 cp -r "$LOCAL_PRISTINE" local &&
506 inconsistency main "main^" &&
507 git -C local fetch &&
509 git -C "$REPO" rev-parse --verify "main^" >expected &&
510 git -C local rev-parse --verify refs/remotes/origin/main >actual &&
511 test_cmp expected actual
514 test_expect_success
'server is initially behind - ref in want' '
515 git -C "$REPO" config uploadpack.allowRefInWant true &&
517 cp -r "$LOCAL_PRISTINE" local &&
518 inconsistency main "main^" &&
519 git -C local fetch &&
521 git -C "$REPO" rev-parse --verify "main" >expected &&
522 git -C local rev-parse --verify refs/remotes/origin/main >actual &&
523 test_cmp expected actual
526 test_expect_success
'server loses a ref - ref in want' '
527 git -C "$REPO" config uploadpack.allowRefInWant true &&
529 cp -r "$LOCAL_PRISTINE" local &&
530 echo "s/main/rain/" >"$HTTPD_ROOT_PATH/one-time-perl" &&
531 test_must_fail git -C local fetch 2>err &&
533 test_i18ngrep "fatal: remote error: unknown ref refs/heads/rain" err
536 # DO NOT add non-httpd-specific tests here, because the last part of this
537 # test script is only executed when httpd is available and enabled.