From: Daniel Stenberg Date: Thu, 13 Oct 2022 12:15:00 +0000 (+0200) Subject: test495: verify URL encoded user name + netrc-optional X-Git-Tag: curl-7_86_0~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c4715b1c92fe12bb2bb77655bff12aa27a25c78b;p=thirdparty%2Fcurl.git test495: verify URL encoded user name + netrc-optional Reproduced issue #9709 --- diff --git a/tests/data/Makefile.inc b/tests/data/Makefile.inc index c313a9b300..722f4a8ec3 100644 --- a/tests/data/Makefile.inc +++ b/tests/data/Makefile.inc @@ -73,7 +73,7 @@ test430 test431 test432 test433 test434 test435 test436 \ \ test440 test441 test442 test443 test444 \ \ -test490 test491 test492 test493 test494 \ +test490 test491 test492 test493 test494 test495 \ \ test500 test501 test502 test503 test504 test505 test506 test507 test508 \ test509 test510 test511 test512 test513 test514 test515 test516 test517 \ diff --git a/tests/data/test495 b/tests/data/test495 new file mode 100644 index 0000000000..deba48ae1c --- /dev/null +++ b/tests/data/test495 @@ -0,0 +1,56 @@ + + + +HTTP +netrc + + + +# +# Server-side + + +HTTP/1.1 200 OK +Date: Tue, 09 Nov 2010 14:49:00 GMT +Server: test-server/fake +Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT +ETag: "21025-dc7-39462498" +Accept-Ranges: bytes +Content-Length: 6 +Connection: close +Content-Type: text/html +Funny-head: yesyes + +-foo- + + + +# +# Client-side + + +http + + +user+password in URL with optional netrc + +# the key is the URL encoded user, which needs to be sent encoded in the +# Authorization: header + +http://foo%40bar:secret@%HOSTIP:%HTTPPORT/%TESTNUMBER --netrc-optional + + + +# +# Verify data after the test has been "shot" + + +GET /%TESTNUMBER HTTP/1.1 +Host: %HOSTIP:%HTTPPORT +Authorization: Basic Zm9vQGJhcjpzZWNyZXQ= +User-Agent: curl/%VERSION +Accept: */* + + + +