123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- /*
- * This file is part of the Predis package.
- *
- * (c) Daniele Alessandri <suppakilla@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Predis\Protocol\Text;
- use PredisTestCase;
- /**
- *
- */
- class MultiBulkResponseTest extends PredisTestCase
- {
- /**
- * @group disconnected
- */
- public function testMultiBulk()
- {
- $connection = $this->getMock('Predis\Connection\CompositeConnectionInterface');
- $connection
- ->expects($this->once())
- ->method('getProtocol')
- ->will($this->returnValue(new CompositeProtocolProcessor()));
- $connection
- ->expects($this->at(1))
- ->method('readLine')
- ->will($this->returnValue('$3'));
- $connection
- ->expects($this->at(2))
- ->method('readBuffer')
- ->will($this->returnValue("foo\r\n"));
- $connection
- ->expects($this->at(3))
- ->method('readLine')
- ->will($this->returnValue('$3'));
- $connection
- ->expects($this->at(4))
- ->method('readBuffer')
- ->will($this->returnValue("bar\r\n"));
- $handler = new Handler\MultiBulkResponse();
- $this->assertSame(array('foo', 'bar'), $handler->handle($connection, '2'));
- }
- /**
- * @group disconnected
- */
- public function testNull()
- {
- $connection = $this->getMock('Predis\Connection\CompositeConnectionInterface');
- $connection
- ->expects($this->never())
- ->method('readLine');
- $connection
- ->expects($this->never())
- ->method('readBuffer');
- $handler = new Handler\MultiBulkResponse();
- $this->assertNull($handler->handle($connection, '-1'));
- }
- /**
- * @group disconnected
- * @expectedException \Predis\Protocol\ProtocolException
- * @expectedExceptionMessage Cannot parse 'invalid' as a valid length of a multi-bulk response [tcp://127.0.0.1:6379]
- */
- public function testInvalid()
- {
- $connection = $this->getMockConnectionOfType('Predis\Connection\CompositeConnectionInterface', 'tcp://127.0.0.1:6379');
- $connection
- ->expects($this->never())
- ->method('readLine');
- $connection
- ->expects($this->never())
- ->method('readBuffer');
- $handler = new Handler\MultiBulkResponse();
- $handler->handle($connection, 'invalid');
- }
- }
|