diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-04-07 15:10:37 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-04-08 08:14:32 +0200 |
commit | 741cb81d09db781c975ca263203befd01ccd4840 (patch) | |
tree | aa81bf2da609af521a148b000c0e63c3919b8e72 /tests/data/test1295 | |
parent | 0ef54abf52086e48e7c751747650584d51b9ebaa (diff) |
tests: verify split initial HTTP requests with CURL_SMALLREQSEND
test1294: "split request" being when the entire request isn't sent in
the first go, and the remainder is sent in the PERFORM state. A GET
request is otherwise not sending anything during PERFORM.
test1295: same kind of split but with POST
Closes #5197
Diffstat (limited to 'tests/data/test1295')
-rw-r--r-- | tests/data/test1295 | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/tests/data/test1295 b/tests/data/test1295 new file mode 100644 index 000000000..b929e3c6d --- /dev/null +++ b/tests/data/test1295 @@ -0,0 +1,68 @@ +<testcase> +<info> +<keywords> +HTTP +HTTP POST +</keywords> +</info> + +# +# Server-side +<reply> +<data> +HTTP/1.1 200 OK +Date: Thu, 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> +<features> +debug +</features> +<server> +http +</server> +<name> +HTTP POST with split initial request send +</name> +<setenv> +# The Hound of the Baskervilles +# +# make the first send cut off after this amount of data +CURL_SMALLREQSEND=100 +</setenv> +<command> +http://%HOSTIP:%HTTPPORT/012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679/1295 -H "012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679: 300" -d "Mr. Sherlock Holmes, who was usually very late in the mornings, save upon those not infrequent occasions when he was up all night, was seated at the breakfast table." +</command> +</client> + +# +# Verify data after the test has been "shot" +<verify> +<strip> +^User-Agent:.* +</strip> +<protocol nonewline="yes"> +POST /012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679/1295 HTTP/1.1
+Host: %HOSTIP:%HTTPPORT
+Accept: */*
+012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679012345679: 300
+Content-Length: 165
+Content-Type: application/x-www-form-urlencoded
+
+Mr. Sherlock Holmes, who was usually very late in the mornings, save upon those not infrequent occasions when he was up all night, was seated at the breakfast table. +</protocol> +</verify> +</testcase> |