--TEST--
-HttpRequest GET
+HttpRequest GET/POST
--SKIPIF--
-<?php
+<?php
include 'skip.inc';
(5 > (int) PHP_VERSION) and die('skip PHP5 is required for Http classes');
?>
$r = new HttpRequest('http://www.google.com', HTTP_GET);
var_dump($r->send());
print_r($r->getResponseInfo());
+$r->setMethod(HTTP_POST);
+$r->addPostFields(array('q'=>'foobar','start'=>10));
+$r->send();
+var_dump($r->getResponseCode());
+var_dump(false != strstr($r->getResponseBody(), "Not Implemented"));
?>
--EXPECTF--
Content-type: text/html
[proxyauth_avail] => %d
[num_connects] => %d
)
+int(501)
+bool(true)
--- /dev/null
+--TEST--
+HttpRequest SSL
+--SKIPIF--
+<?php
+include 'skip.inc';
+(5 > (int) PHP_VERSION) and die('skip PHP5 is required for Http classes');
+?>
+--FILE--
+<?php
+$r = new HttpRequest('https://ssl.arweb.info/iworks/data.txt');
+$r->send();
+var_dump($r->getResponseBody());
+?>
+--EXPECTF--
+Content-type: text/html
+X-Powered-By: PHP/%s
+
+string(10) "1234567890"
?>
--FILE--
<?php
-var_export(http_split_response("HTTP/1.1 200 Ok\r\nContent-Type: text/plain\r\nContent-Language: de-AT\r\nDate: Sat, 22 Jan 2005 18:10:02 GMT\r\n\r\nHallo Du!"));
+$data = "HTTP/1.1 200 Ok\r\nContent-Type: text/plain\r\nContent-Language: de-AT\r\nDate: Sat, 22 Jan 2005 18:10:02 GMT\r\n\r\nHallo Du!";
+var_export(http_split_response($data));
+echo "\nDone\n";
?>
--EXPECTF--
Content-type: text/html
),
1 => 'Hallo Du!',
)
+Done
+
--- /dev/null
+--TEST--
+http_split_response() list bug (mem-leaks)
+--SKIPIF--
+<?php
+include 'skip.inc';
+?>
+--FILE--
+<?php
+$data = "HTTP/1.1 200 Ok\r\nContent-Type: text/plain\r\nContent-Language: de-AT\r\nDate: Sat, 22 Jan 2005 18:10:02 GMT\r\n\r\nHallo Du!";
+// this generates mem-leaks - no idea how to fix them
+class t {
+ var $r = array();
+ function fail($data) {
+ list($this->r['headers'], $this->r['body']) = http_split_response($data);
+ }
+}
+
+$t = new t;
+$t->fail($data);
+echo "Done\n";
+?>
+--EXPECTF--
+Content-type: text/html
+X-Powered-By: PHP/%s
+
+Done
+