Files
predis/tests/Predis/Option/ClientConnectionFactoryTest.php
T
2012-12-15 17:12:37 +01:00

139 lines
4.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\Option;
use \PHPUnit_Framework_TestCase as StandardTestCase;
use Predis\Connection\ConnectionFactory;
/**
*
*/
class ClientConnectionFactoryTest extends StandardTestCase
{
/**
* @group disconnected
*/
public function testValidationReturnsDefaultFactoryWithSchemeDefinitionsArray()
{
$connectionClass = get_class($this->getMock('Predis\Connection\SingleConnectionInterface'));
$value = array('tcp' => $connectionClass, 'redis' => $connectionClass);
$options = $this->getMock('Predis\Option\ClientOptionsInterface');
$default = $this->getMock('Predis\Connection\ConnectionFactoryInterface');
$default->expects($this->exactly(2))
->method('define')
->with($this->matchesRegularExpression('/^tcp|redis$/'), $connectionClass);
$option = $this->getMock('Predis\Option\ClientConnectionFactory', array('getDefault'));
$option->expects($this->once())
->method('getDefault')
->with($options)
->will($this->returnValue($default));
$factory = $option->filter($options, $value);
$this->assertInstanceOf('Predis\Connection\ConnectionFactoryInterface', $factory);
$this->assertSame($default, $factory);
}
/**
* @group disconnected
*/
public function testValidationAcceptsFactoryInstancesAsValue()
{
$value = $this->getMock('Predis\Connection\ConnectionFactoryInterface');
$options = $this->getMock('Predis\Option\ClientOptionsInterface');
$option = $this->getMock('Predis\Option\ClientConnectionFactory', array('getDefault'));
$option->expects($this->never())->method('getDefault');
$this->assertSame($value, $option->filter($options, $value));
}
/**
* @group disconnected
*/
public function testValidationAcceptsCallableObjectAsInitializers()
{
$value = $this->getMock('Predis\Connection\ConnectionFactoryInterface');
$options = $this->getMock('Predis\Option\ClientOptionsInterface');
$option = new ClientConnectionFactory();
$initializer = $this->getMock('stdClass', array('__invoke'));
$initializer->expects($this->once())
->method('__invoke')
->with($this->isInstanceOf('Predis\Option\ClientOptionsInterface'), $option)
->will($this->returnValue($value));
$cluster = $option->filter($options, $initializer, $option);
$this->assertInstanceOf('Predis\Connection\ConnectionFactoryInterface', $cluster);
$this->assertSame($value, $cluster);
}
/**
* @group disconnected
*/
public function testValidationAcceptsStringAsValue()
{
$factory = 'Predis\Connection\ConnectionFactory';
$options = $this->getMock('Predis\Option\ClientOptionsInterface');
$option = $this->getMock('Predis\Option\ClientConnectionFactory', array('getDefault'));
$option->expects($this->never())->method('getDefault');
$this->assertInstanceOf($factory, $option->filter($options, $factory));
}
/**
* @group disconnected
*/
public function testValidationThrowsExceptionOnWrongInvalidArguments()
{
$this->setExpectedException('InvalidArgumentException');
$options = $this->getMock('Predis\Option\ClientOptionsInterface');
$option = new ClientConnectionFactory();
$option->filter($options, new \stdClass());
}
/**
* @group disconnected
*/
public function testInvokeReturnsSpecifiedFactoryOrDefault()
{
$value = $this->getMock('Predis\Connection\ConnectionFactoryInterface');
$options = $this->getMock('Predis\Option\ClientOptionsInterface');
$option = $this->getMock('Predis\Option\ClientConnectionFactory', array('filter', 'getDefault'));
$option->expects($this->once())
->method('filter')
->with($options, $value)
->will($this->returnValue($value));
$option->expects($this->never())->method('getDefault');
$this->assertInstanceOf('Predis\Connection\ConnectionFactoryInterface', $option($options, $value));
$option = $this->getMock('Predis\Option\ClientConnectionFactory', array('filter', 'getDefault'));
$option->expects($this->never())->method('filter');
$option->expects($this->once())
->method('getDefault')
->with($options)
->will($this->returnValue($value));
$this->assertInstanceOf('Predis\Connection\ConnectionFactoryInterface', $option($options, null));
}
}