]> granicus.if.org Git - curl/commitdiff
test164 HTTP range with multiple ranges
authorDaniel Stenberg <daniel@haxx.se>
Sat, 24 Apr 2004 09:33:25 +0000 (09:33 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 24 Apr 2004 09:33:25 +0000 (09:33 +0000)
tests/data/Makefile.am
tests/data/test164 [new file with mode: 0644]

index 902d2042d213557eab6814f6a2ac05339a91ebd6..6be0e36eca51334760383f32466846375dfe689a 100644 (file)
@@ -22,7 +22,7 @@ test80 test81 test82 test83 test84 test85 test86 test87 test507               \
 test149 test88 test89 test90 test508 test91 test92 test203 test93      \
 test94 test95 test509 test510 test97 test98 test99 test150 test151     \
 test152 test153 test154 test155 test156 test157 test158 test159 test511 \
-test160 test161 test162 test163
+test160 test161 test162 test163 test164
 
 # The following tests have been removed from the dist since they no longer
 # work. We need to fix the test suite's FTPS server first, then bring them
diff --git a/tests/data/test164 b/tests/data/test164
new file mode 100644 (file)
index 0000000..f944bdb
--- /dev/null
@@ -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\r
+Date: Sat, 24 Apr 2004 09:24:49 GMT\r
+Server: Apache/1.3.29 (Unix) mod_throttle/3.1.2 PHP/4.3.4 mod_fastcgi/2.4.0\r
+Last-Modified: Tue, 23 Mar 2004 08:23:14 GMT\r
+ETag: "53814a-ec5-405ff3f2"\r
+Accept-Ranges: bytes\r
+Content-Length: 187\r
+Content-Type: multipart/byteranges; boundary=408a326132c\r
+\r
+--408a326132c\r
+Content-type: text/html\r
+Content-range: bytes 0-10/3781\r
+\r
+<html>
+<hea
+\r
+--408a326132c\r
+Content-type: text/html\r
+Content-range: bytes 12-15/3781\r
+\r
+>
+<t
+\r
+--408a326132c--\r
+</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\r
+Range: bytes=0-10,12-15\r
+Host: 127.0.0.1:8999\r
+Pragma: no-cache\r
+Accept: */*\r
+\r
+</protocol>
+</verify>