reorder
authorMichael Wallner <mike@php.net>
Thu, 12 Feb 2015 10:12:42 +0000 (11:12 +0100)
committerMichael Wallner <mike@php.net>
Thu, 12 Feb 2015 10:12:42 +0000 (11:12 +0100)
18 files changed:
tests/client002.phpt
tests/client003.phpt
tests/client004.phpt
tests/client005.phpt
tests/client006.phpt
tests/client007.phpt
tests/client008.phpt
tests/client013.phpt
tests/client015.phpt
tests/client016.phpt
tests/clientresponse003.phpt
tests/pipeline.inc [deleted file]
tests/pipeline001.phpt [deleted file]
tests/propertyproxy001.phpt
tests/proxy.inc [deleted file]
tests/proxy001.phpt [deleted file]
tests/proxy002.phpt [deleted file]
tests/server.inc [deleted file]

index e07b82e21669fff8e5e38e250611c8c4397993c5..aeb2d8ac7041e888475178b190db8175823f63b5 100644 (file)
@@ -8,7 +8,7 @@ skip_client_test();
 --FILE--
 <?php
 
 --FILE--
 <?php
 
-include "server.inc";
+include "helper/server.inc";
 
 echo "Test\n";
 
 
 echo "Test\n";
 
index 29ab245fd07b503c37880fcd24864b4097950a46..a6b1a4c7cfb4fef4d971196e6fe70bd6a99e1f6e 100644 (file)
@@ -8,7 +8,7 @@ skip_client_test();
 --FILE--
 <?php
 
 --FILE--
 <?php
 
-include "server.inc";
+include "helper/server.inc";
 
 echo "Test\n";
 
 
 echo "Test\n";
 
index 204e172f38e7319259d734cd40616654de0cf0a8..1b3bb5ecdca988b214624150f7b061d6e625f914 100644 (file)
@@ -8,7 +8,7 @@ skip_client_test();
 --FILE--
 <?php
 
 --FILE--
 <?php
 
-include "server.inc";
+include "helper/server.inc";
 
 echo "Test\n";
 
 
 echo "Test\n";
 
index 229195caa85bc11317caa6e04382ecf6074a0d07..b73b5bb01dd01e2648c0b74b32449ad7c49ee751 100644 (file)
@@ -8,7 +8,7 @@ skip_client_test();
 --FILE--
 <?php
 
 --FILE--
 <?php
 
-include "server.inc";
+include "helper/server.inc";
 
 echo "Test\n";
 
 
 echo "Test\n";
 
index 403d3e71d901835635beefa74973f0270e443e1c..1621cc71b0ff5d146947f41d40c1f18fef9d5cdb 100644 (file)
@@ -8,7 +8,7 @@ skip_client_test();
 --FILE--
 <?php
 
 --FILE--
 <?php
 
-include "server.inc";
+include "helper/server.inc";
 
 echo "Test\n";
 
 
 echo "Test\n";
 
index 638356701a4d1fd75a274590089b4d18a8bb6953..f0100a6af290cc9f42ee6ba834f046e264cef2dc 100644 (file)
@@ -8,7 +8,7 @@ skip_client_test();
 --FILE--
 <?php
 
 --FILE--
 <?php
 
-include "server.inc";
+include "helper/server.inc";
 
 echo "Test\n";
 
 
 echo "Test\n";
 
index 41c3e681b9b5bc1a221b9ea46d677a11770fcaa1..f8b8774eb8edc1c7511b8c7961438470fd9d5a88 100644 (file)
@@ -8,7 +8,7 @@ skip_client_test();
 --FILE--
 <?php
 
 --FILE--
 <?php
 
-include "server.inc";
+include "helper/server.inc";
 
 echo "Test\n";
 
 
 echo "Test\n";
 
index f246a30c850a36a83879c14f06b6a36194c8b19d..fdf6c969c37587884ebc472214e21c3598335a50 100644 (file)
@@ -8,7 +8,7 @@ skip_client_test();
 --FILE--
 <?php 
 
 --FILE--
 <?php 
 
-include "server.inc";
+include "helper/server.inc";
 
 echo "Test\n";
 
 
 echo "Test\n";
 
index a5c2ef700e1f842e7e41e656c5ee3be8e8501a9f..70b5f43bc603c8a417bc08eeeac0d5c5787ba674 100644 (file)
@@ -8,7 +8,7 @@ skip_client_test();
 --FILE--
 <?php
 
 --FILE--
 <?php
 
-include "server.inc";
+include "helper/server.inc";
 
 echo "Test\n";
 
 
 echo "Test\n";
 
index c935f068ec6080b8936c01850681dc39527f6705..58f97c1ff0332cf8a1e7cace580e33499063e5df 100644 (file)
@@ -8,7 +8,7 @@ skip_client_test();
 --FILE--
 <?php
 
 --FILE--
 <?php
 
-include "server.inc";
+include "helper/server.inc";
 
 echo "Test\n";
 
 
 echo "Test\n";
 
index 45c1d26dabc76feedabb96e17f0a739095392bec..60ba07b2265c6409d53add0c15c117fba9ebbc32 100644 (file)
@@ -8,7 +8,7 @@ skip_client_test();
 --FILE--
 <?php
 
 --FILE--
 <?php
 
-include "server.inc";
+include "helper/server.inc";
 
 echo "Test\n";
 
 
 echo "Test\n";
 
diff --git a/tests/pipeline.inc b/tests/pipeline.inc
deleted file mode 100644 (file)
index 815b463..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php 
-
-include "server.inc";
-
-function respond($client, $msg) {
-       (new http\Env\Response)->setEnvRequest($msg)
-               ->setHeader("X-Req", $msg->getRequestUrl())
-               ->send($client);
-}
-
-serve(function($client) {
-       $count = trim(fgets(STDIN));
-       
-       /* the peek message */
-       respond($client, new http\Message($client, false));
-       
-       /* pipelined messages */
-       $req = array();
-       for ($i=0; $i < $count; ++ $i) {
-               $req[] = new http\Message($client, false);
-       }
-       foreach ($req as $msg) {
-               respond($client, $msg);
-       }
-});
diff --git a/tests/pipeline001.phpt b/tests/pipeline001.phpt
deleted file mode 100644 (file)
index 54707df..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
---TEST--
-pipelining
---SKIPIF--
-<?php 
-include "skipif.inc";
-skip_client_test();
-?>
---FILE--
-<?php 
-
-include "server.inc";
-
-echo "Test\n";
-
-server("pipeline.inc", function($port, $stdin, $stdout, $stderr) {
-       /* tell the server we're about to send 3 pipelined messages */
-       fputs($stdin, "3\n");
-       
-       $client = new http\Client(null);
-       $client->configure(["pipelining" => true, "max_host_connections" => 0]);
-       
-       /* this is just to let curl know the server may be capable of pipelining */
-       $client->enqueue(new http\Client\Request("GET", "http://localhost:$port"));
-       $client->send();
-       
-       $client->enqueue(new http\Client\Request("GET", "http://localhost:$port/1"));
-       $client->enqueue(new http\Client\Request("GET", "http://localhost:$port/2"));
-       $client->enqueue(new http\Client\Request("GET", "http://localhost:$port/3"));
-       $client->send();
-       
-       while (($response = $client->getResponse())) {
-               echo $response;
-       }
-});
-
-?>
-===DONE===
---EXPECT--
-Test
-HTTP/1.1 200 OK
-X-Req: /3
-Etag: ""
-X-Original-Transfer-Encoding: chunked
-HTTP/1.1 200 OK
-X-Req: /2
-Etag: ""
-X-Original-Transfer-Encoding: chunked
-HTTP/1.1 200 OK
-X-Req: /1
-Etag: ""
-X-Original-Transfer-Encoding: chunked
-HTTP/1.1 200 OK
-X-Req: /
-Etag: ""
-X-Original-Transfer-Encoding: chunked
-===DONE===
index 552a71318732377d67714b1e62c1f8f9cb327ffd..1001f8e5c3c981eccd6eb4a88a4d34091604fcc1 100644 (file)
@@ -4,6 +4,8 @@ property proxy
 <?php
 include "skipif.inc";
 ?>
 <?php
 include "skipif.inc";
 ?>
+--XFAIL--
+TBD
 --FILE--
 <?php
 
 --FILE--
 <?php
 
diff --git a/tests/proxy.inc b/tests/proxy.inc
deleted file mode 100644 (file)
index 61b20dd..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php 
-
-include "server.inc";
-
-serve(function($client) {
-       /* this might be a proxy connect or a standard request */
-       $request = new http\Message($client, false);
-       
-       if ($request->getHeader("Proxy-Connection")) {
-               $response = new http\Env\Response;
-               $response->send($client);
-               
-               /* soak up the request following the connect */
-               new http\Message($client, false);
-       }
-       
-       /* return the initial message as response body */
-       $response = new http\Env\Response;
-       $response->getBody()->append($request);
-       $response->send($client);
-});
diff --git a/tests/proxy001.phpt b/tests/proxy001.phpt
deleted file mode 100644 (file)
index c3a5905..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
---TEST--
-proxy - send proxy headers for a proxy request
---SKIPIF--
-<?php 
-include "skipif.inc";
-skip_client_test();
-?>
---FILE--
-<?php
-
-include "server.inc";
-
-echo "Test\n";
-
-server("proxy.inc", function($port, $stdin, $stdout, $stderr) {
-       echo "Server on port $port\n";
-       
-       $c = new http\Client;
-       $r = new http\Client\Request("GET", "http://www.example.com/");
-       $r->setOptions(array(
-                       "timeout" => 3,
-                       "proxytunnel" => true,
-                       "proxyheader" => array("Hello" => "there!"),
-                       "proxyhost" => "localhost",
-                       "proxyport" => $port,
-       ));
-       try {
-               $c->enqueue($r)->send();
-       } catch (Exception $e) {
-               echo $e;
-       }
-       echo $c->getResponse()->getBody();
-       unset($r, $client);
-});
-
-?>
-===DONE===
---EXPECTF--
-Test
-Server on port %d
-CONNECT www.example.com:80 HTTP/1.1
-Host: www.example.com:80
-User-Agent: PECL_HTTP/%s PHP/%s libcurl/%s
-Proxy-Connection: Keep-Alive
-Hello: there!
-Content-Length: 0
-===DONE===
diff --git a/tests/proxy002.phpt b/tests/proxy002.phpt
deleted file mode 100644 (file)
index ce548a5..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
---TEST--
-proxy - don't send proxy headers for a standard request
---SKIPIF--
-<?php 
-include "skipif.inc";
-skip_client_test();
-?>
---FILE--
-<?php
-
-include "server.inc";
-
-echo "Test\n";
-
-server("proxy.inc", function($port, $stdin, $stdout, $stderr) {
-       echo "Server on port $port\n";
-       $c = new http\Client;
-       $r = new http\Client\Request("GET", "http://localhost:$port/");
-       $r->setOptions(array(
-               "timeout" => 3,
-               "proxyheader" => array("Hello" => "there!"),
-       ));
-       try {
-               $c->enqueue($r)->send();
-       } catch (Exception $e) {
-               echo $e;
-       }
-       echo $c->getResponse()->getBody();
-       unset($r, $client);
-});
-
-?>
-===DONE===
---EXPECTF--
-Test
-Server on port %d
-GET / HTTP/1.1
-User-Agent: PECL_HTTP/%s PHP/%s libcurl/%s
-Host: localhost:%d
-Accept: */*
-Content-Length: 0
-===DONE===
diff --git a/tests/server.inc b/tests/server.inc
deleted file mode 100644 (file)
index ca20cb0..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php 
-
-function serve(callable $cb) {
-       foreach (range(8000, 9000) as $port) {
-               if (($server = stream_socket_server("tcp://localhost:$port"))) {
-                       fprintf(STDERR, "%s\n", $port);
-                       do {
-                               $R = [$server]; $W = []; $E = [];
-                               $select = stream_select($R, $E, $E, 0, 10000);
-                               if ($select && ($client = stream_socket_accept($server, 1))) {
-                                       if (getenv("PHP_HTTP_TEST_SSL")) {
-                                               stream_socket_enable_crypto($client, true, STREAM_CRYPTO_METHOD_SSLv23_SERVER);
-                                       }
-                                       while (!feof($client)) {
-                                               $cb($client);
-                                       }
-                               }
-                       } while ($select !== false);
-                       return;
-               }
-       }
-}
-
-function server($file, callable $cb) {
-       $spec = array(array("pipe","r"), array("pipe","w"), array("pipe","w"));
-       if (($proc = proc_open(PHP_BINARY . " $file", $spec, $pipes, __DIR__))) {
-               $port = trim(fgets($pipes[2]));
-               
-               $cb($port, $stdin = $pipes[0], $stdout = $pipes[1], $stderr = $pipes[2]);
-               
-               proc_terminate($proc);
-               
-               fpassthru($stderr);
-               fpassthru($stdout);
-       }
-}