prepare v4.2.5
[m6w6/ext-http] / tests / message002.phpt
index e16f8dc97359741c01b5b2a07d4e4331acdc892e..da0b7996364f303c57494cd4e70d73eff9cacf0b 100644 (file)
@@ -19,6 +19,11 @@ use http\env\Request as HttpEnvRequest;
 
 $m = new HttpEnvRequest();
 
+// travis' env headers have another order, wtf?
+$h = $m->getHeaders();
+ksort($h);
+$m->setHeaders($h);
+
 var_dump($m);
 
 echo "Message->toString\n";
@@ -37,7 +42,8 @@ object(%s)#%d (13) {
   ["type":protected]=>
   int(1)
   ["body":protected]=>
-  NULL
+  object(http\Message\Body)#3 (0) {
+  }
   ["requestMethod":protected]=>
   string(4) "POST"
   ["requestUrl":protected]=>
@@ -50,14 +56,14 @@ object(%s)#%d (13) {
   string(3) "1.1"
   ["headers":protected]=>
   array(4) {
-    ["X-Test"]=>
-    string(4) "test"
     ["Content-Length"]=>
     string(1) "3"
     ["Content-Type"]=>
     string(14) "test/something"
     ["Cookie"]=>
     string(7) "foo=bar"
+    ["X-Test"]=>
+    string(4) "test"
   }
   ["parentMessage":protected]=>
   NULL
@@ -87,10 +93,10 @@ object(%s)#%d (13) {
 }
 Message->toString
 POST / HTTP/1.1%a
-X-Test: test%a
 Content-Length: 3%a
 Content-Type: test/something%a
 Cookie: foo=bar%a
+X-Test: test%a
 %a
 b=c
 Body->toString