Files
predis/tests/Predis/Configuration/ConnectionFactoryOptionTest.php
T
Raza Mehdi 5edf443141 Fix tests.
2020-08-16 01:59:41 +05:00

114 lines
3.5 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 PredisTestCase;
/**
*
*/
class ConnectionFactoryOptionTest extends PredisTestCase
{
/**
* @group disconnected
*/
public function testDefaultOptionValue()
{
$option = new ConnectionFactoryOption();
$options = $this->getMockBuilder('Predis\Configuration\OptionsInterface')->getMock();
$this->assertInstanceOf('Predis\Connection\Factory', $option->getDefault($options));
}
/**
* @group disconnected
*/
public function testAcceptsNamedArrayWithSchemeToConnectionClassMappings()
{
$options = $this->getMockBuilder('Predis\Configuration\OptionsInterface')->getMock();
$class = get_class($this->getMockBuilder('Predis\Connection\NodeConnectionInterface')->getMock());
$value = array('tcp' => $class, 'redis' => $class);
$default = $this->getMockBuilder('Predis\Connection\FactoryInterface')->getMock();
$default->expects($this->exactly(2))
->method('define')
->with($this->matchesRegularExpression('/^tcp|redis$/'), $class);
$option = $this->getMockBuilder('Predis\Configuration\ConnectionFactoryOption')
->setMethods(array('getDefault'))
->getMock();
$option->expects($this->once())
->method('getDefault')
->with($options)
->will($this->returnValue($default));
$factory = $option->filter($options, $value);
$this->assertSame($default, $factory);
}
/**
* @group disconnected
*/
public function testUsesParametersOptionToSetDefaultParameters()
{
$parameters = array('database' => 5, 'password' => 'mypassword');
$default = $this->getMockBuilder('Predis\Connection\Factory')->getMock();
$options = $this->getMockBuilder('Predis\Configuration\OptionsInterface')->getMock();
$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 ConnectionFactoryOption();
$factory = $option->getDefault($options);
$this->assertSame($parameters, $factory->getDefaultParameters());
}
/**
* @group disconnected
*/
public function testAcceptsConnectionFactoryInstance()
{
$options = $this->getMockBuilder('Predis\Configuration\OptionsInterface')->getMock();
$value = $this->getMockBuilder('Predis\Connection\FactoryInterface')->getMock();
$option = $this->getMockBuilder('Predis\Configuration\ConnectionFactoryOption')
->setMethods(array('getDefault'))
->getMock();
$option->expects($this->never())->method('getDefault');
$this->assertSame($value, $option->filter($options, $value));
}
/**
* @group disconnected
*/
public function testThrowsExceptionOnInvalidArguments()
{
$this->expectException('InvalidArgumentException');
$option = new ConnectionFactoryOption();
$options = $this->getMockBuilder('Predis\Configuration\OptionsInterface')->getMock();
$option->filter($options, new \stdClass());
}
}