1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Tue, 14 Oct 2014 18:05:14 -0400
Subject: Add tests parts from RingPHP
---
vendor/guzzlehttp/ringphp/tests/Client/Server.php | 183 ++++++++++++++++++++++
vendor/guzzlehttp/ringphp/tests/Client/server.js | 161 +++++++++++++++++++
2 files changed, 344 insertions(+)
create mode 100644 vendor/guzzlehttp/ringphp/tests/Client/Server.php
create mode 100644 vendor/guzzlehttp/ringphp/tests/Client/server.js
diff --git a/vendor/guzzlehttp/ringphp/tests/Client/Server.php b/vendor/guzzlehttp/ringphp/tests/Client/Server.php
new file mode 100644
index 0000000..14665a5
--- /dev/null
+++ b/vendor/guzzlehttp/ringphp/tests/Client/Server.php
@@ -0,0 +1,183 @@
+<?php
+namespace GuzzleHttp\Tests\Ring\Client;
+
+use GuzzleHttp\Ring\Client\StreamHandler;
+use GuzzleHttp\Ring\Core;
+
+/**
+ * Class uses to control the test webserver.
+ *
+ * Queued responses will be served to requests using a FIFO order. All requests
+ * received by the server are stored on the node.js server and can be retrieved
+ * by calling {@see Server::received()}.
+ *
+ * Mock responses that don't require data to be transmitted over HTTP a great
+ * for testing. Mock response, however, cannot test the actual sending of an
+ * HTTP request using cURL. This test server allows the simulation of any
+ * number of HTTP request response transactions to test the actual sending of
+ * requests over the wire without having to leave an internal network.
+ */
+class Server
+{
+ public static $started;
+ public static $url = 'http://127.0.0.1:8125/';
+ public static $host = '127.0.0.1:8125';
+ public static $port = 8125;
+
+ /**
+ * Flush the received requests from the server
+ * @throws \RuntimeException
+ */
+ public static function flush()
+ {
+ self::send('DELETE', '/guzzle-server/requests');
+ }
+
+ /**
+ * Queue an array of responses or a single response on the server.
+ *
+ * Any currently queued responses will be overwritten. Subsequent requests
+ * on the server will return queued responses in FIFO order.
+ *
+ * @param array $responses An array of responses. The shape of a response
+ * is the shape described in the RingPHP spec.
+ * @throws \Exception
+ */
+ public static function enqueue(array $responses)
+ {
+ $data = [];
+
+ foreach ($responses as $response) {
+ if (!is_array($response)) {
+ throw new \Exception('Each response must be an array');
+ }
+
+ if (isset($response['body'])) {
+ $response['body'] = base64_encode($response['body']);
+ }
+
+ $response += ['headers' => [], 'reason' => '', 'body' => ''];
+ $data[] = $response;
+ }
+
+ self::send('PUT', '/guzzle-server/responses', json_encode($data));
+ }
+
+ /**
+ * Get all of the received requests as a RingPHP request structure.
+ *
+ * @return array
+ * @throws \RuntimeException
+ */
+ public static function received()
+ {
+ if (!self::$started) {
+ return [];
+ }
+
+ $response = self::send('GET', '/guzzle-server/requests');
+ $body = Core::body($response);
+ $result = json_decode($body, true);
+ if ($result === false) {
+ throw new \RuntimeException('Error decoding response: '
+ . json_last_error());
+ }
+
+ foreach ($result as &$res) {
+ if (isset($res['uri'])) {
+ $res['resource'] = $res['uri'];
+ }
+ if (isset($res['query_string'])) {
+ $res['resource'] .= '?' . $res['query_string'];
+ }
+ if (!isset($res['resource'])) {
+ $res['resource'] = '';
+ }
+ // Ensure that headers are all arrays
+ if (isset($res['headers'])) {
+ foreach ($res['headers'] as &$h) {
+ $h = (array) $h;
+ }
+ unset($h);
+ }
+ }
+
+ unset($res);
+ return $result;
+ }
+
+ /**
+ * Stop running the node.js server
+ */
+ public static function stop()
+ {
+ if (self::$started) {
+ self::send('DELETE', '/guzzle-server');
+ }
+
+ self::$started = false;
+ }
+
+ public static function wait($maxTries = 20)
+ {
+ $tries = 0;
+ while (!self::isListening() && ++$tries < $maxTries) {
+ usleep(100000);
+ }
+
+ if (!self::isListening()) {
+ throw new \RuntimeException('Unable to contact node.js server');
+ }
+ }
+
+ public static function start()
+ {
+ if (self::$started) {
+ return;
+ }
+
+ try {
+ self::wait();
+ } catch (\Exception $e) {
+ exec('node ' . __DIR__ . \DIRECTORY_SEPARATOR . 'server.js '
+ . self::$port . ' >> /tmp/server.log 2>&1 &');
+ self::wait();
+ }
+
+ self::$started = true;
+ }
+
+ private static function isListening()
+ {
+ $response = self::send('GET', '/guzzle-server/perf', null, [
+ 'connect_timeout' => 1,
+ 'timeout' => 1
+ ]);
+
+ return !isset($response['error']);
+ }
+
+ private static function send(
+ $method,
+ $path,
+ $body = null,
+ array $client = []
+ ) {
+ $handler = new StreamHandler();
+
+ $request = [
+ 'http_method' => $method,
+ 'uri' => $path,
+ 'request_port' => 8125,
+ 'headers' => ['host' => ['127.0.0.1:8125']],
+ 'body' => $body,
+ 'client' => $client,
+ ];
+
+ if ($body) {
+ $request['headers']['content-length'] = [strlen($body)];
+ }
+
+ return $handler($request);
+ }
+}
diff --git a/vendor/guzzlehttp/ringphp/tests/Client/server.js b/vendor/guzzlehttp/ringphp/tests/Client/server.js
new file mode 100644
index 0000000..5642c0f
--- /dev/null
+++ b/vendor/guzzlehttp/ringphp/tests/Client/server.js
@@ -0,0 +1,161 @@
+/**
+ * Guzzle node.js test server to return queued responses to HTTP requests and
+ * expose a RESTful API for enqueueing responses and retrieving the requests
+ * that have been received.
+ *
+ * - Delete all requests that have been received:
+ * > DELETE /guzzle-server/requests
+ * > Host: 127.0.0.1:8125
+ *
+ * - Enqueue responses
+ * > PUT /guzzle-server/responses
+ * > Host: 127.0.0.1:8125
+ * >
+ * > [{'status': 200, 'reason': 'OK', 'headers': {}, 'body': '' }]
+ *
+ * - Get the received requests
+ * > GET /guzzle-server/requests
+ * > Host: 127.0.0.1:8125
+ *
+ * < HTTP/1.1 200 OK
+ * <
+ * < [{'http_method': 'GET', 'uri': '/', 'headers': {}, 'body': 'string'}]
+ *
+ * - Shutdown the server
+ * > DELETE /guzzle-server
+ * > Host: 127.0.0.1:8125
+ *
+ * @package Guzzle PHP <http://www.guzzlephp.org>
+ * @license See the LICENSE file that was distributed with this source code.
+ */
+
+var http = require('http');
+var url = require('url');
+
+/**
+ * Guzzle node.js server
+ * @class
+ */
+var GuzzleServer = function(port, log) {
+
+ this.port = port;
+ this.log = log;
+ this.responses = [];
+ this.requests = [];
+ var that = this;
+
+ var controlRequest = function(request, req, res) {
+ if (req.url == '/guzzle-server/perf') {
+ res.writeHead(200, 'OK', {'Content-Length': 16});
+ res.end('Body of response');
+ } else if (req.method == 'DELETE') {
+ if (req.url == '/guzzle-server/requests') {
+ // Clear the received requests
+ that.requests = [];
+ res.writeHead(200, 'OK', { 'Content-Length': 0 });
+ res.end();
+ if (that.log) {
+ console.log('Flushing requests');
+ }
+ } else if (req.url == '/guzzle-server') {
+ // Shutdown the server
+ res.writeHead(200, 'OK', { 'Content-Length': 0, 'Connection': 'close' });
+ res.end();
+ if (that.log) {
+ console.log('Shutting down');
+ }
+ that.server.close();
+ }
+ } else if (req.method == 'GET') {
+ if (req.url === '/guzzle-server/requests') {
+ if (that.log) {
+ console.log('Sending received requests');
+ }
+ // Get received requests
+ var body = JSON.stringify(that.requests);
+ res.writeHead(200, 'OK', { 'Content-Length': body.length });
+ res.end(body);
+ }
+ } else if (req.method == 'PUT' && req.url == '/guzzle-server/responses') {
+ if (that.log) {
+ console.log('Adding responses...');
+ }
+ if (!request.body) {
+ if (that.log) {
+ console.log('No response data was provided');
+ }
+ res.writeHead(400, 'NO RESPONSES IN REQUEST', { 'Content-Length': 0 });
+ } else {
+ that.responses = eval('(' + request.body + ')');
+ for (var i = 0; i < that.responses.length; i++) {
+ if (that.responses[i].body) {
+ that.responses[i].body = new Buffer(that.responses[i].body, 'base64');
+ }
+ }
+ if (that.log) {
+ console.log(that.responses);
+ }
+ res.writeHead(200, 'OK', { 'Content-Length': 0 });
+ }
+ res.end();
+ }
+ };
+
+ var receivedRequest = function(request, req, res) {
+ if (req.url.indexOf('/guzzle-server') === 0) {
+ controlRequest(request, req, res);
+ } else if (req.url.indexOf('/guzzle-server') == -1 && !that.responses.length) {
+ res.writeHead(500);
+ res.end('No responses in queue');
+ } else {
+ if (that.log) {
+ console.log('Returning response from queue and adding request');
+ }
+ that.requests.push(request);
+ var response = that.responses.shift();
+ res.writeHead(response.status, response.reason, response.headers);
+ res.end(response.body);
+ }
+ };
+
+ this.start = function() {
+
+ that.server = http.createServer(function(req, res) {
+
+ var parts = url.parse(req.url, false);
+ var request = {
+ http_method: req.method,
+ scheme: parts.scheme,
+ uri: parts.pathname,
+ query_string: parts.query,
+ headers: req.headers,
+ version: req.httpVersion,
+ body: ''
+ };
+
+ // Receive each chunk of the request body
+ req.addListener('data', function(chunk) {
+ request.body += chunk;
+ });
+
+ // Called when the request completes
+ req.addListener('end', function() {
+ receivedRequest(request, req, res);
+ });
+ });
+
+ that.server.listen(this.port, '127.0.0.1');
+
+ if (this.log) {
+ console.log('Server running at http://127.0.0.1:8125/');
+ }
+ };
+};
+
+// Get the port from the arguments
+port = process.argv.length >= 3 ? process.argv[2] : 8125;
+log = process.argv.length >= 4 ? process.argv[3] : false;
+
+// Start the server
+server = new GuzzleServer(port, log);
+server.start();
|