X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fmessage002.phpt;h=e16f8dc97359741c01b5b2a07d4e4331acdc892e;hp=a76e9e54a16d4cb616e830684ed5dc288f50f259;hb=a258b01227b9a0b01b590a3df43eebc60d3b4189;hpb=fa54d3dd8c0f101c9f8619d59eaf1940c311e7e5 diff --git a/tests/message002.phpt b/tests/message002.phpt index a76e9e5..e16f8dc 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 (10) { - ["errorHandling":protected]=> - NULL +object(%s)#%d (13) { ["type":protected]=> int(1) ["body":protected]=> - object(%s)#%d (1) { - ["errorHandling":protected]=> - NULL - } + NULL ["requestMethod":protected]=> string(4) "POST" ["requestUrl":protected]=> @@ -46,19 +49,52 @@ object(%s)#%d (10) { ["httpVersion":protected]=> string(3) "1.1" ["headers":protected]=> - array(2) { + array(4) { ["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)#%d (1) { + ["queryArray":"http\QueryString":private]=> + array(0) { + } + } + ["form":protected]=> + object(http\QueryString)#%d (1) { + ["queryArray":"http\QueryString":private]=> + array(0) { + } + } + ["cookie":protected]=> + object(http\QueryString)#%d (1) { + ["queryArray":"http\QueryString":private]=> + array(1) { + ["foo"]=> + string(3) "bar" + } + } + ["files":protected]=> + 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