123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?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'));
- }
- }
|