| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Http\Client\Adapter;
- use Cake\Http\Client\Adapter\Stream;
- use Cake\Http\Client\Request;
- use Cake\TestSuite\TestCase;
- /**
- * CakeStreamWrapper class
- */
- class CakeStreamWrapper implements \ArrayAccess
- {
- private $_stream;
- private $_query = [];
- private $_data = [
- 'headers' => [
- 'HTTP/1.1 200 OK',
- ],
- ];
- public function stream_open($path, $mode, $options, &$openedPath)
- {
- if ($path == 'http://throw_exception/') {
- throw new \Exception;
- }
- $query = parse_url($path, PHP_URL_QUERY);
- if ($query) {
- parse_str($query, $this->_query);
- }
- $this->_stream = fopen('php://memory', 'rb+');
- fwrite($this->_stream, str_repeat('x', 20000));
- rewind($this->_stream);
- return true;
- }
- public function stream_close()
- {
- return fclose($this->_stream);
- }
- public function stream_read($count)
- {
- if (isset($this->_query['sleep'])) {
- sleep(1);
- }
- return fread($this->_stream, $count);
- }
- public function stream_eof()
- {
- return feof($this->_stream);
- }
- public function stream_set_option($option, $arg1, $arg2)
- {
- return false;
- }
- public function offsetExists($offset)
- {
- return isset($this->_data[$offset]);
- }
- public function offsetGet($offset)
- {
- return $this->_data[$offset];
- }
- public function offsetSet($offset, $value)
- {
- $this->_data[$offset] = $value;
- }
- public function offsetUnset($offset)
- {
- unset($this->_data[$offset]);
- }
- }
- /**
- * HTTP stream adapter test.
- */
- class StreamTest extends TestCase
- {
- public function setUp()
- {
- parent::setUp();
- $this->stream = $this->getMockBuilder('Cake\Http\Client\Adapter\Stream')
- ->setMethods(['_send'])
- ->getMock();
- stream_wrapper_unregister('http');
- stream_wrapper_register('http', __NAMESPACE__ . '\CakeStreamWrapper');
- }
- public function tearDown()
- {
- parent::tearDown();
- stream_wrapper_restore('http');
- }
- /**
- * Test the send method
- *
- * @return void
- */
- public function testSend()
- {
- $stream = new Stream();
- $request = new Request('http://localhost', 'GET', [
- 'User-Agent' => 'CakePHP TestSuite',
- 'Cookie' => 'testing=value'
- ]);
- try {
- $responses = $stream->send($request, []);
- } catch (\Cake\Core\Exception\Exception $e) {
- $this->markTestSkipped('Could not connect to localhost, skipping');
- }
- $this->assertInstanceOf('Cake\Http\Client\Response', $responses[0]);
- }
- /**
- * Test the send method by using cakephp:// protocol.
- *
- * @return void
- */
- public function testSendByUsingCakephpProtocol()
- {
- $stream = new Stream();
- $request = new Request('http://dummy/');
- $responses = $stream->send($request, []);
- $this->assertInstanceOf('Cake\Http\Client\Response', $responses[0]);
- $this->assertEquals(20000, strlen($responses[0]->body()));
- }
- /**
- * Test stream error_handler cleanup when wrapper throws exception
- *
- * @return void
- */
- public function testSendWrapperException()
- {
- $stream = new Stream();
- $request = new Request('http://throw_exception/');
- $currentHandler = set_error_handler(function () {
- });
- restore_error_handler();
- try {
- $stream->send($request, []);
- } catch (\Exception $e) {
- }
- $newHandler = set_error_handler(function () {
- });
- restore_error_handler();
- $this->assertEquals($currentHandler, $newHandler);
- }
- /**
- * Test building the context headers
- *
- * @return void
- */
- public function testBuildingContextHeader()
- {
- $request = new Request(
- 'http://localhost',
- 'GET',
- [
- 'User-Agent' => 'CakePHP TestSuite',
- 'Content-Type' => 'application/json',
- 'Cookie' => 'a=b; c=do%20it'
- ]
- );
- $options = [
- 'redirect' => 20,
- ];
- $this->stream->send($request, $options);
- $result = $this->stream->contextOptions();
- $expected = [
- 'User-Agent: CakePHP TestSuite',
- 'Content-Type: application/json',
- 'Cookie: a=b; c=do%20it',
- 'Connection: close',
- ];
- $this->assertEquals(implode("\r\n", $expected), $result['header']);
- $this->assertSame(0, $result['max_redirects']);
- $this->assertTrue($result['ignore_errors']);
- }
- /**
- * Test send() + context options with string content.
- *
- * @return void
- */
- public function testSendContextContentString()
- {
- $content = json_encode(['a' => 'b']);
- $request = new Request(
- 'http://localhost',
- 'GET',
- ['Content-Type' => 'application/json'],
- $content
- );
- $options = [
- 'redirect' => 20
- ];
- $this->stream->send($request, $options);
- $result = $this->stream->contextOptions();
- $expected = [
- 'Content-Type: application/json',
- 'Connection: close',
- 'User-Agent: CakePHP',
- ];
- $this->assertEquals(implode("\r\n", $expected), $result['header']);
- $this->assertEquals($content, $result['content']);
- }
- /**
- * Test send() + context options with array content.
- *
- * @return void
- */
- public function testSendContextContentArray()
- {
- $request = new Request(
- 'http://localhost',
- 'GET',
- [
- 'Content-Type' => 'application/json'
- ],
- ['a' => 'my value']
- );
- $this->stream->send($request, []);
- $result = $this->stream->contextOptions();
- $expected = [
- 'Content-Type: application/x-www-form-urlencoded',
- 'Connection: close',
- 'User-Agent: CakePHP',
- ];
- $this->assertStringStartsWith(implode("\r\n", $expected), $result['header']);
- $this->assertContains('a=my+value', $result['content']);
- $this->assertContains('my+value', $result['content']);
- }
- /**
- * Test send() + context options with array content.
- *
- * @return void
- */
- public function testSendContextContentArrayFiles()
- {
- $request = new Request(
- 'http://localhost',
- 'GET',
- ['Content-Type' => 'application/json'],
- ['upload' => fopen(CORE_PATH . 'VERSION.txt', 'r')]
- );
- $this->stream->send($request, []);
- $result = $this->stream->contextOptions();
- $this->assertContains("Content-Type: multipart/form-data", $result['header']);
- $this->assertContains("Connection: close\r\n", $result['header']);
- $this->assertContains("User-Agent: CakePHP", $result['header']);
- $this->assertContains('name="upload"', $result['content']);
- $this->assertContains('filename="VERSION.txt"', $result['content']);
- }
- /**
- * Test send() + context options for SSL.
- *
- * @return void
- */
- public function testSendContextSsl()
- {
- $request = new Request('https://localhost.com/test.html');
- $options = [
- 'ssl_verify_host' => true,
- 'ssl_verify_peer' => true,
- 'ssl_verify_peer_name' => true,
- 'ssl_verify_depth' => 9000,
- 'ssl_allow_self_signed' => false,
- 'proxy' => [
- 'proxy' => '127.0.0.1:8080'
- ]
- ];
- $this->stream->send($request, $options);
- $result = $this->stream->contextOptions();
- $expected = [
- 'peer_name' => 'localhost.com',
- 'verify_peer' => true,
- 'verify_peer_name' => true,
- 'verify_depth' => 9000,
- 'allow_self_signed' => false,
- 'proxy' => '127.0.0.1:8080',
- ];
- foreach ($expected as $k => $v) {
- $this->assertEquals($v, $result[$k]);
- }
- $this->assertIsReadable($result['cafile']);
- }
- /**
- * Test send() + context options for SSL.
- *
- * @return void
- */
- public function testSendContextSslNoVerifyPeerName()
- {
- $request = new Request('https://localhost.com/test.html');
- $options = [
- 'ssl_verify_host' => true,
- 'ssl_verify_peer' => true,
- 'ssl_verify_peer_name' => false,
- 'ssl_verify_depth' => 9000,
- 'ssl_allow_self_signed' => false,
- 'proxy' => [
- 'proxy' => '127.0.0.1:8080'
- ]
- ];
- $this->stream->send($request, $options);
- $result = $this->stream->contextOptions();
- $expected = [
- 'peer_name' => 'localhost.com',
- 'verify_peer' => true,
- 'verify_peer_name' => false,
- 'verify_depth' => 9000,
- 'allow_self_signed' => false,
- 'proxy' => '127.0.0.1:8080',
- ];
- foreach ($expected as $k => $v) {
- $this->assertEquals($v, $result[$k]);
- }
- $this->assertIsReadable($result['cafile']);
- }
- /**
- * The PHP stream API returns ALL the headers for ALL the requests when
- * there are redirects.
- *
- * @return void
- */
- public function testCreateResponseWithRedirects()
- {
- $headers = [
- 'HTTP/1.1 302 Found',
- 'Date: Mon, 31 Dec 2012 16:53:16 GMT',
- 'Server: Apache/2.2.22 (Unix) DAV/2 PHP/5.4.9 mod_ssl/2.2.22 OpenSSL/0.9.8r',
- 'X-Powered-By: PHP/5.4.9',
- 'Location: http://localhost/cake3/tasks/second',
- 'Content-Length: 0',
- 'Connection: close',
- 'Content-Type: text/html; charset=UTF-8',
- 'Set-Cookie: first=value',
- 'HTTP/1.1 302 Found',
- 'Date: Mon, 31 Dec 2012 16:53:16 GMT',
- 'Server: Apache/2.2.22 (Unix) DAV/2 PHP/5.4.9 mod_ssl/2.2.22 OpenSSL/0.9.8r',
- 'X-Powered-By: PHP/5.4.9',
- 'Location: http://localhost/cake3/tasks/third',
- 'Content-Length: 0',
- 'Connection: close',
- 'Content-Type: text/html; charset=UTF-8',
- 'Set-Cookie: second=val',
- 'HTTP/1.1 200 OK',
- 'Date: Mon, 31 Dec 2012 16:53:16 GMT',
- 'Server: Apache/2.2.22 (Unix) DAV/2 PHP/5.4.9 mod_ssl/2.2.22 OpenSSL/0.9.8r',
- 'X-Powered-By: PHP/5.4.9',
- 'Content-Length: 22',
- 'Connection: close',
- 'Content-Type: text/html; charset=UTF-8',
- 'Set-Cookie: third=works',
- ];
- $content = 'This is the third page';
- $responses = $this->stream->createResponses($headers, $content);
- $this->assertCount(3, $responses);
- $this->assertEquals('close', $responses[0]->getHeaderLine('Connection'));
- $this->assertEquals('', (string)$responses[0]->getBody());
- $this->assertEquals('', (string)$responses[1]->getBody());
- $this->assertEquals($content, (string)$responses[2]->getBody());
- $this->assertEquals(302, $responses[0]->getStatusCode());
- $this->assertEquals(302, $responses[1]->getStatusCode());
- $this->assertEquals(200, $responses[2]->getStatusCode());
- $this->assertEquals('value', $responses[0]->getCookie('first'));
- $this->assertNull($responses[0]->getCookie('second'));
- $this->assertNull($responses[0]->getCookie('third'));
- $this->assertNull($responses[1]->getCookie('first'));
- $this->assertEquals('val', $responses[1]->getCookie('second'));
- $this->assertNull($responses[1]->getCookie('third'));
- $this->assertNull($responses[2]->getCookie('first'));
- $this->assertNull($responses[2]->getCookie('second'));
- $this->assertEquals('works', $responses[2]->getCookie('third'));
- }
- /**
- * Test that no exception is radied when not timed out.
- *
- * @return void
- */
- public function testKeepDeadline()
- {
- $request = new Request('http://dummy/?sleep');
- $options = [
- 'timeout' => 5,
- ];
- $t = microtime(true);
- $stream = new Stream();
- $stream->send($request, $options);
- $this->assertLessThan(5, microtime(true) - $t);
- }
- /**
- * Test that an exception is raised when timed out.
- *
- * @return void
- */
- public function testMissDeadline()
- {
- $this->expectException(\Cake\Http\Exception\HttpException::class);
- $this->expectExceptionMessage('Connection timed out http://dummy/?sleep');
- $request = new Request('http://dummy/?sleep');
- $options = [
- 'timeout' => 2,
- ];
- $stream = new Stream();
- $stream->send($request, $options);
- }
- }
|