diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-02-04 23:59:30 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-04-04 17:03:43 +0200 |
commit | d3d27551e716e4899ef8fea7ac416f1d6c654f96 (patch) | |
tree | c033385be4e3792803b2588178e2c7e167f2728e /tests/data/test1428 | |
parent | 20f61cd12c9b7960a9e5489154744af6c7583aac (diff) | |
download | curl-d3d27551e716e4899ef8fea7ac416f1d6c654f96.tar.gz |
test1428: verify --proxy-header
Diffstat (limited to 'tests/data/test1428')
-rw-r--r-- | tests/data/test1428 | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/tests/data/test1428 b/tests/data/test1428 new file mode 100644 index 000000000..f976569ef --- /dev/null +++ b/tests/data/test1428 @@ -0,0 +1,81 @@ +<testcase> +<info> +<keywords> +HTTP +HTTP GET +HTTP CONNECT +HTTP Basic auth +proxytunnel +</keywords> +</info> +# +# Server-side +<reply> +<data> +HTTP/1.1 200 OK +Date: Thu, 09 Nov 2010 14:49:00 GMT +Server: test-server/fake swsclose +Content-Type: text/html +Funny-head: yesyes +Content-Length: 9 + +contents +</data> +<connect> +HTTP/1.1 200 Mighty fine indeed
+
+</connect> +<datacheck> +HTTP/1.1 200 Mighty fine indeed
+
+HTTP/1.1 200 OK +Date: Thu, 09 Nov 2010 14:49:00 GMT +Server: test-server/fake swsclose +Content-Type: text/html +Funny-head: yesyes +Content-Length: 9 + +contents +</datacheck> +</reply> + +# +# Client-side +<client> +<server> +http +http-proxy +</server> + <name> +HTTP over proxy-tunnel with --proxy-header and --header + </name> + <command> +http://test.1428:%HTTPPORT/we/want/that/page/1428 -p -x %HOSTIP:%PROXYPORT --user 'iam:my:;self' --header "header-type: server" --proxy-header "header-type: proxy" +</command> +</client> + +# +# Verify data after the test has been "shot" +<verify> +<strip> +^User-Agent:.* +</strip> +<proxy> +CONNECT test.1428:%HTTPPORT HTTP/1.1
+User-Agent: curl/7.10.7-pre2 (i686-pc-linux-gnu) libcurl/7.10.7-pre2 OpenSSL/0.9.7a zlib/1.1.3
+Host: test.1428:%HTTPPORT
+Proxy-Connection: Keep-Alive
+header-type: proxy
+
+</proxy> +<protocol> +GET /we/want/that/page/1428 HTTP/1.1
+Authorization: Basic aWFtOm15OjtzZWxm
+User-Agent: curl/7.10.7-pre2 (i686-pc-linux-gnu) libcurl/7.10.7-pre2 OpenSSL/0.9.7a zlib/1.1.3
+Host: test.1428:%HTTPPORT
+Accept: */*
+header-type: server
+
+</protocol> +</verify> +</testcase> |