123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?php
- /**
- * Lithium: the most rad php framework
- *
- * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
- * @license http://opensource.org/licenses/bsd-license.php The BSD License
- */
- namespace lithium\tests\cases\net\socket;
- use lithium\net\http\Request;
- use lithium\net\http\Response;
- use lithium\net\socket\Stream;
- class StreamTest extends \lithium\test\Unit {
- protected $_testConfig = array(
- 'persistent' => false,
- 'scheme' => 'http',
- 'host' => 'google.com',
- 'port' => 80,
- 'timeout' => 2,
- 'classes' => array('request' => 'lithium\net\http\Request')
- );
- public function skip() {
- $message = "No internet connection established.";
- $this->skipIf(!$this->_hasNetwork($this->_testConfig), $message);
- }
- public function testAllMethodsNoConnection() {
- $stream = new Stream(array('scheme' => null));
- $this->assertFalse($stream->open());
- $this->assertTrue($stream->close());
- $this->assertFalse($stream->timeout(2));
- $this->assertFalse($stream->encoding('UTF-8'));
- $this->assertFalse($stream->write(null));
- $this->assertFalse($stream->read());
- $this->assertTrue($stream->eof());
- $this->assertNull($stream->send(new Request()));
- }
- public function testOpen() {
- $stream = new Stream($this->_testConfig);
- $result = $stream->open();
- $this->assertTrue($result);
- $result = $stream->resource();
- $this->assertTrue(is_resource($result));
- }
- public function testClose() {
- $stream = new Stream($this->_testConfig);
- $result = $stream->open();
- $this->assertTrue($result);
- $result = $stream->close();
- $this->assertTrue($result);
- $result = $stream->resource();
- $this->assertFalse(is_resource($result));
- }
- public function testTimeout() {
- $stream = new Stream($this->_testConfig);
- $result = $stream->open();
- $stream->timeout(10);
- $result = $stream->resource();
- $this->assertTrue(is_resource($result));
- }
- public function testEncoding() {
- $stream = new Stream($this->_testConfig);
- $result = $stream->open();
- $stream->encoding('UTF-8');
- $result = $stream->resource();
- $this->assertTrue(is_resource($result));
- $stream = new Stream($this->_testConfig + array('encoding' => 'UTF-8'));
- $result = $stream->open();
- $result = $stream->resource();
- $this->assertTrue(is_resource($result));
- }
- public function testWriteAndRead() {
- $stream = new Stream($this->_testConfig);
- $this->assertTrue(is_resource($stream->open()));
- $this->assertTrue(is_resource($stream->resource()));
- $result = $stream->write();
- $this->assertEqual(83, $result);
- $this->assertPattern("/^HTTP/", (string) $stream->read());
- }
- public function testSendWithNull() {
- $stream = new Stream($this->_testConfig);
- $this->assertTrue(is_resource($stream->open()));
- $result = $stream->send(
- new Request($this->_testConfig),
- array('response' => 'lithium\net\http\Response')
- );
- $this->assertTrue($result instanceof Response);
- $this->assertPattern("/^HTTP/", (string) $result);
- $this->assertTrue($stream->eof());
- }
- public function testSendWithArray() {
- $stream = new Stream($this->_testConfig);
- $this->assertTrue(is_resource($stream->open()));
- $result = $stream->send($this->_testConfig,
- array('response' => 'lithium\net\http\Response')
- );
- $this->assertTrue($result instanceof Response);
- $this->assertPattern("/^HTTP/", (string) $result);
- $this->assertTrue($stream->eof());
- }
- public function testSendWithObject() {
- $stream = new Stream($this->_testConfig);
- $this->assertTrue(is_resource($stream->open()));
- $result = $stream->send(
- new Request($this->_testConfig),
- array('response' => 'lithium\net\http\Response')
- );
- $this->assertTrue($result instanceof Response);
- $this->assertPattern("/^HTTP/", (string) $result);
- $this->assertTrue($stream->eof());
- }
- }
- ?>
|