- improve response performance
[m6w6/ext-http] / tests / HttpResponse_004.phpt
index ed198d638311ca43f55705b40605ca653a8612f5..ffe26c90671411f4d53d9864ab1644a28a6d7fd4 100644 (file)
@@ -3,24 +3,26 @@ HttpResponse - send cached gzipped data
 --SKIPIF--
 <?php 
 include 'skip.inc';
-checkver(5);
 checkcgi();
-checkext('zlib');
+checkmin(5.1);
+skipif(!http_support(HTTP_SUPPORT_ENCODINGS), "need zlib support");
 ?>
 --ENV--
+HTTP_IF_NONE_MATCH="900150983cd24fb0d6963f7d28e17f72"
 HTTP_ACCEPT_ENCODING=gzip
-HTTP_IF_NONE_MATCH="80b285463881575891e86ba7bfecb4d0"
 --FILE--
 <?php
 HttpResponse::setGzip(true);
 HttpResponse::setCache(true);
 HttpResponse::setCacheControl('public', 3600);
-HttpResponse::setData(file_get_contents(__FILE__));
+HttpResponse::setData("abc");
 HttpResponse::send();
 ?>
 --EXPECTF--
 Status: 304
-Content-type: text/html
-X-Powered-By: PHP/5.1.0RC2-dev
-Cache-Control: public, must-revalidate, max_age=3600
-ETag: "80b285463881575891e86ba7bfecb4d0"
+X-Powered-By: PHP/%s
+Cache-Control: public, must-revalidate, max-age=3600
+Last-Modified: %s
+Content-Type: %s
+Accept-Ranges: bytes
+ETag: "900150983cd24fb0d6963f7d28e17f72"