diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-07-11 23:50:19 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-07-12 00:08:37 +0200 |
commit | 1dcf4418ba7a0a482c947918645388be2621758a (patch) | |
tree | 04910777e3ea6a6ba8de29c6a8fdbda2cd768363 /tests/data/test48 | |
parent | 685366006ccff2b4817d2b3b806e62ebdae90a60 (diff) |
test48: verify that HEAD doesn't close extra
Two commits ago, we fixed a bug where the connction would be closed
prematurely after a HEAD. Now I added connection-monitor to test 48 and
added a second HEAD and make sure that both are sent over the same
connection.
This triggered a failure before the bug fix and now works. Will help us
avoid a future regression of this kind.
Diffstat (limited to 'tests/data/test48')
-rw-r--r-- | tests/data/test48 | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/data/test48 b/tests/data/test48 index e092b41e3..7ee05ad37 100644 --- a/tests/data/test48 +++ b/tests/data/test48 @@ -9,10 +9,12 @@ HTTP HEAD # # Server-side <reply> +<servercmd> +connection-monitor +</servercmd> <data> HTTP/1.1 200 OK Date: Thu, 09 Nov 2010 14:49:00 GMT -Connection: close </data> </reply> @@ -27,7 +29,7 @@ http HTTP with -d and -G and -I </name> <command> --d "foo=moo&moo=poo" http://%HOSTIP:%HTTPPORT/48 -G -I +-d "foo=moo&moo=poo" http://%HOSTIP:%HTTPPORT/48 -G -I http://%HOSTIP:%HTTPPORT/48 </command> </client> @@ -42,6 +44,11 @@ HEAD /48?foo=moo&moo=poo HTTP/1.1 Host: %HOSTIP:%HTTPPORT
Accept: */*
+HEAD /48?foo=moo&moo=poo HTTP/1.1
+Host: %HOSTIP:%HTTPPORT
+Accept: */*
+
+[DISCONNECT] </protocol> </verify> </testcase> |