diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-04-24 09:33:25 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-04-24 09:33:25 +0000 |
commit | b9432d12965742ab13ed0a0f0462a9fa71e7b30d (patch) | |
tree | 6f262935c05ab5923dc3c27cc14f14d3c93aff18 /tests/data/test164 | |
parent | e202a29a9a3b51204ad3c77d553bdddd60898335 (diff) |
test164 HTTP range with multiple ranges
Diffstat (limited to 'tests/data/test164')
-rw-r--r-- | tests/data/test164 | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/tests/data/test164 b/tests/data/test164 new file mode 100644 index 000000000..f944bdb8d --- /dev/null +++ b/tests/data/test164 @@ -0,0 +1,59 @@ +# Server-side +# This particular response is an exact excerpt from an actual Apache +# server when asked for a 0-10,12-15 range. +<reply> +<data> +HTTP/1.1 206 Partial Content swsclose
+Date: Sat, 24 Apr 2004 09:24:49 GMT
+Server: Apache/1.3.29 (Unix) mod_throttle/3.1.2 PHP/4.3.4 mod_fastcgi/2.4.0
+Last-Modified: Tue, 23 Mar 2004 08:23:14 GMT
+ETag: "53814a-ec5-405ff3f2"
+Accept-Ranges: bytes
+Content-Length: 187
+Content-Type: multipart/byteranges; boundary=408a326132c
+
+--408a326132c
+Content-type: text/html
+Content-range: bytes 0-10/3781
+
+<html> +<hea +
+--408a326132c
+Content-type: text/html
+Content-range: bytes 12-15/3781
+
+> +<t +
+--408a326132c--
+</data> +</reply> + +# Client-side +<client> +<server> +http +</server> + <name> +HTTP range with multiple ranges + </name> + <command> +http://%HOSTIP:%HOSTPORT/want/164 -r 0-10,12-15 +</command> +</test> + +# Verify data after the test has been "shot" +<verify> +<strip> +^User-Agent:.* +</strip> +<protocol> +GET /want/164 HTTP/1.1
+Range: bytes=0-10,12-15
+Host: 127.0.0.1:8999
+Pragma: no-cache
+Accept: */*
+
+</protocol> +</verify> |