Files
predis/tests/Predis/Protocol/Text/Handler/StreamableMultiBulkResponseTest.php
T
2016-06-10 11:08:26 +02:00

59 lines
1.6 KiB
PHP

<?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 StreamableMultiBulkResponseTest extends PredisTestCase
{
/**
* @group disconnected
*/
public function testOk()
{
$connection = $this->getMock('Predis\Connection\CompositeConnectionInterface');
$connection
->expects($this->never())
->method('readLine');
$connection
->expects($this->never())
->method('readBuffer');
$handler = new Handler\StreamableMultiBulkResponse();
$this->assertInstanceOf('Predis\Response\Iterator\MultiBulk', $handler->handle($connection, '1'));
}
/**
* @group disconnected
* @expectedException \Predis\Protocol\ProtocolException
* @expectedExceptionMessage Cannot parse 'invalid' as a valid length for 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\StreamableMultiBulkResponse();
$handler->handle($connection, 'invalid');
}
}