diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-12-21 20:19:05 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-12-21 20:19:05 +0000 |
commit | 10b5327b19735a81878bc0b4aa181ee35eeaa543 (patch) | |
tree | 47a721d1260ff09dc2867ebdba01376b21bb27a2 /tests/data/test218 | |
parent | 4ba1eb26fa6c4f19e28fd26158c2c6388f70e324 (diff) |
test enforced chunked encoding with PUT on a local file
Diffstat (limited to 'tests/data/test218')
-rw-r--r-- | tests/data/test218 | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/tests/data/test218 b/tests/data/test218 new file mode 100644 index 000000000..73f193a38 --- /dev/null +++ b/tests/data/test218 @@ -0,0 +1,51 @@ +# +# Server-side +<reply> +<data> +HTTP/1.0 200 OK
+Server: test-server/fake
+Content-Type: text/html
+Content-Length: 6
+
+blaha +</data> +</reply> + +# +# Client-side +<client> +<server> +http +</server> + <name> +HTTP PUT from a file but enforce chunked transfer-encoding + </name> + <command> + -T log/file218 -H "Transfer-Encoding: chunked" http://%HOSTIP:%HTTPPORT/218 +</command> +<file name="log/file218"> +just some tiny teeny contents +</file> +</client> + +# +# Verify data after the test has been "shot" +<verify> +<strip> +^User-Agent:.* +</strip> +<protocol> +PUT /218 HTTP/1.1
+Host: 127.0.0.1:%HTTPPORT
+Pragma: no-cache
+Accept: */*
+Transfer-Encoding: chunked
+Expect: 100-continue
+
+1e
+just some tiny teeny contents +
+0
+
+</protocol> +</verify> |