- bloody workaround for internal class' static properties
[m6w6/ext-http] / tests / HttpRequest_002.phpt
index 52941506cb8ba1cdc5b43690adc1a9833a6787da..349f1faf38c752e4970fda9c31e7748dfa4493c6 100644 (file)
@@ -1,21 +1,27 @@
 --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');
+checkver(5);
+checkcls('HttpRequest');
+checkurl('www.google.com');
 ?>
 --FILE--
 <?php
+echo "-TEST\n";
 $r = new HttpRequest('http://www.google.com', HTTP_GET);
-var_dump($r->send());
+$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($r->getResponseMessage()->getResponseCode());
+var_dump(false != strstr($r->getResponseBody(), "Not Implemented"));
 ?>
 --EXPECTF--
-Content-type: text/html
-X-Powered-By: PHP/%s
-
-bool(true)
+%sTEST
 Array
 (
     [effective_url] => http://www.google.com/
@@ -40,6 +46,9 @@ Array
     [content_length_upload] => %d
     [content_type] => %s
     [httpauth_avail] => %d
-    [proxyauth_avail] => %d
-    [num_connects] => %d
+    [proxyauth_avail] => %s
 )
+int(501)
+int(501)
+bool(true)
+