branch off v1 as R_1_7
[m6w6/ext-http] / tests / send_data_008.phpt
1 --TEST--
2 http_send_data() multiple ranges
3 --SKIPIF--
4 <?php
5 include 'skip.inc';
6 checkcgi();
7 checkmin("5.2.5");
8 ?>
9 --ENV--
10 HTTP_RANGE=bytes=0-0,-1
11 --FILE--
12 <?php
13 http_send_content_type('text/plain');
14 http_send_data("01");
15 ?>
16 --EXPECTF--
17 Status: 206%s
18 X-Powered-By: PHP/%s
19 Accept-Ranges: bytes
20 Content-Type: multipart/byteranges; boundary=%d.%d
21
22
23 --%d.%d
24 Content-Type: text/plain
25 Content-Range: bytes 0-0/2
26
27 0
28 --%d.%d
29 Content-Type: text/plain
30 Content-Range: bytes 1-1/2
31
32 1
33 --%d.%d--