update test
[m6w6/ext-http] / tests / message002.phpt
index dcaacf3d4b4d2e0f18917654d4215ab81e41f486..e16f8dc97359741c01b5b2a07d4e4331acdc892e 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-env request Message
+env request message
 --SKIPIF--
 <?php include "skipif.inc"; ?>
 --POST_RAW--
@@ -9,8 +9,10 @@ b=c
 HTTP_X_TEST=test
 --COOKIE--
 foo=bar
+--INI--
+always_populate_raw_post_data=-1
 --FILE--
-<?
+<?php
 echo "Test\n";
 
 use http\env\Request as HttpEnvRequest;
@@ -18,23 +20,24 @@ 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 "Done\n";
+echo "stream\n";
+var_dump(file_get_contents("php://input"));
+?>
+Done
 --EXPECTF--
 Test
 object(%s)#%d (13) {
-  ["errorHandling":protected]=>
-  NULL
   ["type":protected]=>
   int(1)
   ["body":protected]=>
-  object(%s)#%d (1) {
-    ["errorHandling":protected]=>
-    NULL
-  }
+  NULL
   ["requestMethod":protected]=>
   string(4) "POST"
   ["requestUrl":protected]=>
@@ -59,25 +62,30 @@ object(%s)#%d (13) {
   ["parentMessage":protected]=>
   NULL
   ["query":protected]=>
-  object(http\QueryString)#2 (2) {
-    ["errorHandling":protected]=>
-    NULL
+  object(http\QueryString)#%d (1) {
     ["queryArray":"http\QueryString":private]=>
     array(0) {
     }
   }
-  ["post":protected]=>
-  object(http\QueryString)#3 (2) {
-    ["errorHandling":protected]=>
-    NULL
+  ["form":protected]=>
+  object(http\QueryString)#%d (1) {
     ["queryArray":"http\QueryString":private]=>
     array(0) {
     }
   }
+  ["cookie":protected]=>
+  object(http\QueryString)#%d (1) {
+    ["queryArray":"http\QueryString":private]=>
+    array(1) {
+      ["foo"]=>
+      string(3) "bar"
+    }
+  }
   ["files":protected]=>
   array(0) {
   }
 }
+Message->toString
 POST / HTTP/1.1%a
 X-Test: test%a
 Content-Length: 3%a
@@ -85,5 +93,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