Files
predis/tests/Predis/Pipeline/FireAndForgetTest.php
T
Daniele Alessandri 4bf0ee4c6a Rename ConnectionInterface::writeCommand() to writeRequest().
This name is more consistent with its counterpart, readResponse().
2013-12-02 11:08:14 +01:00

69 lines
1.7 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\Pipeline;
use SplQueue;
use PredisTestCase;
use Predis\Client;
use Predis\Profile;
/**
*
*/
class FireAndForgetTest extends PredisTestCase
{
/**
* @group disconnected
*/
public function testPipelineWithSingleConnection()
{
$profile = Profile\Factory::getDefault();
$connection = $this->getMock('Predis\Connection\SingleConnectionInterface');
$connection->expects($this->exactly(3))->method('writeRequest');
$connection->expects($this->never())->method('readResponse');
$pipeline = new FireAndForget(new Client($connection));
$pipeline->ping();
$pipeline->ping();
$pipeline->ping();
$this->assertEmpty($pipeline->execute());
}
/**
* @group disconnected
*/
public function testSwitchesToMasterWithReplicationConnection()
{
$profile = Profile\Factory::getDefault();
$connection = $this->getMock('Predis\Connection\ReplicationConnectionInterface');
$connection->expects($this->once())
->method('switchTo')
->with('master');
$connection->expects($this->exactly(3))
->method('writeRequest');
$connection->expects($this->never())
->method('readResponse');
$pipeline = new FireAndForget(new Client($connection));
$pipeline->ping();
$pipeline->ping();
$pipeline->ping();
$this->assertEmpty($pipeline->execute());
}
}