X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fmessage002.phpt;h=403fb262e7bf8add86d6f6105208b13359f5e7c1;hp=bb19875844411b0bfc810c884329f5b04a358338;hb=eaa046dc3e6496e523a17c3b786ef27067b9795c;hpb=cdfa5298b064787eebbdce77a46b5ae77b3617ae diff --git a/tests/message002.phpt b/tests/message002.phpt index bb19875..403fb26 100644 --- a/tests/message002.phpt +++ b/tests/message002.phpt @@ -1,5 +1,5 @@ --TEST-- -env request Message +env request message --SKIPIF-- --POST_RAW-- @@ -9,8 +9,10 @@ b=c HTTP_X_TEST=test --COOKIE-- foo=bar +--INI-- +always_populate_raw_post_data=-1 --FILE-- -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 +object(%s)#%d (12) { ["type":protected]=> int(1) ["body":protected]=> - object(%s)#%d (1) { - ["errorHandling":protected]=> - NULL + object(http\Message\Body)#%d (0) { } ["requestMethod":protected]=> string(4) "POST" @@ -47,29 +51,25 @@ 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" } ["parentMessage":protected]=> NULL ["query":protected]=> - object(http\QueryString)#2 (2) { - ["errorHandling":protected]=> - NULL + object(http\QueryString)#2 (1) { ["queryArray":"http\QueryString":private]=> array(0) { } } - ["post":protected]=> - object(http\QueryString)#3 (2) { - ["errorHandling":protected]=> - NULL + ["form":protected]=> + object(http\QueryString)#3 (1) { ["queryArray":"http\QueryString":private]=> array(0) { } @@ -78,10 +78,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