fix tests for master
[m6w6/ext-http] / tests / client008.phpt
index 31584d30c548e36372ef2695ec01c9607a90f6a8..3f5641fdf040dd1d8ca9e1e8a15e9cf42444bccc 100644 (file)
@@ -1,31 +1,37 @@
 --TEST--
-client features
+client configuration
 --SKIPIF--
 <?php
 include "skipif.inc";
-skip_online_test();
+skip_client_test();
 ?>
 --FILE--
 <?php
-echo "Test\n";
 
-$request = new http\Client\Request("GET", "http://www.example.org");
+include "helper/server.inc";
+
+echo "Test\n";
 
-foreach (http\Client::getAvailableDrivers() as $driver) {
-       $client = new http\Client($driver);
-       $client->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