X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fmessage002.phpt;h=0809676e8dc797273d595efb787ba841c142afba;hp=810c1e8e09a3100bba4b9e97ddd1a02e4e2b595f;hb=cc26dfb22b469d8cf70c2f6103a064250a71944e;hpb=517336efe27e1f8e58e36352478a6d9ffdcdf378 diff --git a/tests/message002.phpt b/tests/message002.phpt index 810c1e8..0809676 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 - } + NULL ["requestMethod":protected]=> string(4) "POST" ["requestUrl":protected]=> @@ -59,17 +62,13 @@ object(%s)#%d (13) { ["parentMessage":protected]=> NULL ["query":protected]=> - object(http\QueryString)#2 (2) { - ["errorHandling":protected]=> - NULL + object(http\QueryString)#2 (1) { ["queryArray":"http\QueryString":private]=> array(0) { } } ["form":protected]=> - object(http\QueryString)#3 (2) { - ["errorHandling":protected]=> - NULL + object(http\QueryString)#3 (1) { ["queryArray":"http\QueryString":private]=> array(0) { } @@ -78,6 +77,7 @@ object(%s)#%d (13) { array(0) { } } +Message->toString POST / HTTP/1.1%a X-Test: test%a Content-Length: 3%a @@ -85,5 +85,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