X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2FHttpRequest_004.phpt;fp=tests%2FHttpRequest_004.phpt;h=0000000000000000000000000000000000000000;hb=87db9817d428282792c8146d9c2ae9748ebf6f1e;hp=313a4dc137ba93026004184230e066c468708d30;hpb=7a5c865f6faf8b1b6c91735e9d3b040449ea74ba;p=m6w6%2Fext-http diff --git a/tests/HttpRequest_004.phpt b/tests/HttpRequest_004.phpt deleted file mode 100644 index 313a4dc..0000000 --- a/tests/HttpRequest_004.phpt +++ /dev/null @@ -1,162 +0,0 @@ ---TEST-- -HttpRequest multiple posts ---SKIPIF-- - ---FILE-- - 1, 'dbl' => M_PI), - array('str' => 'something', 'nil' => null) -); - -echo "\nFirst Request\n"; -$r = new HttpRequest('http://dev.iworks.at/ext-http/.print_request.php', HttpRequest::METH_POST); -$r->setPostFields($fields[0]); -$r->addPostFields($fields[1]); -var_dump($r->send()->getBody()); -var_dump($fields); - -echo "\nSecond Request\n"; -$r->setPostFields($fields); -var_dump($r->send()->getBody()); -var_dump($fields); - -echo "\nThird Request\n"; -$r->addPostFields(array('x' => 'X')); -var_dump($r->send()->getBody()); -var_dump($fields); - -echo "\nFourth Request\n"; -$r->setPostFields(array()); -var_dump($r->send()->getBody()); -var_dump($fields); - -echo "Done\n"; -?> ---EXPECTF-- -%aTEST - -First Request -string(%d) "Array -( - [int] => 1 - [dbl] => 3.1415926535898 - [str] => something - [nil] => -) -string(44) "int=1&dbl=3.1415926535898&str=something&nil=" -" -array(2) { - [0]=> - array(2) { - ["int"]=> - int(1) - ["dbl"]=> - float(3.1415926535898) - } - [1]=> - array(2) { - ["str"]=> - string(9) "something" - ["nil"]=> - NULL - } -} - -Second Request -string(%d) "Array -( - [0] => Array - ( - [int] => 1 - [dbl] => 3.1415926535898 - ) - - [1] => Array - ( - [str] => something - [nil] => - ) - -) -string(72) "0%5Bint%5D=1&0%5Bdbl%5D=3.1415926535898&1%5Bstr%5D=something&1%5Bnil%5D=" -" -array(2) { - [0]=> - array(2) { - ["int"]=> - int(1) - ["dbl"]=> - float(3.1415926535898) - } - [1]=> - array(2) { - ["str"]=> - string(9) "something" - ["nil"]=> - NULL - } -} - -Third Request -string(%d) "Array -( - [0] => Array - ( - [int] => 1 - [dbl] => 3.1415926535898 - ) - - [1] => Array - ( - [str] => something - [nil] => - ) - - [x] => X -) -string(76) "0%5Bint%5D=1&0%5Bdbl%5D=3.1415926535898&1%5Bstr%5D=something&1%5Bnil%5D=&x=X" -" -array(2) { - [0]=> - array(2) { - ["int"]=> - int(1) - ["dbl"]=> - float(3.1415926535898) - } - [1]=> - array(2) { - ["str"]=> - string(9) "something" - ["nil"]=> - NULL - } -} - -Fourth Request -string(13) "string(0) "" -" -array(2) { - [0]=> - array(2) { - ["int"]=> - int(1) - ["dbl"]=> - float(3.1415926535898) - } - [1]=> - array(2) { - ["str"]=> - string(9) "something" - ["nil"]=> - NULL - } -} -Done -