X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fmessage002.phpt;h=573fdbd8a9ded3106f72c0a1f0f4ffdff8f038b1;hp=f515af52e42600feaf26edd8461bf354f4fc772e;hb=1eaeb2c133a2e47327fe6cd6282db2a02527e57a;hpb=40688e36ecfc7b22a1221079a8d40edd122ee550 diff --git a/tests/message002.phpt b/tests/message002.phpt index f515af5..573fdbd 100644 --- a/tests/message002.phpt +++ b/tests/message002.phpt @@ -9,32 +9,40 @@ b=c HTTP_X_TEST=test --COOKIE-- foo=bar +--INI-- +always_populate_raw_post_data=-1 --FILE-- -getHeaders(); +ksort($h); +$m->setHeaders($h); + var_dump($m); + +echo "Message->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 ["type":protected]=> int(1) ["body":protected]=> - object(%s)#%d (1) { - ["errorHandling":protected]=> - NULL - } + NULL ["requestMethod":protected]=> string(4) "POST" ["requestUrl":protected]=> @@ -47,43 +55,51 @@ object(%s)#%d (13) { string(3) "1.1" ["headers":protected]=> array(4) { - ["X-Test"]=> - string(4) "test" ["Content-Length"]=> string(1) "3" ["Content-Type"]=> string(14) "test/something" ["Cookie"]=> string(7) "foo=bar" + ["X-Test"]=> + string(4) "test" } ["parentMessage":protected]=> NULL ["query":protected]=> - object(http\QueryString)#2 (2) { - ["errorHandling":protected]=> - NULL + object(http\QueryString)#%d (1) { ["queryArray":"http\QueryString":private]=> array(0) { } } ["form":protected]=> - object(http\QueryString)#3 (2) { - ["errorHandling":protected]=> - NULL + 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 +X-Test: test%a %a b=c +Body->toString +string(3) "b=c" +stream string(3) "b=c" Done