diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-12-05 16:57:40 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-12-05 22:57:24 +0100 |
commit | 9ea769e15f60f8bebf42bffd708658296a812d6e (patch) | |
tree | eacae87afc0c960d26ea5d6dd83d28ccf035873d /tests/data/test343 | |
parent | bf24e0f9286cf5f24ccfef7f824d1597ffb6ab72 (diff) |
etag: allow both --etag-compare and --etag-save in same cmdline
Fixes #4669
Closes #4678
Diffstat (limited to 'tests/data/test343')
-rw-r--r-- | tests/data/test343 | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/tests/data/test343 b/tests/data/test343 new file mode 100644 index 000000000..e55a181d8 --- /dev/null +++ b/tests/data/test343 @@ -0,0 +1,61 @@ +<testcase> +<info> +<keywords> +HTTP +HTTP GET +</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-11111" +Accept-Ranges: bytes +Content-Length: 0 +Connection: close +Content-Type: text/html +Funny-head: yesyes + +</data> +</reply> + +# +# Client-side +<client> +<server> +http +</server> +<name> +Both --etag-compare and --etag-save to save new Etag +</name> +<file name="log/etag343"> +21025-dc7-39462498 +</file> +<command> +http://%HOSTIP:%HTTPPORT/343 --etag-compare log/etag343 --etag-save log/out343 +</command> +</client> + +# +# Verify data after the test has been "shot" +<verify> +<strip> +^User-Agent:.* +</strip> +<protocol> +GET /343 HTTP/1.1
+Host: %HOSTIP:%HTTPPORT
+Accept: */*
+If-None-Match: "21025-dc7-39462498"
+
+</protocol> +<file name="log/out343"> +21025-dc7-11111 +</file> +</verify> +</testcase> |