123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- <?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->assertTrue($options->exceptions);
- $this->assertNull($options->prefix);
- $this->assertNull($options->aggregate);
- $this->assertInstanceOf('Closure', $options->cluster);
- $this->assertInstanceOf('Closure', $options->replication);
- $this->assertInstanceOf('Predis\Command\FactoryInterface', $options->commands);
- $this->assertInstanceOf('Predis\Connection\FactoryInterface', $options->connections);
- }
- /**
- * @group disconnected
- */
- public function testConstructorWithArrayArgument()
- {
- $connection = $this->getMock('Predis\Connection\AggregateConnectionInterface');
- $callable = $this->getMock('stdClass', array('__invoke'));
- $callable
- ->expects($this->any())
- ->method('__invoke')
- ->with($this->isInstanceOf('Predis\Configuration\OptionsInterface'))
- ->will($this->returnValue($connection));
- $options = new Options(array(
- 'exceptions' => false,
- 'prefix' => 'prefix:',
- 'commands' => $this->getMock('Predis\Command\FactoryInterface'),
- 'connections' => $this->getMock('Predis\Connection\FactoryInterface'),
- 'cluster' => $callable,
- 'replication' => $callable,
- 'aggregate' => $callable,
- ));
- $this->assertInternalType('bool', $options->exceptions);
- $this->assertInstanceOf('Predis\Command\Processor\ProcessorInterface', $options->prefix);
- $this->assertInstanceOf('Predis\Command\FactoryInterface', $options->commands);
- $this->assertInstanceOf('Predis\Connection\FactoryInterface', $options->connections);
- $this->assertInstanceOf('Closure', $initializer = $options->aggregate);
- $this->assertSame($connection, $initializer($options, array()));
- $this->assertInstanceOf('Closure', $initializer = $options->cluster);
- $this->assertSame($connection, $initializer($options, array()));
- $this->assertInstanceOf('Closure', $initializer = $options->replication);
- $this->assertSame($connection, $initializer($options, array()));
- }
- /**
- * @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'))
- ->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'))
- ->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('custom' => 'value'));
- $pfx = $options->prefix;
- } catch (\Exception $_) {
- spl_autoload_unregister($autoload);
- }
- }
- }
|