mirror of
https://github.com/predis/predis.git
synced 2026-08-21 08:20:59 +00:00
5f70cb1abc
* Removed NULL assignement for username parameter * Updated unit test * More codestyle fixes * Codestyle fixes
310 lines
8.0 KiB
PHP
310 lines
8.0 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;
|
|
|
|
use Predis\Command\RawCommand;
|
|
use Predis\Response\Error as ErrorResponse;
|
|
use PredisTestCase;
|
|
use Relay\Relay;
|
|
|
|
/**
|
|
* @group ext-relay
|
|
* @requires extension relay
|
|
*/
|
|
class RelayConnectionTest extends PredisTestCase
|
|
{
|
|
/**
|
|
* @var Relay
|
|
*/
|
|
private $mockClient;
|
|
|
|
/**
|
|
* @var ParametersInterface
|
|
*/
|
|
private $parameters;
|
|
|
|
/**
|
|
* @var RelayConnection
|
|
*/
|
|
private $connection;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->mockClient = $this->getMockBuilder(Relay::class)->getMock();
|
|
$this->parameters = new Parameters();
|
|
|
|
$this->connection = new RelayConnection($this->parameters, $this->mockClient);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @return void
|
|
*/
|
|
public function testIsConnected(): void
|
|
{
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('isConnected')
|
|
->withAnyParameters()
|
|
->willReturn(true);
|
|
|
|
$this->assertTrue($this->connection->isConnected());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @return void
|
|
*/
|
|
public function testDisconnect(): void
|
|
{
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('isConnected')
|
|
->withAnyParameters()
|
|
->willReturn(true);
|
|
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('close')
|
|
->withAnyParameters();
|
|
|
|
$this->connection->disconnect();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @return void
|
|
*/
|
|
public function testGetClient(): void
|
|
{
|
|
$this->assertSame($this->mockClient, $this->connection->getClient());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @return void
|
|
*/
|
|
public function testExecuteCommandOnAlreadyConnectedClient(): void
|
|
{
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('isConnected')
|
|
->withAnyParameters()
|
|
->willReturn(true);
|
|
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('rawCommand')
|
|
->with('GET', 'foo')
|
|
->willReturn('bar');
|
|
|
|
$response = $this->connection->executeCommand(new RawCommand('GET', ['foo']));
|
|
|
|
$this->assertSame('bar', $response);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @return void
|
|
*/
|
|
public function testExecuteAtypicalCommandOnAlreadyConnectedClient(): void
|
|
{
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('isConnected')
|
|
->withAnyParameters()
|
|
->willReturn(true);
|
|
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('AUTH')
|
|
->with('foo', 'bar')
|
|
->willReturn(true);
|
|
|
|
$response = $this->connection->executeCommand(new RawCommand('AUTH', ['foo', 'bar']));
|
|
|
|
$this->assertTrue($response);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @return void
|
|
*/
|
|
public function testExecuteCommandOnNonConnectedClient(): void
|
|
{
|
|
$this->mockClient
|
|
->expects($this->exactly(2))
|
|
->method('isConnected')
|
|
->withAnyParameters()
|
|
->willReturn(false);
|
|
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('connect')
|
|
->with($this->parameters->host, $this->parameters->port);
|
|
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('rawCommand')
|
|
->with('GET', 'foo')
|
|
->willReturn('bar');
|
|
|
|
$response = $this->connection->executeCommand(new RawCommand('GET', ['foo']));
|
|
|
|
$this->assertSame('bar', $response);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @return void
|
|
*/
|
|
public function testConnectExecutesOnConnectionCommand(): void
|
|
{
|
|
$this->mockClient
|
|
->expects($this->exactly(3))
|
|
->method('isConnected')
|
|
->withAnyParameters()
|
|
->willReturn(false);
|
|
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('connect')
|
|
->with($this->parameters->host, $this->parameters->port);
|
|
|
|
$this->mockClient
|
|
->expects($this->exactly(2))
|
|
->method('rawCommand')
|
|
->withConsecutive(['GET', 'foo'], ['GET', 'bar'])
|
|
->willReturnOnConsecutiveCalls('baz', 'bad');
|
|
|
|
$this->connection->addConnectCommand(new RawCommand('GET', ['foo']));
|
|
$this->connection->addConnectCommand(new RawCommand('GET', ['bar']));
|
|
|
|
$this->connection->connect();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @return void
|
|
*/
|
|
public function testConnectThrowsExceptionOnErrorResponse(): void
|
|
{
|
|
$this->mockClient
|
|
->expects($this->exactly(4))
|
|
->method('isConnected')
|
|
->withAnyParameters()
|
|
->willReturn(false);
|
|
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('connect')
|
|
->with($this->parameters->host, $this->parameters->port);
|
|
|
|
$this->mockClient
|
|
->expects($this->exactly(2))
|
|
->method('rawCommand')
|
|
->withConsecutive(['GET', 'foo'], ['GET', 'bar'])
|
|
->willReturnOnConsecutiveCalls('baz', new ErrorResponse('FooBar'));
|
|
|
|
$this->connection->addConnectCommand(new RawCommand('GET', ['foo']));
|
|
$this->connection->addConnectCommand(new RawCommand('GET', ['bar']));
|
|
|
|
$this->expectException(ConnectionException::class);
|
|
$this->expectExceptionMessage('`GET` failed: FooBar [tcp://127.0.0.1:6379]');
|
|
|
|
$this->connection->connect();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @return void
|
|
*/
|
|
public function testConnectDoNotExecuteCommands(): void
|
|
{
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('isConnected')
|
|
->withAnyParameters()
|
|
->willReturn(false);
|
|
|
|
$this->mockClient
|
|
->expects($this->once())
|
|
->method('connect')
|
|
->with($this->parameters->host, $this->parameters->port);
|
|
|
|
$this->mockClient
|
|
->expects($this->never())
|
|
->method('rawCommand')
|
|
->withAnyParameters();
|
|
|
|
$this->connection->connect();
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function getConnectionClass(): string
|
|
{
|
|
return RelayConnection::class;
|
|
}
|
|
|
|
// ******************************************************************** //
|
|
// ---- INTEGRATION TESTS --------------------------------------------- //
|
|
// ******************************************************************** //
|
|
|
|
/**
|
|
* @group connected
|
|
*/
|
|
public function testGetResourceForcesConnection(): void
|
|
{
|
|
$connection = new RelayConnection(new Parameters(), new Relay());
|
|
|
|
$this->assertFalse($connection->isConnected());
|
|
$connection->getResource();
|
|
$this->assertTrue($connection->isConnected());
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
*/
|
|
public function testExecutesCommand(): void
|
|
{
|
|
$connection = new RelayConnection(new Parameters(), new Relay());
|
|
|
|
$this->assertEquals(
|
|
'OK',
|
|
$connection->executeCommand(new RawCommand('SET', ['key', 'value']))
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'value',
|
|
$connection->executeCommand(new RawCommand('GET', ['key']))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @group connected
|
|
* @requiresRedisVersion >= 7.2.0
|
|
*/
|
|
public function testConnectWithOnConnectionCommands(): void
|
|
{
|
|
$connection = new RelayConnection(new Parameters(), new Relay());
|
|
$connection->addConnectCommand(new RawCommand('CLIENT', ['SETNAME', 'predis']));
|
|
|
|
$connection->connect();
|
|
|
|
$response = $connection->executeCommand(new RawCommand('CLIENT', ['GETNAME']));
|
|
$this->assertSame('predis', $response);
|
|
}
|
|
}
|