standard return values; fix tests
[m6w6/ext-http] / tests / message002.phpt
index dcaacf3d4b4d2e0f18917654d4215ab81e41f486..f701bc2aa104043dd1ec84de6abc89ab0ff70255 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-env request Message
+env request message
 --SKIPIF--
 <?php include "skipif.inc"; ?>
 --POST_RAW--
@@ -18,10 +18,16 @@ use http\env\Request as HttpEnvRequest;
 $m = new HttpEnvRequest();
 
 var_dump($m);
+
+echo "Message->toString\n";
 echo $m,"\n";
 
+echo "Body->toString\n";
 var_dump((string)$m->getBody());
 
+echo "stream\n";
+var_dump(file_get_contents("php://input"));
+
 echo "Done\n";
 --EXPECTF--
 Test
@@ -66,7 +72,7 @@ object(%s)#%d (13) {
     array(0) {
     }
   }
-  ["post":protected]=>
+  ["form":protected]=>
   object(http\QueryString)#3 (2) {
     ["errorHandling":protected]=>
     NULL
@@ -78,6 +84,7 @@ object(%s)#%d (13) {
   array(0) {
   }
 }
+Message->toString
 POST / HTTP/1.1%a
 X-Test: test%a
 Content-Length: 3%a
@@ -85,5 +92,8 @@ Content-Type: test/something%a
 Cookie: foo=bar%a
 %a
 b=c
+Body->toString
+string(3) "b=c"
+stream
 string(3) "b=c"
 Done