X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fclientresponse002.phpt;h=def4b3f5082cb2efa4739127f25108ce65b3548d;hp=3a0c50a2c281d1e1c71a817cbdbafa56635a89a0;hb=refs%2Fheads%2Fmaster;hpb=0b83632b2b0a03eeca090f993259ccd95ab646fb diff --git a/tests/clientresponse002.phpt b/tests/clientresponse002.phpt index 3a0c50a..def4b3f 100644 --- a/tests/clientresponse002.phpt +++ b/tests/clientresponse002.phpt @@ -3,61 +3,27 @@ client response cookies --SKIPIF-- --FILE-- enqueue($request)->send()->getResponse()->getCookies(0, array("comment")) as $cookies) { - var_dump($cookies->toArray()); +server("cookie2.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\(1\) \{ - \["temp"\]\=\> - string\(1[23]\) "\d+\.\d+" - \} - \["extras"\]\=\> - array\(0\) \{ - \} - \["flags"\]\=\> - int\(0\) - \["expires"\]\=\> - int\(\-1\) - \["max\-age"\]\=\> - int\(\-1\) - \["path"\]\=\> - string\(0\) "" - \["domain"\]\=\> - string\(0\) "" -\} -array\(7\) \{ - \["cookies"\]\=\> - array\(1\) \{ - \["perm"\]\=\> - string\(1[23]\) "\d+\.\d+" - \} - \["extras"\]\=\> - array\(0\) \{ - \} - \["flags"\]\=\> - int\(0\) - \["expires"\]\=\> - int\(\d+\) - \["max\-age"\]\=\> - int\(\-1\) - \["path"\]\=\> - string\(0\) "" - \["domain"\]\=\> - string\(0\) "" -\} -)+Done +(?:array\(7\) \{\n \["cookies"\]\=\>\n array\(1\) \{\n \["temp"\]\=\>\n string\(1\d\) "\d+\.\d+"\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\}\narray\(7\) \{\n \["cookies"\]\=\>\n array\(1\) \{\n \["perm"\]\=\>\n string\(1\d\) "\d+\.\d+"\n \}\n \["extras"\]\=\>\n array\(0\) \{\n \}\n \["flags"\]\=\>\n int\(0\)\n \["expires"\]\=\>\n int\(\d+\)\n \["max\-age"\]\=\>\n int\(\-1\)\n \["path"\]\=\>\n string\(0\) ""\n \["domain"\]\=\>\n string\(0\) ""\n\}\n)+Done