mirror of
https://github.com/predis/predis.git
synced 2026-08-24 20:49:41 +00:00
abd284c972
* Renamed SingleConnectionInterface to NodeConnectionInterface since this name is better and makes even more sense in the context of cluster and replication scenarios. * Moved specialized aggregate connections (the ones implementing both predis and redis cluster and master/slave replication) in a newly created Predis\Connection\Aggregate sub-namespace. * Removed the "Connection" part from names of aggregate connection interfaces in the Predis\Connection\Aggregate sub-namespace. * Changed "Composable" to "Composite" in the name of interfaces and classes that can use pluggable protocol processors.
87 lines
2.6 KiB
PHP
87 lines
2.6 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\Configuration;
|
|
|
|
use InvalidArgumentException;
|
|
use stdClass;
|
|
use PredisTestCase;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class ConnectionFactoryOptionTest extends PredisTestCase
|
|
{
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDefaultOptionValue()
|
|
{
|
|
$option = new ConnectionFactoryOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$this->assertInstanceOf('Predis\Connection\Factory', $option->getDefault($options));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAcceptsNamedArrayWithSchemeToConnectionClassMappings()
|
|
{
|
|
$option = new ConnectionFactoryOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$class = get_class($this->getMock('Predis\Connection\NodeConnectionInterface'));
|
|
$value = array('tcp' => $class, 'redis' => $class);
|
|
|
|
$default = $this->getMock('Predis\Connection\FactoryInterface');
|
|
$default->expects($this->exactly(2))
|
|
->method('define')
|
|
->with($this->matchesRegularExpression('/^tcp|redis$/'), $class);
|
|
|
|
$option = $this->getMock('Predis\Configuration\ConnectionFactoryOption', array('getDefault'));
|
|
$option->expects($this->once())
|
|
->method('getDefault')
|
|
->with($options)
|
|
->will($this->returnValue($default));
|
|
|
|
$this->assertInstanceOf('Predis\Connection\FactoryInterface', $factory = $option->filter($options, $value));
|
|
$this->assertSame($default, $factory);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAcceptsConnectionFactoryInstance()
|
|
{
|
|
$option = new ConnectionFactoryOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
$value = $this->getMock('Predis\Connection\FactoryInterface');
|
|
|
|
$option = $this->getMock('Predis\Configuration\ConnectionFactoryOption', array('getDefault'));
|
|
$option->expects($this->never())->method('getDefault');
|
|
|
|
$this->assertSame($value, $option->filter($options, $value));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testThrowsExceptionOnInvalidArguments()
|
|
{
|
|
$option = new ConnectionFactoryOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$option->filter($options, new stdClass);
|
|
}
|
|
}
|