diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2008-09-06 18:24:04 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2008-09-06 18:24:04 +0000 |
commit | c3d871aef46a07eb08b5bf580e24135d1a150425 (patch) | |
tree | 233dc7f99a7788cf1c3b5ba0954a1272c0892abf /tests/data/test1078 | |
parent | 59e378f48fed849e8e41f0bc6a10bf7a1732ae8a (diff) | |
download | curl-c3d871aef46a07eb08b5bf580e24135d1a150425.tar.gz |
Added HTTP 1.0 downgrade tests with proxies
Diffstat (limited to 'tests/data/test1078')
-rw-r--r-- | tests/data/test1078 | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/tests/data/test1078 b/tests/data/test1078 new file mode 100644 index 000000000..32e0857cd --- /dev/null +++ b/tests/data/test1078 @@ -0,0 +1,85 @@ +<testcase> +<info> +<keywords> +HTTP +HTTP/1.0 +HTTP GET +HTTP CONNECT +proxytunnel +</keywords> +</info> + +# +# Server-side +<reply> +<data nocheck="1"> +HTTP/1.0 200 OK
+Date: Thu, 09 Nov 2010 14:49:00 GMT
+Server: test-server/fake
+Content-Type: text/html
+Funny-head: yesyes
+Content-Length: 9
+Connection: keep-alive
+
+contents +</data> +</reply> + +# +# Client-side +<client> +<server> +http +</server> + <name> +HTTP CONNECT with proxytunnel and downgrade to HTTP/1.0 + </name> + <command> +-x %HOSTIP:%HTTPPORT -p http://%HOSTIP:%HTTPPORT/we/want/that/page/1078 http://%HOSTIP:%HTTPPORT/we/want/that/page/1078 +</command> +</client> + +# +# Verify data after the test has been "shot" +<verify> +<strip> +^User-Agent:.* +</strip> +<protocol> +CONNECT %HOSTIP:%HTTPPORT HTTP/1.0
+Host: %HOSTIP:%HTTPPORT
+Proxy-Connection: Keep-Alive
+
+GET /we/want/that/page/1078 HTTP/1.1
+Host: %HOSTIP:%HTTPPORT
+Accept: */*
+
+GET /we/want/that/page/1078 HTTP/1.0
+Host: %HOSTIP:%HTTPPORT
+Accept: */*
+
+</protocol> +<stdout> +HTTP/1.1 200 Mighty fine indeed
+
+HTTP/1.0 200 OK
+Date: Thu, 09 Nov 2010 14:49:00 GMT
+Server: test-server/fake
+Content-Type: text/html
+Funny-head: yesyes
+Content-Length: 9
+Connection: keep-alive
+
+contents +HTTP/1.0 200 OK
+Date: Thu, 09 Nov 2010 14:49:00 GMT
+Server: test-server/fake
+Content-Type: text/html
+Funny-head: yesyes
+Content-Length: 9
+Connection: keep-alive
+
+contents +</stdout> +</verify> +</testcase> |