- made the silently failing message parser raise some errors
[m6w6/ext-http] / tests / HttpRequest_002.phpt
index 52941506cb8ba1cdc5b43690adc1a9833a6787da..5913f8c6abc62c80c0cf121eab178b12e3c355c8 100644 (file)
@@ -1,26 +1,39 @@
 --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');
+checkmin(5);
+checkcls('HttpRequest');
+checkurl('www.google.com');
+checkurl('dev.iworks.at');
 ?>
 --FILE--
 <?php
-$r = new HttpRequest('http://www.google.com', HTTP_GET);
-var_dump($r->send());
+echo "-TEST\n";
+
+$r = new HttpRequest('http://www.google.com', HttpRequest::METH_GET);
+$r->send();
 print_r($r->getResponseInfo());
+
+$r = new HttpRequest('http://dev.iworks.at/.print_request.php', HTTP_METH_POST);
+$r->addCookies(array('MyCookie' => 'foobar'));
+$r->addQueryData(array('gq'=>'foobar','gi'=>10));
+$r->addPostFields(array('pq'=>'foobar','pi'=>10));
+$r->addPostFile('upload', dirname(__FILE__).'/data.txt', 'text/plain');
+$r->send();
+echo $r->getResponseBody();
+var_dump($r->getResponseMessage()->getResponseCode());
+
+echo "Done";
 ?>
 --EXPECTF--
-Content-type: text/html
-X-Powered-By: PHP/%s
-
-bool(true)
+%sTEST
 Array
 (
     [effective_url] => http://www.google.com/
     [response_code] => %d
-    [http_connectcode] => %d
+    [connect_code] => %d
     [filetime] => %s
     [total_time] => %f
     [namelookup_time] => %f
@@ -36,10 +49,35 @@ Array
     [header_size] => %d
     [request_size] => %d
     [ssl_verifyresult] => %d
+    [ssl_engines] => Array%s
     [content_length_download] => %d
     [content_length_upload] => %d
     [content_type] => %s
     [httpauth_avail] => %d
-    [proxyauth_avail] => %d
+    [proxyauth_avail] => %s
     [num_connects] => %d
+    [cookies] => Array%s
 )
+Array
+(
+    [gq] => foobar
+    [gi] => 10
+    [pq] => foobar
+    [pi] => 10
+    [MyCookie] => foobar
+)
+Array
+(
+    [upload] => Array
+        (
+            [name] => data.txt
+            [type] => text/plain
+            [tmp_name] => %s
+            [error] => 0
+            [size] => 1010
+        )
+
+)
+
+int(200)
+Done