]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
test495: verify URL encoded user name + netrc-optional
authorDaniel Stenberg <daniel@haxx.se>
Thu, 13 Oct 2022 12:15:00 +0000 (14:15 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 13 Oct 2022 21:42:07 +0000 (23:42 +0200)
Reproduced issue #9709

tests/data/Makefile.inc
tests/data/test495 [new file with mode: 0644]

index c313a9b3002d984e52febb07ff1337415641a240..722f4a8ec36e04660cdd53362b678a3d23dda253 100644 (file)
@@ -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 (file)
index 0000000..deba48a
--- /dev/null
@@ -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\r
+Host: %HOSTIP:%HTTPPORT\r
+Authorization: Basic Zm9vQGJhcjpzZWNyZXQ=\r
+User-Agent: curl/%VERSION\r
+Accept: */*\r
+\r
+</protocol>
+</verify>
+</testcase>