X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmessage002.phpt;h=810c1e8e09a3100bba4b9e97ddd1a02e4e2b595f;hb=6519517dbcc5d55117b3fa94572fe93123ddfe56;hp=a76e9e54a16d4cb616e830684ed5dc288f50f259;hpb=fa54d3dd8c0f101c9f8619d59eaf1940c311e7e5;p=m6w6%2Fext-http diff --git a/tests/message002.phpt b/tests/message002.phpt index a76e9e5..810c1e8 100644 --- a/tests/message002.phpt +++ b/tests/message002.phpt @@ -18,14 +18,14 @@ use http\env\Request as HttpEnvRequest; $m = new HttpEnvRequest(); var_dump($m); -echo $m; +echo $m,"\n"; var_dump((string)$m->getBody()); echo "Done\n"; --EXPECTF-- Test -object(%s)#%d (10) { +object(%s)#%d (13) { ["errorHandling":protected]=> NULL ["type":protected]=> @@ -46,19 +46,44 @@ 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)#2 (2) { + ["errorHandling":protected]=> + NULL + ["queryArray":"http\QueryString":private]=> + array(0) { + } + } + ["form":protected]=> + object(http\QueryString)#3 (2) { + ["errorHandling":protected]=> + NULL + ["queryArray":"http\QueryString":private]=> + array(0) { + } + } + ["files":protected]=> + array(0) { + } } 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 string(3) "b=c" Done