mirror of
https://github.com/predis/predis.git
synced 2026-08-24 20:29:42 +00:00
a8edc02eb6
All of the response interface, classes and exceptions have been moved into this namespace.
67 lines
1.8 KiB
PHP
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\Response\ResponseQueued;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class StatusResponseTest extends StandardTestCase
|
|
{
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testOk()
|
|
{
|
|
$handler = new Handler\StatusResponse();
|
|
|
|
$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 Handler\StatusResponse();
|
|
|
|
$connection = $this->getMock('Predis\Connection\ComposableConnectionInterface');
|
|
|
|
$connection->expects($this->never())->method('readLine');
|
|
$connection->expects($this->never())->method('readBytes');
|
|
|
|
$this->assertInstanceOf('Predis\Response\ResponseQueued', $handler->handle($connection, 'QUEUED'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testPlainString()
|
|
{
|
|
$handler = new Handler\StatusResponse();
|
|
|
|
$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'));
|
|
}
|
|
}
|