X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fclient008.phpt;h=616a9e427ec5c36c9f7d06d3975d8ac36ca464e5;hp=31584d30c548e36372ef2695ec01c9607a90f6a8;hb=refs%2Fheads%2Fmaster;hpb=eaa046dc3e6496e523a17c3b786ef27067b9795c diff --git a/tests/client008.phpt b/tests/client008.phpt index 31584d3..616a9e4 100644 --- a/tests/client008.phpt +++ b/tests/client008.phpt @@ -1,31 +1,40 @@ --TEST-- -client features +client pipelining --SKIPIF-- =")) { + die("skip CURL_VERSION >= 7.62 -- pipelining disabled\n"); +} ?> --FILE-- enablePipelining(true); - $client->enableEvents(true); +server("pipeline.inc", function($port, $stdin) { + fputs($stdin, "2\n"); + $request = new http\Client\Request("GET", "http://localhost:$port"); + + $client = new http\Client(); + $client->configure(array("pipelining" => true, "use_eventloop" => true)); + $client->enqueue($request); + $client->send(); + $client->enqueue(clone $request); $client->enqueue(clone $request); - + $client->send(); - + while ($client->getResponse()) { echo "R\n"; } -} +}); ?> Done