mirror of
https://github.com/predis/predis.git
synced 2026-08-26 15:29:55 +00:00
b253bdc41e
We now have a base test case class for Predis (namely PredisTestCase) grouping various commonly used utility methods shared by all of the tests in the suite, greatly improving reusability.
121 lines
3.4 KiB
PHP
121 lines
3.4 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 ComposableProtocolProcessorTest extends PredisTestCase
|
|
{
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testConstructor()
|
|
{
|
|
$protocol = new ComposableProtocolProcessor();
|
|
|
|
$this->assertInstanceOf(
|
|
'Predis\Protocol\Text\RequestSerializer', $protocol->getRequestSerializer()
|
|
);
|
|
$this->assertInstanceOf(
|
|
'Predis\Protocol\Text\ResponseReader', $protocol->getResponseReader()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testConstructorWithArguments()
|
|
{
|
|
$serializer = $this->getMock('Predis\Protocol\RequestSerializerInterface');
|
|
$reader = $this->getMock('Predis\Protocol\ResponseReaderInterface');
|
|
|
|
$protocol = new ComposableProtocolProcessor($serializer, $reader);
|
|
|
|
$this->assertSame($serializer, $protocol->getRequestSerializer());
|
|
$this->assertSame($reader, $protocol->getResponseReader());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testCustomRequestSerializer()
|
|
{
|
|
$serializer = $this->getMock('Predis\Protocol\RequestSerializerInterface');
|
|
|
|
$protocol = new ComposableProtocolProcessor();
|
|
$protocol->setRequestSerializer($serializer);
|
|
|
|
$this->assertSame($serializer, $protocol->getRequestSerializer());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testCustomResponseReader()
|
|
{
|
|
$reader = $this->getMock('Predis\Protocol\ResponseReaderInterface');
|
|
|
|
$protocol = new ComposableProtocolProcessor();
|
|
$protocol->setResponseReader($reader);
|
|
|
|
$this->assertSame($reader, $protocol->getResponseReader());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testConnectionWrite()
|
|
{
|
|
$serialized = "*1\r\n$4\r\nPING\r\n";
|
|
|
|
$command = $this->getMock('Predis\Command\CommandInterface');
|
|
$connection = $this->getMock('Predis\Connection\ComposableConnectionInterface');
|
|
$serializer = $this->getMock('Predis\Protocol\RequestSerializerInterface');
|
|
|
|
$protocol = new ComposableProtocolProcessor($serializer);
|
|
|
|
$connection->expects($this->once())
|
|
->method('writeBytes')
|
|
->with($this->equalTo($serialized));
|
|
|
|
$serializer->expects($this->once())
|
|
->method('serialize')
|
|
->with($command)
|
|
->will($this->returnValue($serialized));
|
|
|
|
$protocol->write($connection, $command);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testConnectionRead()
|
|
{
|
|
$serialized = "*1\r\n$4\r\nPING\r\n";
|
|
|
|
$connection = $this->getMock('Predis\Connection\ComposableConnectionInterface');
|
|
$reader = $this->getMock('Predis\Protocol\ResponseReaderInterface');
|
|
|
|
$protocol = new ComposableProtocolProcessor(null, $reader);
|
|
|
|
$reader->expects($this->once())
|
|
->method('read')
|
|
->with($connection)
|
|
->will($this->returnValue('bulk'));
|
|
|
|
$this->assertSame('bulk', $protocol->read($connection));
|
|
}
|
|
}
|