Files
predis/tests/Predis/Protocol/Text/ResponseStatusHandlerTest.php
T
Daniele Alessandri 6e76ea6c7e Add tests for classes in the Predis\Protocol\Text namespace.
This was the only namespace containing classes with no tests.
2012-08-02 21:42:11 +02:00

67 lines
1.8 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 \PHPUnit_Framework_TestCase as StandardTestCase;
use Predis\ResponseQueued;
/**
*
*/
class ResponseStatusHandlerTest extends StandardTestCase
{
/**
* @group disconnected
*/
public function testOk()
{
$handler = new ResponseStatusHandler();
$connection = $this->getMock('Predis\Connection\ComposableConnectionInterface');
$connection->expects($this->never())->method('readLine');
$connection->expects($this->never())->method('readBytes');
$this->assertTrue($handler->handle($connection, 'OK'));
}
/**
* @group disconnected
*/
public function testQueued()
{
$handler = new ResponseStatusHandler();
$connection = $this->getMock('Predis\Connection\ComposableConnectionInterface');
$connection->expects($this->never())->method('readLine');
$connection->expects($this->never())->method('readBytes');
$this->assertInstanceOf('Predis\ResponseQueued', $handler->handle($connection, 'QUEUED'));
}
/**
* @group disconnected
*/
public function testPlainString()
{
$handler = new ResponseStatusHandler();
$connection = $this->getMock('Predis\Connection\ComposableConnectionInterface');
$connection->expects($this->never())->method('readLine');
$connection->expects($this->never())->method('readBytes');
$this->assertSame('Background saving started', $handler->handle($connection, 'Background saving started'));
}
}