diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-05-13 08:55:15 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-05-13 08:55:15 +0200 |
commit | 0c8e6f598a88ad3e02c42642a47026044cd0ceac (patch) | |
tree | 51d95a18061ef7363f776ccc7a53555de2cadb0e /tests/data/test1126 | |
parent | 2ef7a28a71f819343afefa721e5497119fb2cee0 (diff) | |
download | curl-0c8e6f598a88ad3e02c42642a47026044cd0ceac.tar.gz |
tests: added HTTP If-Modified-Since tests
Added test 1126 and 1127 to verify curl's behaviour when If-Modified-Since
is used and a 200 is returned.
The list of test cases in Makefile.am is now sorted numerically.
Diffstat (limited to 'tests/data/test1126')
-rw-r--r-- | tests/data/test1126 | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/tests/data/test1126 b/tests/data/test1126 new file mode 100644 index 000000000..52f4db411 --- /dev/null +++ b/tests/data/test1126 @@ -0,0 +1,52 @@ +<testcase> +<info> +<keywords> +HTTP +HTTP GET +If-Modified-Since +</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 2003 12:10:00 GMT +Content-Length: 11 +Content-Type: text/html + +0123456789 +</data> +</reply> + +# +# Client-side +<client> +<server> +http +</server> + <name> +HTTP 200 If-Modified-Since with newer document + </name> + <command> +http://%HOSTIP:%HTTPPORT/1126 -z "dec 12 12:00:00 1999 GMT" +</command> +</client> + +# +# Verify data after the test has been "shot" +<verify> +<strip> +^User-Agent:.* +</strip> +<protocol> +GET /1126 HTTP/1.1
+Host: %HOSTIP:%HTTPPORT
+Accept: */*
+If-Modified-Since: Sun, 12 Dec 1999 12:00:00 GMT
+
+</protocol> +</verify> +</testcase> |