upgrade test suite to 5.3
[m6w6/ext-http] / tests / send_file_005.phpt
1 --TEST--
2 http_send_file() multiple ranges
3 --SKIPIF--
4 <?php
5 include 'skip.inc';
6 checkcgi();
7 checkmin(5.3);
8 ?>
9 --ENV--
10 HTTP_RANGE=bytes=0-3, 4-5,9-11
11 --FILE--
12 <?php
13 http_send_content_type('text/plain');
14 http_send_file('data.txt');
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-3/1010
26
27 0123
28 --%d.%d
29 Content-Type: text/plain
30 Content-Range: bytes 4-5/1010
31
32 45
33 --%d.%d
34 Content-Type: text/plain
35 Content-Range: bytes 9-11/1010
36
37 901
38 --%d.%d--