fixed config.w32
[m6w6/ext-http] / tests / message002.phpt
index bb19875844411b0bfc810c884329f5b04a358338..f515af52e42600feaf26edd8461bf354f4fc772e 100644 (file)
@@ -1,5 +1,5 @@
 --TEST--
-env request Message
+env request message
 --SKIPIF--
 <?php include "skipif.inc"; ?>
 --POST_RAW--
@@ -18,7 +18,7 @@ use http\env\Request as HttpEnvRequest;
 $m = new HttpEnvRequest();
 
 var_dump($m);
-echo $m;
+echo $m,"\n";
 
 var_dump((string)$m->getBody());
 
@@ -47,12 +47,12 @@ object(%s)#%d (13) {
   string(3) "1.1"
   ["headers":protected]=>
   array(4) {
-    ["Content-Type"]=>
-    string(14) "test/something"
-    ["Content-Length"]=>
-    string(1) "3"
     ["X-Test"]=>
     string(4) "test"
+    ["Content-Length"]=>
+    string(1) "3"
+    ["Content-Type"]=>
+    string(14) "test/something"
     ["Cookie"]=>
     string(7) "foo=bar"
   }
@@ -66,7 +66,7 @@ object(%s)#%d (13) {
     array(0) {
     }
   }
-  ["post":protected]=>
+  ["form":protected]=>
   object(http\QueryString)#3 (2) {
     ["errorHandling":protected]=>
     NULL
@@ -80,8 +80,10 @@ object(%s)#%d (13) {
 }
 POST / HTTP/1.1%a
 X-Test: test%a
+Content-Length: 3%a
+Content-Type: test/something%a
 Cookie: foo=bar%a
 %a
-b=c%a
+b=c
 string(3) "b=c"
 Done