mirror of
https://github.com/predis/predis.git
synced 2026-08-24 16:39:32 +00:00
1443 lines
44 KiB
PHP
1443 lines
44 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) 2009-2020 Daniele Alessandri
|
|
* (c) 2021-2023 Till Krüss
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Predis\Connection\Replication;
|
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use Predis\Command;
|
|
use Predis\Connection;
|
|
use Predis\Replication\ReplicationStrategy;
|
|
use Predis\Response;
|
|
use PredisTestCase;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class MasterSlaveReplicationTest extends PredisTestCase
|
|
{
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAddingConnectionsToReplication(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave2 = $this->getMockConnection('tcp://127.0.0.1:6381?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
$replication->add($slave2);
|
|
|
|
$this->assertSame($master, $replication->getConnectionById('127.0.0.1:6379'));
|
|
$this->assertSame($slave1, $replication->getConnectionById('127.0.0.1:6380'));
|
|
$this->assertSame($slave2, $replication->getConnectionById('127.0.0.1:6381'));
|
|
|
|
$this->assertSame($master, $replication->getMaster());
|
|
$this->assertSame([$slave1, $slave2], $replication->getSlaves());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAddingConnectionsWithoutRoleParameterDefaultsToSlaveRole(): void
|
|
{
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380');
|
|
$slave2 = $this->getMockConnection('tcp://127.0.0.1:6381');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($slave1);
|
|
$replication->add($slave2);
|
|
|
|
$this->assertSame([$slave1, $slave2], $replication->getSlaves());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testRemovingConnectionsFromReplication(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave2 = $this->getMockConnection('tcp://127.0.0.1:6381?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$this->assertTrue($replication->remove($slave1));
|
|
$this->assertFalse($replication->remove($slave2));
|
|
|
|
$this->assertSame($master, $replication->getMaster());
|
|
$this->assertSame([], $replication->getSlaves());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetConnectionByIdOnEmptyReplication(): void
|
|
{
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$this->assertNull($replication->getConnectionById('127.0.0.1:6379'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetConnectionByAlias(): void
|
|
{
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6379?alias=aliased');
|
|
$slave2 = $this->getMockConnection('tcp://127.0.0.1:6380');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($slave1);
|
|
$replication->add($slave2);
|
|
|
|
$this->assertSame($slave1, $replication->getConnectionByAlias('aliased'));
|
|
$this->assertNull($replication->getConnectionByAlias('127.0.0.1:6380'));
|
|
$this->assertNull($replication->getConnectionByAlias('unkswn'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetConnectionByAliasOnEmptyReplication(): void
|
|
{
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$this->assertNull($replication->getConnectionByAlias('unknown'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetConnectionByRole(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$this->assertSame($master, $replication->getConnectionByRole('master'));
|
|
$this->assertSame($slave1, $replication->getConnectionByRole('slave'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetConnectionByRoleOnEmptyReplication(): void
|
|
{
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$this->assertNull($replication->getConnectionByRole('master'));
|
|
$this->assertNull($replication->getConnectionByRole('slave'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetConnectionByRoleUnknown(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$this->assertNull($replication->getConnectionByRole('unknown'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testThrowsExceptionOnEmptyReplication(): void
|
|
{
|
|
$this->expectException('Predis\ClientException');
|
|
$this->expectExceptionMessage('No available connection for replication');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->connect();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testConnectsToOneOfSlaves(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->never())
|
|
->method('connect');
|
|
|
|
$slave = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave
|
|
->expects($this->once())
|
|
->method('connect');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
$replication->add($slave);
|
|
|
|
$replication->connect();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testConnectsToMasterOnMissingSlaves(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
|
|
$replication->connect();
|
|
$this->assertSame($master, $replication->getCurrent());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testIsConnectedReturnsTrueIfAtLeastOneConnectionIsOpen(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->never())
|
|
->method('isConnected')
|
|
->willReturn(false);
|
|
|
|
$slave = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave
|
|
->expects($this->once())
|
|
->method('isConnected')
|
|
->willReturn(true);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
$replication->add($slave);
|
|
$replication->connect();
|
|
|
|
$this->assertTrue($replication->isConnected());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testIsConnectedReturnsFalseIfAllConnectionsAreClosed(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->any())
|
|
->method('isConnected')
|
|
->willReturn(false);
|
|
|
|
$slave = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave
|
|
->expects($this->any())
|
|
->method('isConnected')
|
|
->willReturn(false);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
$replication->add($slave);
|
|
|
|
$this->assertFalse($replication->isConnected());
|
|
|
|
$replication->connect();
|
|
$replication->disconnect();
|
|
|
|
$this->assertFalse($replication->isConnected());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDisconnectForcesCurrentConnectionToDisconnect(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('disconnect');
|
|
|
|
$slave = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave
|
|
->expects($this->once())
|
|
->method('disconnect');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
$replication->add($slave);
|
|
|
|
$replication->disconnect();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testCanSwitchConnection(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$this->assertNull($replication->getCurrent());
|
|
|
|
$replication->switchTo($master);
|
|
$this->assertSame($master, $replication->getCurrent());
|
|
|
|
$replication->switchTo($slave1);
|
|
$this->assertSame($slave1, $replication->getCurrent());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testThrowsErrorWhenSwitchingToConnectionNotInPool(): void
|
|
{
|
|
$this->expectException('InvalidArgumentException');
|
|
$this->expectExceptionMessage('Invalid connection or connection not found.');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($this->getMockConnection('tcp://127.0.0.1:6379?role=master'));
|
|
$replication->add($this->getMockConnection('tcp://127.0.0.1:6380?role=slave'));
|
|
|
|
$unknown = $this->getMockConnection('tcp://127.0.0.1:6381');
|
|
|
|
$replication->switchTo($unknown);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testCanSwitchConnectionByInstance(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$this->assertNull($replication->getCurrent());
|
|
|
|
$replication->switchTo($master);
|
|
$this->assertSame($master, $replication->getCurrent());
|
|
|
|
$replication->switchTo($slave1);
|
|
$this->assertSame($slave1, $replication->getCurrent());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testThrowsErrorWhenSwitchingToUnknownConnectionByInstance(): void
|
|
{
|
|
$this->expectException('InvalidArgumentException');
|
|
$this->expectExceptionMessage('Invalid connection or connection not found.');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($this->getMockConnection('tcp://127.0.0.1:6379?role=master'));
|
|
$replication->add($this->getMockConnection('tcp://127.0.0.1:6380?role=slave'));
|
|
|
|
$slave2 = $this->getMockConnection('tcp://127.0.0.1:6381');
|
|
|
|
$replication->switchTo($slave2);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testCanSwitchToMaster(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave2 = $this->getMockConnection('tcp://127.0.0.1:6381?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
$replication->add($slave2);
|
|
|
|
$this->assertNull($replication->getCurrent());
|
|
|
|
$replication->switchToMaster();
|
|
$this->assertSame($master, $replication->getCurrent());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testThrowsErrorOnSwitchToMasterWithNoMasterDefined(): void
|
|
{
|
|
$this->expectException('InvalidArgumentException');
|
|
$this->expectExceptionMessage('Invalid connection or connection not found.');
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($slave1);
|
|
|
|
$replication->switchToMaster();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*
|
|
* @todo We should find a way to test that the slave is indeed randomly selected.
|
|
*/
|
|
public function testCanSwitchToRandomSlave(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$this->assertNull($replication->getCurrent());
|
|
|
|
$replication->switchToSlave();
|
|
$this->assertSame($slave1, $replication->getCurrent());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testThrowsErrorOnSwitchToRandomSlaveWithNoSlavesDefined(): void
|
|
{
|
|
$this->expectException('InvalidArgumentException');
|
|
$this->expectExceptionMessage('Invalid connection or connection not found.');
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
|
|
$replication->switchToSlave();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testUsesSlavesOnReadOnlyCommands(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$cmd = $commands->create('exists', ['foo']);
|
|
$this->assertSame($slave1, $replication->getConnectionByCommand($cmd));
|
|
|
|
$cmd = $commands->create('get', ['foo']);
|
|
$this->assertSame($slave1, $replication->getConnectionByCommand($cmd));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testUsesMasterOnWriteRequests(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$cmd = $commands->create('set', ['foo', 'bar']);
|
|
$this->assertSame($master, $replication->getConnectionByCommand($cmd));
|
|
|
|
$cmd = $commands->create('get', ['foo']);
|
|
$this->assertSame($master, $replication->getConnectionByCommand($cmd));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testUsesMasterOnReadRequestsWhenNoSlavesAvailable(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
|
|
$cmd = $commands->create('exists', ['foo']);
|
|
$this->assertSame($master, $replication->getConnectionByCommand($cmd));
|
|
|
|
$cmd = $commands->create('set', ['foo', 'bar']);
|
|
$this->assertSame($master, $replication->getConnectionByCommand($cmd));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testSwitchesFromSlaveToMasterOnWriteRequests(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave1');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$cmd = $commands->create('exists', ['foo']);
|
|
$this->assertSame($slave1, $replication->getConnectionByCommand($cmd));
|
|
|
|
$cmd = $commands->create('set', ['foo', 'bar']);
|
|
$this->assertSame($master, $replication->getConnectionByCommand($cmd));
|
|
|
|
$cmd = $commands->create('exists', ['foo']);
|
|
$this->assertSame($master, $replication->getConnectionByCommand($cmd));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testWritesCommandToCorrectConnection(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
$cmdExists = $commands->create('exists', ['foo']);
|
|
$cmdSet = $commands->create('set', ['foo', 'bar']);
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('writeRequest')
|
|
->with($cmdSet);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('writeRequest')
|
|
->with($cmdExists);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$replication->writeRequest($cmdExists);
|
|
$replication->writeRequest($cmdSet);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testReadsCommandFromCorrectConnection(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
$cmdExists = $commands->create('exists', ['foo']);
|
|
$cmdSet = $commands->create('set', ['foo', 'bar']);
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('readResponse')
|
|
->with($cmdSet);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('readResponse')
|
|
->with($cmdExists);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$replication->readResponse($cmdExists);
|
|
$replication->readResponse($cmdSet);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testExecutesCommandOnCorrectConnection(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
$cmdExists = $commands->create('exists', ['foo']);
|
|
$cmdSet = $commands->create('set', ['foo', 'bar']);
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdSet);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdExists);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$replication->executeCommand($cmdExists);
|
|
$replication->executeCommand($cmdSet);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testWatchTriggersSwitchToMasterConnection(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
$cmdWatch = $commands->create('watch', ['foo']);
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdWatch);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->never())
|
|
->method('executeCommand');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$replication->executeCommand($cmdWatch);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testMultiTriggersSwitchToMasterConnection(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
$cmdMulti = $commands->create('multi');
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdMulti);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->never())
|
|
->method('executeCommand');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$replication->executeCommand($cmdMulti);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testEvalTriggersSwitchToMasterConnection(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
$cmdEval = $commands->create('eval', ["return redis.call('info')"]);
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdEval);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->never())
|
|
->method('executeCommand');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$replication->executeCommand($cmdEval);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDiscardsUnreachableSlaveAndExecutesReadOnlyCommandOnNextSlave(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
$cmdExists = $commands->create('exists', ['key']);
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->never())
|
|
->method('executeCommand');
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave&role=slave');
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdExists)
|
|
->willThrowException(
|
|
new Connection\ConnectionException($slave1)
|
|
);
|
|
|
|
$slave2 = $this->getMockConnection('tcp://127.0.0.1:6381?role=slave&alias=slave2');
|
|
$slave2
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdExists)
|
|
->willReturn(1);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
$replication->add($slave2);
|
|
|
|
$replication->switchTo($slave1);
|
|
|
|
$response = $replication->executeCommand($cmdExists);
|
|
|
|
$this->assertSame(1, $response);
|
|
$this->assertNull($replication->getConnectionByAlias('slave1'));
|
|
$this->assertSame($slave2, $replication->getConnectionByAlias('slave2'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDiscardsUnreachableSlavesAndExecutesReadOnlyCommandOnMaster(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
$cmdExists = $commands->create('exists', ['key']);
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdExists)
|
|
->willReturn(1);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdExists)
|
|
->willThrowException(new Connection\ConnectionException($slave1));
|
|
|
|
$slave2 = $this->getMockConnection('tcp://127.0.0.1:6381?role=slave');
|
|
$slave2
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdExists)
|
|
->willThrowException(
|
|
new Connection\ConnectionException($slave2)
|
|
);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
$replication->add($slave2);
|
|
|
|
$replication->switchTo($slave1);
|
|
|
|
$response = $replication->executeCommand($cmdExists);
|
|
|
|
$this->assertSame(1, $response);
|
|
$this->assertNull($replication->getConnectionById('127.0.0.1:6380'));
|
|
$this->assertNull($replication->getConnectionById('127.0.0.1:6381'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testSucceedOnReadOnlyCommandAndNoConnectionSetAsMaster(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
$cmdExists = $commands->create('exists', ['key']);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6379?role=slave');
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdExists)
|
|
->willReturn(1);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($slave1);
|
|
|
|
$response = $replication->executeCommand($cmdExists);
|
|
|
|
$this->assertSame(1, $response);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testFailsOnWriteCommandAndNoConnectionSetAsMaster(): void
|
|
{
|
|
$this->expectException('Predis\Replication\MissingMasterException');
|
|
$this->expectExceptionMessage('No master server available for replication');
|
|
|
|
$commands = $this->getCommandFactory();
|
|
$cmdSet = $commands->create('set', ['key', 'value']);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6379?role=slave');
|
|
$slave1
|
|
->expects($this->never())
|
|
->method('executeCommand');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($slave1);
|
|
|
|
$replication->executeCommand($cmdSet);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDiscardsSlaveWhenRespondsLOADINGAndExecutesReadOnlyCommandOnNextSlave(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master->expects($this->never())
|
|
->method('executeCommand');
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($this->isRedisCommand(
|
|
'EXISTS', ['key']
|
|
))
|
|
->willReturn(
|
|
new Response\Error('LOADING')
|
|
);
|
|
|
|
$slave2 = $this->getMockConnection('tcp://127.0.0.1:6381?role=slave');
|
|
$slave2
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($this->isRedisCommand(
|
|
'EXISTS', ['key']
|
|
))
|
|
->willReturn(1);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
$replication->add($slave2);
|
|
|
|
$replication->switchTo($slave1);
|
|
|
|
$response = $replication->executeCommand(
|
|
Command\RawCommand::create('exists', 'key')
|
|
);
|
|
|
|
$this->assertSame(1, $response);
|
|
$this->assertNull($replication->getConnectionById('127.0.0.1:6380'));
|
|
$this->assertSame($slave2, $replication->getConnectionById('127.0.0.1:6381'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testFailsOnUnreachableMaster(): void
|
|
{
|
|
$this->expectException('Predis\Connection\ConnectionException');
|
|
|
|
$commands = $this->getCommandFactory();
|
|
$cmdSet = $commands->create('set', ['key', 'value']);
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdSet)
|
|
->willThrowException(
|
|
new Connection\ConnectionException($master)
|
|
);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->never())
|
|
->method('executeCommand');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$replication->executeCommand($cmdSet);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testThrowsExceptionOnNonSupportedCommand(): void
|
|
{
|
|
$this->expectException('Predis\NotSupportedException');
|
|
$this->expectExceptionMessage("The command 'INFO' is not allowed in replication mode.");
|
|
|
|
$cmd = $this->getCommandFactory()->create('info');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($this->getMockConnection('tcp://127.0.0.1:6379?role=master'));
|
|
$replication->add($this->getMockConnection('tcp://127.0.0.1:6380?role=slave'));
|
|
|
|
$replication->getConnectionByCommand($cmd);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testCanOverrideReadOnlyFlagForCommands(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
$cmdSet = $commands->create('set', ['foo', 'bar']);
|
|
$cmdGet = $commands->create('get', ['foo']);
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdGet);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdSet);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$replication->getReplicationStrategy()->setCommandReadOnly($cmdSet->getId(), true);
|
|
$replication->getReplicationStrategy()->setCommandReadOnly($cmdGet->getId(), false);
|
|
|
|
$replication->executeCommand($cmdSet);
|
|
$replication->executeCommand($cmdGet);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAcceptsCallableToOverrideReadOnlyFlagForCommands(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
$cmdExistsFoo = $commands->create('exists', ['foo']);
|
|
$cmdExistsBar = $commands->create('exists', ['bar']);
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdExistsBar);
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdExistsFoo);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$replication
|
|
->getReplicationStrategy()
|
|
->setCommandReadOnly('exists', function ($cmd) {
|
|
list($arg1) = $cmd->getArguments();
|
|
|
|
return $arg1 === 'foo';
|
|
});
|
|
|
|
$replication->executeCommand($cmdExistsFoo);
|
|
$replication->executeCommand($cmdExistsBar);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testCanSetReadOnlyFlagForEvalScripts(): void
|
|
{
|
|
$commands = $this->getCommandFactory();
|
|
|
|
$cmdEval = $commands->create('eval', [$script = "return redis.call('info');"]);
|
|
$cmdEvalSha = $commands->create('evalsha', [$scriptSHA1 = sha1($script)]);
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$master
|
|
->expects($this->never())
|
|
->method('executeCommand');
|
|
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
$slave1
|
|
->expects($this->exactly(2))
|
|
->method('executeCommand')
|
|
->withConsecutive(
|
|
[$this->isRedisCommand($cmdEval)],
|
|
[$this->isRedisCommand($cmdEvalSha)]
|
|
);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$replication
|
|
->getReplicationStrategy()
|
|
->setScriptReadOnly($script);
|
|
|
|
$replication->executeCommand($cmdEval);
|
|
$replication->executeCommand($cmdEvalSha);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDiscoveryRequiresConnectionFactory(): void
|
|
{
|
|
$this->expectException('Predis\ClientException');
|
|
$this->expectExceptionMessage('Discovery requires a connection factory');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($this->getMockConnection('tcp://127.0.0.1:6379?role=master'));
|
|
|
|
$replication->discover();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDiscoversReplicationConfigurationFromMaster(): void
|
|
{
|
|
$connFactory = new Connection\Factory();
|
|
$cmdInfo = Command\RawCommand::create('INFO', 'REPLICATION');
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6381?role=master');
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with(
|
|
$this->isRedisCommand($cmdInfo)
|
|
)
|
|
->willReturn('
|
|
# Replication
|
|
role:master
|
|
connected_slaves:2
|
|
slave0:ip=127.0.0.1,port=6382,state=online,offset=12979,lag=0
|
|
slave1:ip=127.0.0.1,port=6383,state=online,offset=12979,lag=1
|
|
master_repl_offset:12979
|
|
repl_backlog_active:1
|
|
repl_backlog_size:1048576
|
|
repl_backlog_first_byte_offset:2
|
|
repl_backlog_histlen:12978
|
|
'
|
|
);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->setConnectionFactory($connFactory);
|
|
|
|
$replication->add($master);
|
|
|
|
$replication->discover();
|
|
|
|
$this->assertCount(2, $slaves = $replication->getSlaves());
|
|
$this->assertContainsOnlyInstancesOf('Predis\Connection\ConnectionInterface', $slaves);
|
|
|
|
$this->assertSame('127.0.0.1:6381', (string) $replication->getMaster());
|
|
$this->assertSame('127.0.0.1:6382', (string) $slaves[0]);
|
|
$this->assertSame('127.0.0.1:6383', (string) $slaves[1]);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDiscoversReplicationConfigurationFromSlave(): void
|
|
{
|
|
$cmdInfo = $command = Command\RawCommand::create('INFO', 'REPLICATION');
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6381?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6382?role=slave');
|
|
$slave2 = $this->getMockConnection('tcp://127.0.0.1:6383?role=slave');
|
|
|
|
/** @var Connection\FactoryInterface|MockObject */
|
|
$connFactory = $this->getMockBuilder('Predis\Connection\FactoryInterface')->getMock();
|
|
$connFactory
|
|
->expects($this->exactly(3))
|
|
->method('create')
|
|
->withConsecutive(
|
|
# Connection to master node
|
|
[
|
|
[
|
|
'host' => '127.0.0.1',
|
|
'port' => '6381',
|
|
'role' => 'master',
|
|
],
|
|
],
|
|
|
|
# Connection to first slave
|
|
[
|
|
[
|
|
'host' => '127.0.0.1',
|
|
'port' => '6382',
|
|
'role' => 'slave',
|
|
],
|
|
],
|
|
|
|
# Connection to second slave
|
|
[
|
|
[
|
|
'host' => '127.0.0.1',
|
|
'port' => '6383',
|
|
'role' => 'slave',
|
|
],
|
|
]
|
|
)
|
|
->willReturnOnConsecutiveCalls(
|
|
$master,
|
|
$slave1,
|
|
$slave2
|
|
);
|
|
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdInfo)
|
|
->willReturn('
|
|
# Replication
|
|
role:slave
|
|
master_host:127.0.0.1
|
|
master_port:6381
|
|
master_link_status:up
|
|
master_last_io_seconds_ago:8
|
|
master_sync_in_progress:0
|
|
slave_repl_offset:17715532
|
|
slave_priority:100
|
|
slave_read_only:1
|
|
connected_slaves:0
|
|
master_repl_offset:0
|
|
repl_backlog_active:0
|
|
repl_backlog_size:1048576
|
|
repl_backlog_first_byte_offset:0
|
|
repl_backlog_histlen:0
|
|
'
|
|
);
|
|
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdInfo)
|
|
->willReturn('
|
|
# Replication
|
|
role:master
|
|
connected_slaves:2
|
|
slave0:ip=127.0.0.1,port=6382,state=online,offset=12979,lag=0
|
|
slave1:ip=127.0.0.1,port=6383,state=online,offset=12979,lag=1
|
|
master_repl_offset:12979
|
|
repl_backlog_active:1
|
|
repl_backlog_size:1048576
|
|
repl_backlog_first_byte_offset:2
|
|
repl_backlog_histlen:12978
|
|
'
|
|
);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->setConnectionFactory($connFactory);
|
|
|
|
$replication->add($slave1);
|
|
|
|
$replication->discover();
|
|
|
|
$this->assertCount(2, $slaves = $replication->getSlaves());
|
|
$this->assertContainsOnlyInstancesOf('Predis\Connection\ConnectionInterface', $slaves);
|
|
|
|
$this->assertSame('127.0.0.1:6381', (string) $replication->getMaster());
|
|
$this->assertSame('127.0.0.1:6382', (string) $slaves[0]);
|
|
$this->assertSame('127.0.0.1:6383', (string) $slaves[1]);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDiscoversReplicationConfigurationFromSlaveIfMasterFails(): void
|
|
{
|
|
$cmdInfo = $command = Command\RawCommand::create('INFO', 'REPLICATION');
|
|
|
|
$masterKO = $this->getMockConnection('tcp://127.0.0.1:7381?role=master');
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6381?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6382?role=slave');
|
|
$slave2 = $this->getMockConnection('tcp://127.0.0.1:6383?role=slave');
|
|
|
|
/** @var Connection\FactoryInterface|MockObject */
|
|
$connFactory = $this->getMockBuilder('Predis\Connection\FactoryInterface')->getMock();
|
|
$connFactory
|
|
->expects($this->exactly(3))
|
|
->method('create')
|
|
->withConsecutive(
|
|
# Connection to master node
|
|
[
|
|
[
|
|
'host' => '127.0.0.1',
|
|
'port' => '6381',
|
|
'role' => 'master',
|
|
],
|
|
],
|
|
|
|
# Connection to first slave
|
|
[
|
|
[
|
|
'host' => '127.0.0.1',
|
|
'port' => '6382',
|
|
'role' => 'slave',
|
|
],
|
|
],
|
|
|
|
# Connection to second slave
|
|
[
|
|
[
|
|
'host' => '127.0.0.1',
|
|
'port' => '6383',
|
|
'role' => 'slave',
|
|
],
|
|
]
|
|
)
|
|
->willReturnOnConsecutiveCalls(
|
|
$master,
|
|
$slave1,
|
|
$slave2
|
|
);
|
|
|
|
$masterKO
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with(
|
|
$this->isRedisCommand($cmdInfo)
|
|
)
|
|
->willThrowException(
|
|
new Connection\ConnectionException($masterKO)
|
|
);
|
|
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdInfo)
|
|
->willReturn('
|
|
# Replication
|
|
role:slave
|
|
master_host:127.0.0.1
|
|
master_port:6381
|
|
master_link_status:up
|
|
master_last_io_seconds_ago:8
|
|
master_sync_in_progress:0
|
|
slave_repl_offset:17715532
|
|
slave_priority:100
|
|
slave_read_only:1
|
|
connected_slaves:0
|
|
master_repl_offset:0
|
|
repl_backlog_active:0
|
|
repl_backlog_size:1048576
|
|
repl_backlog_first_byte_offset:0
|
|
repl_backlog_histlen:0
|
|
'
|
|
);
|
|
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with(
|
|
$this->isRedisCommand($cmdInfo)
|
|
)
|
|
->willReturn('
|
|
# Replication
|
|
role:master
|
|
connected_slaves:2
|
|
slave0:ip=127.0.0.1,port=6382,state=online,offset=12979,lag=0
|
|
slave1:ip=127.0.0.1,port=6383,state=online,offset=12979,lag=1
|
|
master_repl_offset:12979
|
|
repl_backlog_active:1
|
|
repl_backlog_size:1048576
|
|
repl_backlog_first_byte_offset:2
|
|
repl_backlog_histlen:12978
|
|
'
|
|
);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->setConnectionFactory($connFactory);
|
|
|
|
$replication->add($masterKO);
|
|
$replication->add($slave1);
|
|
|
|
$replication->discover();
|
|
|
|
$this->assertCount(2, $slaves = $replication->getSlaves());
|
|
$this->assertContainsOnlyInstancesOf('Predis\Connection\ConnectionInterface', $slaves);
|
|
|
|
$this->assertSame('127.0.0.1:6381', (string) $replication->getMaster());
|
|
$this->assertSame('127.0.0.1:6382', (string) $slaves[0]);
|
|
$this->assertSame('127.0.0.1:6383', (string) $slaves[1]);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAutomaticDiscoveryRequiresConnectionFactory(): void
|
|
{
|
|
$this->expectException('Predis\ClientException');
|
|
$this->expectExceptionMessage('Automatic discovery requires a connection factory');
|
|
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
|
|
$replication->setAutoDiscovery(true);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAutomaticDiscoveryOnUnreachableServer(): void
|
|
{
|
|
$cmdInfo = $command = Command\RawCommand::create('INFO', 'REPLICATION');
|
|
$cmdExists = $command = Command\RawCommand::create('EXISTS', 'key');
|
|
|
|
$slaveKO = $this->getMockConnection('tcp://127.0.0.1:7382?role=slave');
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6381?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6382?role=slave');
|
|
|
|
/** @var Connection\FactoryInterface|MockObject */
|
|
$connFactory = $this->getMockBuilder('Predis\Connection\FactoryInterface')->getMock();
|
|
$connFactory
|
|
->expects($this->once())
|
|
->method('create')
|
|
->with([
|
|
'host' => '127.0.0.1',
|
|
'port' => '6382',
|
|
'role' => 'slave',
|
|
])
|
|
->willReturn($slave1);
|
|
|
|
$slaveKO
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdExists)
|
|
->willThrowException(
|
|
new Connection\ConnectionException($slaveKO)
|
|
);
|
|
|
|
$slave1
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdExists)
|
|
->willReturn(1);
|
|
|
|
$master
|
|
->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdInfo)
|
|
->willReturn('
|
|
# Replication
|
|
role:master
|
|
connected_slaves:2
|
|
slave0:ip=127.0.0.1,port=6382,state=online,offset=12979,lag=0
|
|
master_repl_offset:12979
|
|
repl_backlog_active:1
|
|
repl_backlog_size:1048576
|
|
repl_backlog_first_byte_offset:2
|
|
repl_backlog_histlen:12978
|
|
'
|
|
);
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
$replication->setConnectionFactory($connFactory);
|
|
$replication->setAutoDiscovery(true);
|
|
|
|
$replication->add($master);
|
|
$replication->add($slaveKO);
|
|
|
|
$replication->executeCommand($cmdExists);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testExposesReplicationStrategy(): void
|
|
{
|
|
$replication = new MasterSlaveReplication();
|
|
$this->assertInstanceOf('Predis\Replication\ReplicationStrategy', $replication->getReplicationStrategy());
|
|
|
|
$strategy = new ReplicationStrategy();
|
|
$replication = new MasterSlaveReplication($strategy);
|
|
|
|
$this->assertSame($strategy, $replication->getReplicationStrategy());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testCanBeSerialized(): void
|
|
{
|
|
$master = $this->getMockConnection('tcp://127.0.0.1:6379?role=master');
|
|
$slave1 = $this->getMockConnection('tcp://127.0.0.1:6380?role=slave');
|
|
|
|
$replication = new MasterSlaveReplication();
|
|
|
|
$replication->add($master);
|
|
$replication->add($slave1);
|
|
|
|
$unserialized = unserialize(serialize($replication));
|
|
|
|
$this->assertEquals($master, $unserialized->getConnectionByRole('master'));
|
|
$this->assertEquals($slave1, $unserialized->getConnectionByRole('slave'));
|
|
}
|
|
}
|