Skip to content

Commit

Permalink
test495: verify URL encoded user name + netrc-optional
Browse files Browse the repository at this point in the history
Reproduced issue #9709
  • Loading branch information
bagder committed Oct 13, 2022
1 parent a2aa980 commit c4715b1
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/data/Makefile.inc
Expand Up @@ -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 \
Expand Down
56 changes: 56 additions & 0 deletions tests/data/test495
@@ -0,0 +1,56 @@
<testcase>
<info>
<keywords>
HTTP
netrc
</keywords>
</info>

#
# Server-side
<reply>
<data>
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-
</data>
</reply>

#
# Client-side
<client>
<server>
http
</server>
<name>
user+password in URL with optional netrc
</name>
# the key is the URL encoded user, which needs to be sent encoded in the
# Authorization: header
<command>
http://foo%40bar:secret@%HOSTIP:%HTTPPORT/%TESTNUMBER --netrc-optional
</command>
</client>

#
# Verify data after the test has been "shot"
<verify>
<protocol>
GET /%TESTNUMBER HTTP/1.1
Host: %HOSTIP:%HTTPPORT
Authorization: Basic Zm9vQGJhcjpzZWNyZXQ=
User-Agent: curl/%VERSION
Accept: */*

</protocol>
</verify>
</testcase>

0 comments on commit c4715b1

Please sign in to comment.