- use http_get_request_body() on the server side
[m6w6/ext-http] / tests / HttpRequest_007.phpt
index cf651be9ffa4e842b3176b37587dd05456bef12c..74ce5276744e5b081b7622e04fd7bd01720f4e9c 100644 (file)
@@ -9,35 +9,57 @@ checkcls('HttpRequest');
 <?php
 echo "-TEST\n";
 
-$r = new HttpRequest('http://dev.iworks.at/.print_request.php', HTTP_METH_PUT);
+$r = new HttpRequest('http://dev.iworks.at/.print_put.php5', HTTP_METH_PUT);
 $r->recordHistory = true;
 $r->addHeaders(array('content-type' => 'text/plain'));
 $r->setPutFile(__FILE__);
 $r->send();
-var_dump($r->getRawRequestMessage());
+var_dump($r->getHistory()->toString(true));
 echo "Done\n";
 ?>
 --EXPECTF--
 %sTEST
-string(%d) "PUT /.print_request.php HTTP/1.1
-User-Agent: %s
+string(%d) "HTTP/1.1 200 OK
+Date: %s
+Server: Apache/%s
+X-Powered-By: PHP/5%s
+Vary: Accept-Encoding
+Content-Type: text/html
+X-Original-Transfer-Encoding: chunked
+Content-Length: 281
+
+<?php
+echo "-TEST\n";
+
+$r = new HttpRequest('http://dev.iworks.at/.print_put.php5', HTTP_METH_PUT);
+$r->recordHistory = true;
+$r->addHeaders(array('content-type' => 'text/plain'));
+$r->setPutFile(__FILE__);
+$r->send();
+var_dump($r->getHistory()->toString(true));
+echo "Done\n";
+?>
+
+PUT /.print_put.php5 HTTP/1.1
+User-Agent: PECL::HTTP/%s
 Host: dev.iworks.at
 Accept: */*
-content-type: text/plain
-Content-Length: 278
+Content-Type: text/plain
+Content-Length: 281
 Expect: 100-continue
 
 <?php
 echo "-TEST\n";
 
-$r = new HttpRequest('http://dev.iworks.at/.print_request.php', HTTP_METH_PUT);
+$r = new HttpRequest('http://dev.iworks.at/.print_put.php5', HTTP_METH_PUT);
 $r->recordHistory = true;
 $r->addHeaders(array('content-type' => 'text/plain'));
 $r->setPutFile(__FILE__);
 $r->send();
-var_dump($r->getRawRequestMessage());
+var_dump($r->getHistory()->toString(true));
 echo "Done\n";
 ?>
+
 "
 Done