release 1.7.6
[m6w6/ext-http] / tests / send_data_003.phpt
1 --TEST--
2 http_send_data() NUM-NIL range
3 --SKIPIF--
4 <?php
5 include 'skip.inc';
6 checkcgi();
7 checkmin("5.2.5");
8 ?>
9 --ENV--
10 HTTP_RANGE=bytes=5981-
11 --FILE--
12 <?php
13 http_send_content_type('text/plain');
14 http_send_data(str_repeat('123abc', 1000));
15 ?>
16 --EXPECTF--
17 Status: 206%s
18 X-Powered-By: PHP/%s
19 Content-Type: text/plain
20 Accept-Ranges: bytes
21 Content-Range: bytes 5981-5999/6000
22 Content-Length: 19
23
24 c123abc123abc123abc