projects
/
m6w6
/
ext-http
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
7a119e0
)
improve
author
Michael Wallner
<mike@php.net>
Wed, 9 Oct 2013 07:43:46 +0000
(07:43 +0000)
committer
Michael Wallner
<mike@php.net>
Wed, 9 Oct 2013 07:43:46 +0000
(07:43 +0000)
tests/message002.phpt
patch
|
blob
|
history
diff --git
a/tests/message002.phpt
b/tests/message002.phpt
index f515af52e42600feaf26edd8461bf354f4fc772e..f701bc2aa104043dd1ec84de6abc89ab0ff70255 100644
(file)
--- a/
tests/message002.phpt
+++ b/
tests/message002.phpt
@@
-18,10
+18,16
@@
use http\env\Request as HttpEnvRequest;
$m = new HttpEnvRequest();
var_dump($m);
+
+echo "Message->toString\n";
echo $m,"\n";
+echo "Body->toString\n";
var_dump((string)$m->getBody());
+echo "stream\n";
+var_dump(file_get_contents("php://input"));
+
echo "Done\n";
--EXPECTF--
Test
@@
-78,6
+84,7
@@
object(%s)#%d (13) {
array(0) {
}
}
+Message->toString
POST / HTTP/1.1%a
X-Test: test%a
Content-Length: 3%a
@@
-85,5
+92,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