]> git.ipfire.org Git - thirdparty/git.git/blob - t/t5551-http-fetch-smart.sh
t5563: prevent "ambiguous redirect"
[thirdparty/git.git] / t / t5551-http-fetch-smart.sh
1 #!/bin/sh
2
3 : ${HTTP_PROTO:=HTTP}
4 test_description="test smart fetching over http via http-backend ($HTTP_PROTO)"
5 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
6 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7
8 . ./test-lib.sh
9 . "$TEST_DIRECTORY"/lib-httpd.sh
10 test "$HTTP_PROTO" = "HTTP/2" && enable_http2
11 start_httpd
12
13 test_expect_success HTTP2 'enable client-side http/2' '
14 git config --global http.version HTTP/2
15 '
16
17 test_expect_success 'setup repository' '
18 git config push.default matching &&
19 echo content >file &&
20 git add file &&
21 git commit -m one
22 '
23
24 test_expect_success 'create http-accessible bare repository' '
25 mkdir "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
26 (cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
27 git --bare init
28 ) &&
29 git remote add public "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
30 git push public main:main
31 '
32
33 setup_askpass_helper
34
35 test_expect_success 'clone http repository' '
36 cat >exp <<-\EOF &&
37 > GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1
38 > Accept: */*
39 > Accept-Encoding: ENCODINGS
40 > Accept-Language: ko-KR, *;q=0.9
41 > Pragma: no-cache
42 < HTTP/1.1 200 OK
43 < Pragma: no-cache
44 < Cache-Control: no-cache, max-age=0, must-revalidate
45 < Content-Type: application/x-git-upload-pack-advertisement
46 > POST /smart/repo.git/git-upload-pack HTTP/1.1
47 > Accept-Encoding: ENCODINGS
48 > Content-Type: application/x-git-upload-pack-request
49 > Accept: application/x-git-upload-pack-result
50 > Accept-Language: ko-KR, *;q=0.9
51 > Content-Length: xxx
52 < HTTP/1.1 200 OK
53 < Pragma: no-cache
54 < Cache-Control: no-cache, max-age=0, must-revalidate
55 < Content-Type: application/x-git-upload-pack-result
56 EOF
57
58 GIT_TRACE_CURL=true GIT_TEST_PROTOCOL_VERSION=0 LANGUAGE="ko_KR.UTF-8" \
59 git clone --quiet $HTTPD_URL/smart/repo.git clone 2>err &&
60 test_cmp file clone/file &&
61 tr '\''\015'\'' Q <err |
62 sed -e "
63 s/Q\$//
64 /^[*] /d
65 /^== Info:/d
66 /^=> Send header, /d
67 /^=> Send header:$/d
68 /^<= Recv header, /d
69 /^<= Recv header:$/d
70 s/=> Send header: //
71 s/= Recv header://
72 /^<= Recv data/d
73 /^=> Send data/d
74 /^$/d
75 /^< $/d
76
77 /^[^><]/{
78 s/^/> /
79 }
80
81 /^> User-Agent: /d
82 /^> Host: /d
83 /^> POST /,$ {
84 /^> Accept: [*]\\/[*]/d
85 }
86 s/^> Content-Length: .*/> Content-Length: xxx/
87 /^> 00..want /d
88 /^> 00.*done/d
89
90 /^< Server: /d
91 /^< Expires: /d
92 /^< Date: /d
93 /^< Content-Length: /d
94 /^< Transfer-Encoding: /d
95 " >actual &&
96
97 # NEEDSWORK: If the overspecification of the expected result is reduced, we
98 # might be able to run this test in all protocol versions.
99 if test "$GIT_TEST_PROTOCOL_VERSION" = 0
100 then
101 sed -e "s/^> Accept-Encoding: .*/> Accept-Encoding: ENCODINGS/" \
102 actual >actual.smudged &&
103 test_cmp exp actual.smudged &&
104
105 grep "Accept-Encoding:.*gzip" actual >actual.gzip &&
106 test_line_count = 2 actual.gzip &&
107
108 grep "Accept-Language: ko-KR, *" actual >actual.language &&
109 test_line_count = 2 actual.language
110 fi
111 '
112
113 test_expect_success 'fetch changes via http' '
114 echo content >>file &&
115 git commit -a -m two &&
116 git push public &&
117 (cd clone && git pull) &&
118 test_cmp file clone/file
119 '
120
121 test_expect_success 'used upload-pack service' '
122 cat >exp <<-\EOF &&
123 GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
124 POST /smart/repo.git/git-upload-pack HTTP/1.1 200
125 GET /smart/repo.git/info/refs?service=git-upload-pack HTTP/1.1 200
126 POST /smart/repo.git/git-upload-pack HTTP/1.1 200
127 EOF
128
129 # NEEDSWORK: If the overspecification of the expected result is reduced, we
130 # might be able to run this test in all protocol versions.
131 if test "$GIT_TEST_PROTOCOL_VERSION" = 0
132 then
133 check_access_log exp
134 fi
135 '
136
137 test_expect_success 'follow redirects (301)' '
138 git clone $HTTPD_URL/smart-redir-perm/repo.git --quiet repo-p
139 '
140
141 test_expect_success 'follow redirects (302)' '
142 git clone $HTTPD_URL/smart-redir-temp/repo.git --quiet repo-t
143 '
144
145 test_expect_success 'redirects re-root further requests' '
146 git clone $HTTPD_URL/smart-redir-limited/repo.git repo-redir-limited
147 '
148
149 test_expect_success 're-rooting dies on insane schemes' '
150 test_must_fail git clone $HTTPD_URL/insane-redir/repo.git insane
151 '
152
153 test_expect_success 'clone from password-protected repository' '
154 echo two >expect &&
155 set_askpass user@host pass@host &&
156 git clone --bare "$HTTPD_URL/auth/smart/repo.git" smart-auth &&
157 expect_askpass both user@host &&
158 git --git-dir=smart-auth log -1 --format=%s >actual &&
159 test_cmp expect actual
160 '
161
162 test_expect_success 'clone from auth-only-for-push repository' '
163 echo two >expect &&
164 set_askpass wrong &&
165 git clone --bare "$HTTPD_URL/auth-push/smart/repo.git" smart-noauth &&
166 expect_askpass none &&
167 git --git-dir=smart-noauth log -1 --format=%s >actual &&
168 test_cmp expect actual
169 '
170
171 test_expect_success 'clone from auth-only-for-objects repository' '
172 echo two >expect &&
173 set_askpass user@host pass@host &&
174 git clone --bare "$HTTPD_URL/auth-fetch/smart/repo.git" half-auth &&
175 expect_askpass both user@host &&
176 git --git-dir=half-auth log -1 --format=%s >actual &&
177 test_cmp expect actual
178 '
179
180 test_expect_success 'no-op half-auth fetch does not require a password' '
181 set_askpass wrong &&
182
183 # NEEDSWORK: When using HTTP(S), protocol v0 supports a "half-auth"
184 # configuration with authentication required only when downloading
185 # objects and not refs, by having the HTTP server only require
186 # authentication for the "git-upload-pack" path and not "info/refs".
187 # This is not possible with protocol v2, since both objects and refs
188 # are obtained from the "git-upload-pack" path. A solution to this is
189 # to teach the server and client to be able to inline ls-refs requests
190 # as an Extra Parameter (see "git help gitformat-pack-protocol"), so that
191 # "info/refs" can serve refs, just like it does in protocol v0.
192 GIT_TEST_PROTOCOL_VERSION=0 git --git-dir=half-auth fetch &&
193 expect_askpass none
194 '
195
196 test_expect_success 'redirects send auth to new location' '
197 set_askpass user@host pass@host &&
198 git -c credential.useHttpPath=true \
199 clone $HTTPD_URL/smart-redir-auth/repo.git repo-redir-auth &&
200 expect_askpass both user@host auth/smart/repo.git
201 '
202
203 test_expect_success 'GIT_TRACE_CURL redacts auth details' '
204 rm -rf redact-auth trace &&
205 set_askpass user@host pass@host &&
206 GIT_TRACE_CURL="$(pwd)/trace" git clone --bare "$HTTPD_URL/auth/smart/repo.git" redact-auth &&
207 expect_askpass both user@host &&
208
209 # Ensure that there is no "Basic" followed by a base64 string, but that
210 # the auth details are redacted
211 ! grep -i "Authorization: Basic [0-9a-zA-Z+/]" trace &&
212 grep -i "Authorization: Basic <redacted>" trace
213 '
214
215 test_expect_success 'GIT_CURL_VERBOSE redacts auth details' '
216 rm -rf redact-auth trace &&
217 set_askpass user@host pass@host &&
218 GIT_CURL_VERBOSE=1 git clone --bare "$HTTPD_URL/auth/smart/repo.git" redact-auth 2>trace &&
219 expect_askpass both user@host &&
220
221 # Ensure that there is no "Basic" followed by a base64 string, but that
222 # the auth details are redacted
223 ! grep -i "Authorization: Basic [0-9a-zA-Z+/]" trace &&
224 grep -i "Authorization: Basic <redacted>" trace
225 '
226
227 test_expect_success 'GIT_TRACE_CURL does not redact auth details if GIT_TRACE_REDACT=0' '
228 rm -rf redact-auth trace &&
229 set_askpass user@host pass@host &&
230 GIT_TRACE_REDACT=0 GIT_TRACE_CURL="$(pwd)/trace" \
231 git clone --bare "$HTTPD_URL/auth/smart/repo.git" redact-auth &&
232 expect_askpass both user@host &&
233
234 grep -i "Authorization: Basic [0-9a-zA-Z+/]" trace
235 '
236
237 test_expect_success 'disable dumb http on server' '
238 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/repo.git" \
239 config http.getanyfile false
240 '
241
242 test_expect_success 'GIT_SMART_HTTP can disable smart http' '
243 (GIT_SMART_HTTP=0 &&
244 export GIT_SMART_HTTP &&
245 cd clone &&
246 test_must_fail git fetch)
247 '
248
249 test_expect_success 'invalid Content-Type rejected' '
250 test_must_fail git clone $HTTPD_URL/broken_smart/repo.git 2>actual &&
251 test_i18ngrep "not valid:" actual
252 '
253
254 test_expect_success 'create namespaced refs' '
255 test_commit namespaced &&
256 git push public HEAD:refs/namespaces/ns/refs/heads/main &&
257 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/repo.git" \
258 symbolic-ref refs/namespaces/ns/HEAD refs/namespaces/ns/refs/heads/main
259 '
260
261 test_expect_success 'smart clone respects namespace' '
262 git clone "$HTTPD_URL/smart_namespace/repo.git" ns-smart &&
263 echo namespaced >expect &&
264 git --git-dir=ns-smart/.git log -1 --format=%s >actual &&
265 test_cmp expect actual
266 '
267
268 test_expect_success 'dumb clone via http-backend respects namespace' '
269 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/repo.git" \
270 config http.getanyfile true &&
271 GIT_SMART_HTTP=0 git clone \
272 "$HTTPD_URL/smart_namespace/repo.git" ns-dumb &&
273 echo namespaced >expect &&
274 git --git-dir=ns-dumb/.git log -1 --format=%s >actual &&
275 test_cmp expect actual
276 '
277
278 test_expect_success 'cookies stored in http.cookiefile when http.savecookies set' '
279 cat >cookies.txt <<-\EOF &&
280 127.0.0.1 FALSE /smart_cookies/ FALSE 0 othername othervalue
281 EOF
282 sort >expect_cookies.txt <<-\EOF &&
283
284 127.0.0.1 FALSE /smart_cookies/ FALSE 0 othername othervalue
285 127.0.0.1 FALSE /smart_cookies/repo.git/info/ FALSE 0 name value
286 EOF
287 git config http.cookiefile cookies.txt &&
288 git config http.savecookies true &&
289 git ls-remote $HTTPD_URL/smart_cookies/repo.git main &&
290
291 # NEEDSWORK: If the overspecification of the expected result is reduced, we
292 # might be able to run this test in all protocol versions.
293 if test "$GIT_TEST_PROTOCOL_VERSION" = 0
294 then
295 tail -3 cookies.txt | sort >cookies_tail.txt &&
296 test_cmp expect_cookies.txt cookies_tail.txt
297 fi
298 '
299
300 test_expect_success 'transfer.hiderefs works over smart-http' '
301 test_commit hidden &&
302 test_commit visible &&
303 git push public HEAD^:refs/heads/a HEAD:refs/heads/b &&
304 git --git-dir="$HTTPD_DOCUMENT_ROOT_PATH/repo.git" \
305 config transfer.hiderefs refs/heads/a &&
306 git clone --bare "$HTTPD_URL/smart/repo.git" hidden.git &&
307 test_must_fail git -C hidden.git rev-parse --verify a &&
308 git -C hidden.git rev-parse --verify b
309 '
310
311 # create an arbitrary number of tags, numbered from tag-$1 to tag-$2
312 create_tags () {
313 rm -f marks &&
314 for i in $(test_seq "$1" "$2")
315 do
316 # don't use here-doc, because it requires a process
317 # per loop iteration
318 echo "commit refs/heads/too-many-refs-$1" &&
319 echo "mark :$i" &&
320 echo "committer git <git@example.com> $i +0000" &&
321 echo "data 0" &&
322 echo "M 644 inline bla.txt" &&
323 echo "data 4" &&
324 echo "bla" &&
325 # make every commit dangling by always
326 # rewinding the branch after each commit
327 echo "reset refs/heads/too-many-refs-$1" &&
328 echo "from :$1"
329 done | git fast-import --export-marks=marks &&
330
331 # now assign tags to all the dangling commits we created above
332 tag=$(perl -e "print \"bla\" x 30") &&
333 sed -e "s|^:\([^ ]*\) \(.*\)$|\2 refs/tags/$tag-\1|" <marks >>packed-refs
334 }
335
336 test_expect_success 'create 2,000 tags in the repo' '
337 (
338 cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
339 create_tags 1 2000
340 )
341 '
342
343 test_expect_success CMDLINE_LIMIT \
344 'clone the 2,000 tag repo to check OS command line overflow' '
345 run_with_limited_cmdline git clone $HTTPD_URL/smart/repo.git too-many-refs &&
346 (
347 cd too-many-refs &&
348 git for-each-ref refs/tags >actual &&
349 test_line_count = 2000 actual
350 )
351 '
352
353 test_expect_success 'large fetch-pack requests can be sent using chunked encoding' '
354 GIT_TRACE_CURL=true git -c http.postbuffer=65536 \
355 clone --bare "$HTTPD_URL/smart/repo.git" split.git 2>err &&
356 {
357 test_have_prereq HTTP2 ||
358 grep "^=> Send header: Transfer-Encoding: chunked" err
359 }
360 '
361
362 test_expect_success 'test allowreachablesha1inwant' '
363 test_when_finished "rm -rf test_reachable.git" &&
364 server="$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
365 main_sha=$(git -C "$server" rev-parse refs/heads/main) &&
366 git -C "$server" config uploadpack.allowreachablesha1inwant 1 &&
367
368 git init --bare test_reachable.git &&
369 git -C test_reachable.git remote add origin "$HTTPD_URL/smart/repo.git" &&
370 git -C test_reachable.git fetch origin "$main_sha"
371 '
372
373 test_expect_success 'test allowreachablesha1inwant with unreachable' '
374 test_when_finished "rm -rf test_reachable.git; git reset --hard $(git rev-parse HEAD)" &&
375
376 #create unreachable sha
377 echo content >file2 &&
378 git add file2 &&
379 git commit -m two &&
380 git push public HEAD:refs/heads/doomed &&
381 git push public :refs/heads/doomed &&
382
383 server="$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
384 main_sha=$(git -C "$server" rev-parse refs/heads/main) &&
385 git -C "$server" config uploadpack.allowreachablesha1inwant 1 &&
386
387 git init --bare test_reachable.git &&
388 git -C test_reachable.git remote add origin "$HTTPD_URL/smart/repo.git" &&
389 # Some protocol versions (e.g. 2) support fetching
390 # unadvertised objects, so restrict this test to v0.
391 test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 \
392 git -C test_reachable.git fetch origin "$(git rev-parse HEAD)"
393 '
394
395 test_expect_success 'test allowanysha1inwant with unreachable' '
396 test_when_finished "rm -rf test_reachable.git; git reset --hard $(git rev-parse HEAD)" &&
397
398 #create unreachable sha
399 echo content >file2 &&
400 git add file2 &&
401 git commit -m two &&
402 git push public HEAD:refs/heads/doomed &&
403 git push public :refs/heads/doomed &&
404
405 server="$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
406 main_sha=$(git -C "$server" rev-parse refs/heads/main) &&
407 git -C "$server" config uploadpack.allowreachablesha1inwant 1 &&
408
409 git init --bare test_reachable.git &&
410 git -C test_reachable.git remote add origin "$HTTPD_URL/smart/repo.git" &&
411 # Some protocol versions (e.g. 2) support fetching
412 # unadvertised objects, so restrict this test to v0.
413 test_must_fail env GIT_TEST_PROTOCOL_VERSION=0 \
414 git -C test_reachable.git fetch origin "$(git rev-parse HEAD)" &&
415
416 git -C "$server" config uploadpack.allowanysha1inwant 1 &&
417 git -C test_reachable.git fetch origin "$(git rev-parse HEAD)"
418 '
419
420 test_expect_success EXPENSIVE 'http can handle enormous ref negotiation' '
421 (
422 cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
423 create_tags 2001 50000
424 ) &&
425 git -C too-many-refs fetch -q --tags &&
426 (
427 cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
428 create_tags 50001 100000
429 ) &&
430 git -C too-many-refs fetch -q --tags &&
431 git -C too-many-refs for-each-ref refs/tags >tags &&
432 test_line_count = 100000 tags
433 '
434
435 test_expect_success 'custom http headers' '
436 test_must_fail git -c http.extraheader="x-magic-two: cadabra" \
437 fetch "$HTTPD_URL/smart_headers/repo.git" &&
438 git -c http.extraheader="x-magic-one: abra" \
439 -c http.extraheader="x-magic-two: cadabra" \
440 fetch "$HTTPD_URL/smart_headers/repo.git" &&
441 git update-index --add --cacheinfo 160000,$(git rev-parse HEAD),sub &&
442 git config -f .gitmodules submodule.sub.path sub &&
443 git config -f .gitmodules submodule.sub.url \
444 "$HTTPD_URL/smart_headers/repo.git" &&
445 git submodule init sub &&
446 test_must_fail git submodule update sub &&
447 git -c http.extraheader="x-magic-one: abra" \
448 -c http.extraheader="x-magic-two: cadabra" \
449 submodule update sub
450 '
451
452 test_expect_success 'using fetch command in remote-curl updates refs' '
453 SERVER="$HTTPD_DOCUMENT_ROOT_PATH/twobranch" &&
454 rm -rf "$SERVER" client &&
455
456 git init "$SERVER" &&
457 test_commit -C "$SERVER" foo &&
458 git -C "$SERVER" update-ref refs/heads/anotherbranch foo &&
459
460 git clone $HTTPD_URL/smart/twobranch client &&
461
462 test_commit -C "$SERVER" bar &&
463 git -C client -c protocol.version=0 fetch &&
464
465 git -C "$SERVER" rev-parse main >expect &&
466 git -C client rev-parse origin/main >actual &&
467 test_cmp expect actual
468 '
469
470 test_expect_success 'fetch by SHA-1 without tag following' '
471 SERVER="$HTTPD_DOCUMENT_ROOT_PATH/server" &&
472 rm -rf "$SERVER" client &&
473
474 git init "$SERVER" &&
475 test_commit -C "$SERVER" foo &&
476
477 git clone $HTTPD_URL/smart/server client &&
478
479 test_commit -C "$SERVER" bar &&
480 git -C "$SERVER" rev-parse bar >bar_hash &&
481 git -C client -c protocol.version=0 fetch \
482 --no-tags origin $(cat bar_hash)
483 '
484
485 test_expect_success 'cookies are redacted by default' '
486 rm -rf clone &&
487 echo "Set-Cookie: Foo=1" >cookies &&
488 echo "Set-Cookie: Bar=2" >>cookies &&
489 GIT_TRACE_CURL=true \
490 git -c "http.cookieFile=$(pwd)/cookies" clone \
491 $HTTPD_URL/smart/repo.git clone 2>err &&
492 grep -i "Cookie:.*Foo=<redacted>" err &&
493 grep -i "Cookie:.*Bar=<redacted>" err &&
494 ! grep -i "Cookie:.*Foo=1" err &&
495 ! grep -i "Cookie:.*Bar=2" err
496 '
497
498 test_expect_success 'empty values of cookies are also redacted' '
499 rm -rf clone &&
500 echo "Set-Cookie: Foo=" >cookies &&
501 GIT_TRACE_CURL=true \
502 git -c "http.cookieFile=$(pwd)/cookies" clone \
503 $HTTPD_URL/smart/repo.git clone 2>err &&
504 grep -i "Cookie:.*Foo=<redacted>" err
505 '
506
507 test_expect_success 'GIT_TRACE_REDACT=0 disables cookie redaction' '
508 rm -rf clone &&
509 echo "Set-Cookie: Foo=1" >cookies &&
510 echo "Set-Cookie: Bar=2" >>cookies &&
511 GIT_TRACE_REDACT=0 GIT_TRACE_CURL=true \
512 git -c "http.cookieFile=$(pwd)/cookies" clone \
513 $HTTPD_URL/smart/repo.git clone 2>err &&
514 grep -i "Cookie:.*Foo=1" err &&
515 grep -i "Cookie:.*Bar=2" err
516 '
517
518 test_expect_success 'GIT_TRACE_CURL_NO_DATA prevents data from being traced' '
519 rm -rf clone &&
520 GIT_TRACE_CURL=true \
521 git clone $HTTPD_URL/smart/repo.git clone 2>err &&
522 grep "=> Send data" err &&
523
524 rm -rf clone &&
525 GIT_TRACE_CURL=true GIT_TRACE_CURL_NO_DATA=1 \
526 git clone $HTTPD_URL/smart/repo.git clone 2>err &&
527 ! grep "=> Send data" err
528 '
529
530 test_expect_success 'server-side error detected' '
531 test_must_fail git clone $HTTPD_URL/error_smart/repo.git 2>actual &&
532 test_i18ngrep "server-side error" actual
533 '
534
535 test_expect_success 'http auth remembers successful credentials' '
536 rm -f .git-credentials &&
537 test_config credential.helper store &&
538
539 # the first request prompts the user...
540 set_askpass user@host pass@host &&
541 git ls-remote "$HTTPD_URL/auth/smart/repo.git" >/dev/null &&
542 expect_askpass both user@host &&
543
544 # ...and the second one uses the stored value rather than
545 # prompting the user.
546 set_askpass bogus-user bogus-pass &&
547 git ls-remote "$HTTPD_URL/auth/smart/repo.git" >/dev/null &&
548 expect_askpass none
549 '
550
551 test_expect_success 'http auth forgets bogus credentials' '
552 # seed credential store with bogus values. In real life,
553 # this would probably come from a password which worked
554 # for a previous request.
555 rm -f .git-credentials &&
556 test_config credential.helper store &&
557 {
558 echo "url=$HTTPD_URL" &&
559 echo "username=bogus" &&
560 echo "password=bogus"
561 } | git credential approve &&
562
563 # we expect this to use the bogus values and fail, never even
564 # prompting the user...
565 set_askpass user@host pass@host &&
566 test_must_fail git ls-remote "$HTTPD_URL/auth/smart/repo.git" >/dev/null &&
567 expect_askpass none &&
568
569 # ...but now we should have forgotten the bad value, causing
570 # us to prompt the user again.
571 set_askpass user@host pass@host &&
572 git ls-remote "$HTTPD_URL/auth/smart/repo.git" >/dev/null &&
573 expect_askpass both user@host
574 '
575
576 test_expect_success 'client falls back from v2 to v0 to match server' '
577 GIT_TRACE_PACKET=$PWD/trace \
578 GIT_TEST_PROTOCOL_VERSION=2 \
579 git clone $HTTPD_URL/smart_v0/repo.git repo-v0 &&
580 # check for v0; there the HEAD symref is communicated in the capability
581 # line; v2 uses a different syntax on each ref advertisement line
582 grep symref=HEAD:refs/heads/ trace
583 '
584
585 test_expect_success 'passing hostname resolution information works' '
586 BOGUS_HOST=gitbogusexamplehost.invalid &&
587 BOGUS_HTTPD_URL=$HTTPD_PROTO://$BOGUS_HOST:$LIB_HTTPD_PORT &&
588 test_must_fail git ls-remote "$BOGUS_HTTPD_URL/smart/repo.git" >/dev/null &&
589 git -c "http.curloptResolve=$BOGUS_HOST:$LIB_HTTPD_PORT:127.0.0.1" ls-remote "$BOGUS_HTTPD_URL/smart/repo.git" >/dev/null
590 '
591
592 # here user%40host is the URL-encoded version of user@host,
593 # which is our intentionally-odd username to catch parsing errors
594 url_user=$HTTPD_URL_USER/auth/smart/repo.git
595 url_userpass=$HTTPD_URL_USER_PASS/auth/smart/repo.git
596 url_userblank=$HTTPD_PROTO://user%40host:@$HTTPD_DEST/auth/smart/repo.git
597 message="URL .*:<redacted>@.* uses plaintext credentials"
598
599 test_expect_success 'clone warns or fails when using username:password' '
600 test_when_finished "rm -rf attempt*" &&
601
602 git -c transfer.credentialsInUrl=allow \
603 clone $url_userpass attempt1 2>err &&
604 ! grep "$message" err &&
605
606 git -c transfer.credentialsInUrl=warn \
607 clone $url_userpass attempt2 2>err &&
608 grep "warning: $message" err >warnings &&
609 test_line_count -ge 1 warnings &&
610
611 test_must_fail git -c transfer.credentialsInUrl=die \
612 clone $url_userpass attempt3 2>err &&
613 grep "fatal: $message" err >warnings &&
614 test_line_count -ge 1 warnings &&
615
616 test_must_fail git -c transfer.credentialsInUrl=die \
617 clone $url_userblank attempt4 2>err &&
618 grep "fatal: $message" err >warnings &&
619 test_line_count -ge 1 warnings
620 '
621
622 test_expect_success 'clone does not detect username:password when it is https://username@domain:port/' '
623 test_when_finished "rm -rf attempt1" &&
624
625 # we are relying on lib-httpd for url construction, so document our
626 # assumptions
627 case "$HTTPD_URL_USER" in
628 *:[0-9]*) : ok ;;
629 *) BUG "httpd url does not have port: $HTTPD_URL_USER"
630 esac &&
631
632 git -c transfer.credentialsInUrl=warn clone $url_user attempt1 2>err &&
633 ! grep "uses plaintext credentials" err
634 '
635
636 test_expect_success 'fetch warns or fails when using username:password' '
637 git -c transfer.credentialsInUrl=allow fetch $url_userpass 2>err &&
638 ! grep "$message" err &&
639
640 git -c transfer.credentialsInUrl=warn fetch $url_userpass 2>err &&
641 grep "warning: $message" err >warnings &&
642 test_line_count -ge 1 warnings &&
643
644 test_must_fail git -c transfer.credentialsInUrl=die \
645 fetch $url_userpass 2>err &&
646 grep "fatal: $message" err >warnings &&
647 test_line_count -ge 1 warnings &&
648
649 test_must_fail git -c transfer.credentialsInUrl=die \
650 fetch $url_userblank 2>err &&
651 grep "fatal: $message" err >warnings &&
652 test_line_count -ge 1 warnings
653 '
654
655
656 test_expect_success 'push warns or fails when using username:password' '
657 git -c transfer.credentialsInUrl=allow push $url_userpass 2>err &&
658 ! grep "$message" err &&
659
660 git -c transfer.credentialsInUrl=warn push $url_userpass 2>err &&
661 grep "warning: $message" err >warnings &&
662
663 test_must_fail git -c transfer.credentialsInUrl=die \
664 push $url_userpass 2>err &&
665 grep "fatal: $message" err >warnings &&
666 test_line_count -ge 1 warnings
667 '
668
669 test_done