mirror of
https://github.com/predis/predis.git
synced 2026-08-22 11:01:02 +00:00
dc14c29676
Now we follow a Symfony2-like naming convention for namespaces, interfaces and classes sticking with one clear rule. - Renamed namespaces: - Predis\Network - Predis\Profiles - Predis\Iterators - Predis\Options - Predis\Commands - Predis\Commands\Processors - Renamed interfaces: - Predis\IReplyObject - Predis\IRedisServerError - Predis\IConnectionFactory - Predis\IConnectionParameters - Predis\Options\IOption - Predis\Options\IClientOptions - Predis\Profile\IServerProfile - Predis\Pipeline\IPipelineExecutor - Predis\Distribution\INodeKeyGenerator - Predis\Distribution\IDistributionStrategy - Predis\Protocol\IProtocolProcessor - Predis\Protocol\IResponseReader - Predis\Protocol\IResponseHandler - Predis\Protocol\ICommandSerializer - Predis\Protocol\IComposableProtocolProcessor - Predis\Network\IConnection - Predis\Network\IConnectionSingle - Predis\Network\IConnectionComposable - Predis\Network\IConnectionCluster - Predis\Network\IConnectionReplication - Predis\Commands\ICommand - Predis\Commands\IPrefixable - Predis\Command\Processor\ICommandProcessor - Predis\Command\Processor\ICommandProcessorChain - Predis\Command\Processor\IProcessingSupport - Renamed Classes: - Predis\Commands\Command - Predis\Network\ConnectionBase - Classes moved to different namespaces: - Predis\MonitorContext Meh
99 lines
2.8 KiB
PHP
99 lines
2.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;
|
|
|
|
use \PHPUnit_Framework_TestCase as StandardTestCase;
|
|
use Predis\Connection\SingleConnectionInterface;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class CommunicationExceptionTest extends StandardTestCase
|
|
{
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testExceptionMessage()
|
|
{
|
|
$message = 'Connection error message.';
|
|
$connection = $this->getMockedConnectionBase();
|
|
$exception = $this->getException($connection, $message);
|
|
|
|
$this->setExpectedException('Predis\CommunicationException', $message);
|
|
|
|
throw $exception;
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testExceptionConnection()
|
|
{
|
|
$connection = $this->getMockedConnectionBase();
|
|
$exception = $this->getException($connection, 'ERROR MESSAGE');
|
|
|
|
$this->assertSame($connection, $exception->getConnection());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testShouldResetConnection()
|
|
{
|
|
$connection = $this->getMockedConnectionBase();
|
|
$exception = $this->getException($connection, 'ERROR MESSAGE');
|
|
|
|
$this->assertTrue($exception->shouldResetConnection());
|
|
}
|
|
|
|
// ******************************************************************** //
|
|
// ---- HELPER METHODS ------------------------------------------------ //
|
|
// ******************************************************************** //
|
|
|
|
/**
|
|
* Returns a mocked connection instance.
|
|
*
|
|
* @param mixed $parameters Connection parameters.
|
|
* @return SingleConnectionInterface
|
|
*/
|
|
protected function getMockedConnectionBase($parameters = null)
|
|
{
|
|
$builder = $this->getMockBuilder('Predis\Connection\AbstractConnection');
|
|
|
|
if ($parameters === null) {
|
|
$builder->disableOriginalConstructor();
|
|
}
|
|
else if (!$parameters instanceof ConnectionParametersInterface) {
|
|
$parameters = new ConnectionParameters($parameters);
|
|
}
|
|
|
|
return $builder->getMockForAbstractClass(array($parameters));
|
|
}
|
|
|
|
/**
|
|
* Returns a connection exception instance.
|
|
*
|
|
* @param SingleConnectionInterface $message Connection instance.
|
|
* @param string $message Exception message.
|
|
* @param int $code Exception code.
|
|
* @param \Exception $inner Inner exception.
|
|
* @return \Exception
|
|
*/
|
|
protected function getException(SingleConnectionInterface $connection, $message, $code = 0, \Exception $inner = null)
|
|
{
|
|
$arguments = array($connection, $message, $code, $inner);
|
|
$mock = $this->getMockForAbstractClass('Predis\CommunicationException', $arguments);
|
|
|
|
return $mock;
|
|
}
|
|
}
|