mirror of
https://github.com/predis/predis.git
synced 2026-08-25 08:09:38 +00:00
137 lines
4.1 KiB
PHP
137 lines
4.1 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\Option;
|
|
|
|
use PredisTestCase;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class ConnectionsTest extends PredisTestCase
|
|
{
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDefaultOptionValue()
|
|
{
|
|
$option = new Connections();
|
|
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$this->assertInstanceOf('Predis\Connection\Factory', $option->getDefault($options));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAcceptsNamedArrayWithSchemeToConnectionClassMappings()
|
|
{
|
|
$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\Option\Connections', 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 testUsesParametersOptionToSetDefaultParameters()
|
|
{
|
|
$parameters = array('database' => 5, 'password' => 'mypassword');
|
|
|
|
$default = $this->getMock('Predis\Connection\Factory');
|
|
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
$options
|
|
->expects($this->once())
|
|
->method('defined')
|
|
->with('parameters')
|
|
->will($this->returnValue(true));
|
|
$options
|
|
->expects($this->once())
|
|
->method('__get')
|
|
->with('parameters')
|
|
->will($this->returnValue($parameters));
|
|
|
|
$option = new Connections();
|
|
$factory = $option->getDefault($options);
|
|
|
|
$this->assertSame($parameters, $factory->getDefaultParameters());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAcceptsConnectionFactoryInstance()
|
|
{
|
|
$option = $this->getMock('Predis\Configuration\Option\Connections', array('getDefault'));
|
|
$option
|
|
->expects($this->never())
|
|
->method('getDefault');
|
|
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
$factory = $this->getMock('Predis\Connection\FactoryInterface');
|
|
|
|
$this->assertSame($factory, $option->filter($options, $factory));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAcceptsCallableReturningConnectionFactoryInstance()
|
|
{
|
|
$option = new Connections();
|
|
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$callable = $this->getMock('stdClass', array('__invoke'));
|
|
$callable
|
|
->expects($this->once())
|
|
->method('__invoke')
|
|
->with($this->isInstanceOf('Predis\Configuration\OptionsInterface'))
|
|
->will($this->returnValue(
|
|
$factory = $this->getMock('Predis\Connection\FactoryInterface')
|
|
));
|
|
|
|
$this->assertSame($factory, $option->filter($options, $callable));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException \InvalidArgumentException
|
|
* @expectedException Predis\Configuration\Option\Connections expects a valid command factory
|
|
*/
|
|
public function testThrowsExceptionOnInvalidArguments()
|
|
{
|
|
$option = new Connections();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$option->filter($options, new \stdClass());
|
|
}
|
|
}
|