Files
predis/tests/Predis/Configuration/OptionsTest.php
T
Daniele Alessandri abd284c972 Complete reorganization of the Predis\Connection namespace.
* 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.
2014-06-03 15:19:32 +02:00

182 lines
5.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 stdClass;
use PredisTestCase;
/**
* @todo We should test the inner work performed by this class
* using mock objects, but it is quite hard to to that.
*/
class OptionsTest extends PredisTestCase
{
/**
* @group disconnected
*/
public function testConstructorWithoutArguments()
{
$options = new Options();
$this->assertInstanceOf('Predis\Connection\FactoryInterface', $options->connections);
$this->assertInstanceOf('Predis\Profile\ProfileInterface', $options->profile);
$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,
'profile' => '2.0',
'prefix' => 'prefix:',
'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\Profile\ProfileInterface', $options->profile);
$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('profile'));
}
/**
* @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->profile));
}
/**
* @group disconnected
*/
public function testReturnsDefaultValueOfSpecifiedOption()
{
$options = new Options();
$this->assertInstanceOf('Predis\Profile\ProfileInterface', $options->getDefault('profile'));
}
/**
* @group disconnected
*/
public function testReturnsNullAsDefaultValueForUndefinedOption()
{
$options = new Options();
$this->assertNull($options->getDefault('unknown'));
}
/**
* @group disconnected
*/
public function testLazilyInitializesOptionValueUsingObjectWithInvokeMagicMethod()
{
$profile = $this->getMock('Predis\Profile\ProfileInterface');
// 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'), 'profile')
->will($this->returnValue($profile));
$options = new Options(array(
'profile' => $callable,
));
$this->assertSame($profile, $options->profile);
$this->assertSame($profile, $options->profile);
}
/**
* @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);
}
}