release 1.7.6
[m6w6/ext-http] / tests / HttpMessage_003.phpt
index 79d0dc66dc69e638f4f3c857798581d931e81056..831b4da888d809f06cc8a63631d6e6107ec464e7 100644 (file)
@@ -1,9 +1,9 @@
 --TEST--
-HttpMessage implmenets Serializable, Countable
+HttpMessage implements Serializable, Countable
 --SKIPIF--
 <?php
 include 'skip.inc';
-checkmin(5);
+checkmin("5.2.5");
 ?>
 --FILE--
 <?php
@@ -31,37 +31,40 @@ var_dump($m->count());
 echo "Done\n";
 ?>
 --EXPECTF--
-%sTEST
+%aTEST
 int(3)
-string(109) "HTTP/1.1 301
+string(148) "HTTP/1.1 301
 Location: /anywhere
 HTTP/1.1 302
 Location: /somewhere
 HTTP/1.1 200
+X-Original-Transfer-Encoding: chunked
 Content-Length: 1
 
 X
 "
 object(HttpMessage)#%d (%d) {
-  ["type:protected"]=>
+  ["type%s]=>
   int(2)
-  ["httpVersion:protected"]=>
-  float(1.1)
-  ["responseCode:protected"]=>
-  int(200)
-  ["responseStatus:protected"]=>
-  string(2) "Ok"
-  ["requestMethod:protected"]=>
+  ["body%s]=>
+  string(0) ""
+  ["requestMethod%s]=>
   string(0) ""
-  ["requestUri:protected"]=>
+  ["requestUrl%s]=>
   string(0) ""
-  ["headers:protected"]=>
+  ["responseStatus%s]=>
+  string(2) "Ok"
+  ["responseCode%s]=>
+  int(200)
+  ["httpVersion%s]=>
+  float(1.1)
+  ["headers%s]=>
   array(1) {
     ["Server"]=>
     string(9) "Funky/1.0"
   }
-  ["body:protected"]=>
-  string(0) ""
+  ["parentMessage%s]=>
+  NULL
 }
 int(1)
 Done