X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmessage002.phpt;h=f701bc2aa104043dd1ec84de6abc89ab0ff70255;hb=b7c74d29e14a92bc649d767b53c392eba4ddde2e;hp=bb19875844411b0bfc810c884329f5b04a358338;hpb=cdfa5298b064787eebbdce77a46b5ae77b3617ae;p=m6w6%2Fext-http diff --git a/tests/message002.phpt b/tests/message002.phpt index bb19875..f701bc2 100644 --- a/tests/message002.phpt +++ b/tests/message002.phpt @@ -1,5 +1,5 @@ --TEST-- -env request Message +env request message --SKIPIF-- --POST_RAW-- @@ -18,10 +18,16 @@ use http\env\Request as HttpEnvRequest; $m = new HttpEnvRequest(); var_dump($m); -echo $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 @@ -47,12 +53,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 +72,7 @@ object(%s)#%d (13) { array(0) { } } - ["post":protected]=> + ["form":protected]=> object(http\QueryString)#3 (2) { ["errorHandling":protected]=> NULL @@ -78,10 +84,16 @@ object(%s)#%d (13) { array(0) { } } +Message->toString 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 +Body->toString +string(3) "b=c" +stream string(3) "b=c" Done