X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=tests%2FHttpRequest_002.phpt;h=f6f0f7439e6f5797d1fb5a7742152e2577e93c92;hb=acc6833d4edb16c0fc4b82c1b47ab00aedec62ce;hp=52941506cb8ba1cdc5b43690adc1a9833a6787da;hpb=244c8484720c23fdb5d9d557ca180dc2b822a140;p=m6w6%2Fext-http diff --git a/tests/HttpRequest_002.phpt b/tests/HttpRequest_002.phpt index 5294150..f6f0f74 100644 --- a/tests/HttpRequest_002.phpt +++ b/tests/HttpRequest_002.phpt @@ -1,20 +1,27 @@ --TEST-- -HttpRequest GET +HttpRequest GET/POST --SKIPIF-- - (int) PHP_VERSION) and die('skip PHP5 is required for Http classes'); +checkver(5); +checkcls('HttpRequest'); +checkurl('www.google.com'); ?> --FILE-- 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 - +%sTEST bool(true) Array ( @@ -40,6 +47,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) +