X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fclientresponse001.phpt;h=85f686103ed68764b637f87cb53457e5b908fa1a;hp=2f2529123950a8ef2fbb4c196e03faf834a8d919;hb=92ebc45a45d1cd712ea9d8d9fcf8b64b115939df;hpb=87db9817d428282792c8146d9c2ae9748ebf6f1e diff --git a/tests/clientresponse001.phpt b/tests/clientresponse001.phpt index 2f25291..85f6861 100644 --- a/tests/clientresponse001.phpt +++ b/tests/clientresponse001.phpt @@ -3,43 +3,27 @@ client response cookie --SKIPIF-- --FILE-- enqueue($request)->send()->getResponse()->getCookies(0, array("comment")) as $cookies) { - var_dump($cookies->toArray()); +server("cookie1.inc", function($port) { + $request = new http\Client\Request("GET", "http://localhost:$port"); + + foreach (http\Client::getAvailableDrivers() as $driver) { + $client = new http\Client($driver); + foreach($client->enqueue($request)->send()->getResponse()->getCookies(0, array("comment")) as $cookies) { + var_dump($cookies->toArray()); + } } -} +}); ?> Done --EXPECTREGEX-- Test -(?:array\(7\) \{ - \["cookies"\]\=\> - array\(2\) \{ - \["foo"\]\=\> - string\(3\) "bar" - \["bar"\]\=\> - string\(3\) "foo" - \} - \["extras"\]\=\> - array\(0\) \{ - \} - \["flags"\]\=\> - int\(0\) - \["expires"\]\=\> - int\(\-1\) - \["max\-age"\]\=\> - int\(\-1\) - \["path"\]\=\> - string\(0\) "" - \["domain"\]\=\> - string\(0\) "" -\} -)+Done +(?:array\(7\) \{\n \["cookies"\]\=\>\n array\(2\) \{\n \["foo"\]\=\>\n string\(3\) "bar"\n \["bar"\]\=\>\n string\(3\) "foo"\n \}\n \["extras"\]\=\>\n array\(0\) \{\n \}\n \["flags"\]\=\>\n int\(0\)\n \["expires"\]\=\>\n int\(\-1\)\n \["max\-age"\]\=\>\n int\(\-1\)\n \["path"\]\=\>\n string\(0\) ""\n \["domain"\]\=\>\n string\(0\) ""\n\}\n)+Done