Files
predis/tests/Predis/Configuration/OptionsTest.php
T
Daniele Alessandri 62b421f20e Switch from server profiles to commands factory.
This change reduces some unnecessary complexity in the library, Redis
commands do not change much after all. Developers can still implement
their own commands factory, inject new commands or override existing
ones. The "profile" client options has been renamed to "commands" and
it accepts instances of Predis\Command\FactoryInterface.

The test suite checks at runtime the version of the running instance
of Redis for integration tests to adapt itself automatically.
2016-06-04 15:36:21 +02:00

200 lines
6.2 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;
/**
* @todo Use mock objects to test the inner workings of the Options class.
*/
class OptionsTest extends PredisTestCase
{
/**
* @group disconnected
*/
public function testConstructorWithoutArguments()
{
$options = new Options();
$this->assertInstanceOf('Predis\Connection\FactoryInterface', $options->connections);
$this->assertInstanceOf('Predis\Command\FactoryInterface', $options->commands);
$this->assertInstanceOf('Predis\Connection\Aggregate\ClusterInterface', $options->cluster);
$this->assertInstanceOf('Predis\Connection\Aggregate\ReplicationInterface', $options->replication);
$this->assertTrue($options->exceptions);
$this->assertNull($options->prefix);
}
/**
* @group disconnected
*/
public function testConstructorWithArrayArgument()
{
$options = new Options(array(
'exceptions' => false,
'prefix' => 'prefix:',
'commands' => $this->getMock('Predis\Command\FactoryInterface'),
'connections' => $this->getMock('Predis\Connection\FactoryInterface'),
'cluster' => $this->getMock('Predis\Connection\Aggregate\ClusterInterface'),
'replication' => $this->getMock('Predis\Connection\Aggregate\ReplicationInterface'),
));
$this->assertInternalType('bool', $options->exceptions);
$this->assertInstanceOf('Predis\Command\FactoryInterface', $options->commands);
$this->assertInstanceOf('Predis\Command\Processor\ProcessorInterface', $options->prefix);
$this->assertInstanceOf('Predis\Connection\FactoryInterface', $options->connections);
$this->assertInstanceOf('Predis\Connection\Aggregate\ClusterInterface', $options->cluster);
$this->assertInstanceOf('Predis\Connection\Aggregate\ReplicationInterface', $options->replication);
}
/**
* @group disconnected
*/
public function testSupportsCustomOptions()
{
$options = new Options(array(
'custom' => 'foobar',
));
$this->assertSame('foobar', $options->custom);
}
/**
* @group disconnected
*/
public function testUndefinedOptionsReturnNull()
{
$options = new Options();
$this->assertFalse($options->defined('unknown'));
$this->assertFalse(isset($options->unknown));
$this->assertNull($options->unknown);
}
/**
* @group disconnected
*/
public function testCanCheckOptionsIfDefinedByUser()
{
$options = new Options(array(
'prefix' => 'prefix:',
'custom' => 'foobar',
'void' => null,
));
$this->assertTrue($options->defined('prefix'));
$this->assertTrue($options->defined('custom'));
$this->assertTrue($options->defined('void'));
$this->assertFalse($options->defined('commands'));
}
/**
* @group disconnected
*/
public function testIsSetReplicatesPHPBehavior()
{
$options = new Options(array(
'prefix' => 'prefix:',
'custom' => 'foobar',
'void' => null,
));
$this->assertTrue(isset($options->prefix));
$this->assertTrue(isset($options->custom));
$this->assertFalse(isset($options->void));
$this->assertFalse(isset($options->commands));
}
/**
* @group disconnected
*/
public function testReturnsDefaultValueOfSpecifiedOption()
{
$options = new Options();
$this->assertInstanceOf('Predis\Command\FactoryInterface', $options->getDefault('commands'));
}
/**
* @group disconnected
*/
public function testReturnsNullAsDefaultValueForUndefinedOption()
{
$options = new Options();
$this->assertNull($options->getDefault('unknown'));
}
/**
* @group disconnected
*/
public function testLazilyInitializesOptionValueUsingObjectWithInvokeMagicMethod()
{
$commands = $this->getMock('Predis\Command\FactoryInterface');
// NOTE: closure values are covered by this test since they define __invoke().
$callable = $this->getMock('stdClass', array('__invoke'));
$callable->expects($this->once())
->method('__invoke')
->with($this->isInstanceOf('Predis\Configuration\OptionsInterface'), 'commands')
->will($this->returnValue($commands));
$options = new Options(array(
'commands' => $callable,
));
$this->assertSame($commands, $options->commands);
$this->assertSame($commands, $options->commands);
}
/**
* @group disconnected
*/
public function testLazilyInitializesCustomOptionValueUsingObjectWithInvokeMagicMethod()
{
$custom = new \stdClass();
// NOTE: closure values are covered by this test since they define __invoke().
$callable = $this->getMock('stdClass', array('__invoke'));
$callable->expects($this->once())
->method('__invoke')
->with($this->isInstanceOf('Predis\Configuration\OptionsInterface'), 'custom')
->will($this->returnValue($custom));
$options = new Options(array(
'custom' => $callable,
));
$this->assertSame($custom, $options->custom);
$this->assertSame($custom, $options->custom);
}
/**
* @group disconnected
*/
public function testChecksForInvokeMagicMethodDoesNotTriggerAutoloader()
{
$trigger = $this->getMock('stdClass', array('autoload'));
$trigger->expects($this->never())->method('autoload');
spl_autoload_register($autoload = function ($class) use ($trigger) {
$trigger->autoload($class);
}, true, false);
try {
$options = new Options(array('prefix' => 'pfx'));
$pfx = $options->prefix;
} catch (\Exception $_) {
spl_autoload_unregister($autoload);
}
}
}