mirror of
https://github.com/predis/predis.git
synced 2026-08-24 12:49:34 +00:00
b253bdc41e
We now have a base test case class for Predis (namely PredisTestCase) grouping various commonly used utility methods shared by all of the tests in the suite, greatly improving reusability.
165 lines
5.0 KiB
PHP
165 lines
5.0 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 InvalidArgumentException;
|
|
use stdClass;
|
|
use PredisTestCase;
|
|
use Predis\Command\Processor\KeyPrefixProcessor;
|
|
use Predis\Profile;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class ProfileOptionTest extends PredisTestCase
|
|
{
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDefaultOptionValue()
|
|
{
|
|
$option = new ProfileOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$profile = $option->getDefault($options);
|
|
|
|
$this->assertInstanceOf('Predis\Profile\ProfileInterface', $profile);
|
|
$this->assertInstanceOf(get_class(Profile\Factory::getDefault()), $profile);
|
|
$this->assertNull($profile->getProcessor());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAcceptsProfileInstanceAsValue()
|
|
{
|
|
$option = new ProfileOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
$value = Profile\Factory::get('2.0');
|
|
|
|
$profile = $option->filter($options, $value);
|
|
|
|
$this->assertSame($profile, $value);
|
|
$this->assertNull($profile->getProcessor());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAcceptsStringInterpretedAsProfileVersion()
|
|
{
|
|
$option = new ProfileOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$profile = $option->filter($options, '2.0');
|
|
|
|
$this->assertInstanceOf('Predis\Profile\ProfileInterface', $profile);
|
|
$this->assertEquals('2.0', $profile->getVersion());
|
|
$this->assertNull($profile->getProcessor());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAppliesPrefixOnDefaultOptionValue()
|
|
{
|
|
$option = new ProfileOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$options->expects($this->once())
|
|
->method('__isset')
|
|
->with('prefix')
|
|
->will($this->returnValue(true));
|
|
$options->expects($this->once())
|
|
->method('__get')
|
|
->with('prefix')
|
|
->will($this->returnValue(new KeyPrefixProcessor('prefix:')));
|
|
|
|
$profile = $option->getDefault($options);
|
|
|
|
$this->assertInstanceOf('Predis\Profile\ProfileInterface', $profile);
|
|
$this->assertInstanceOf(get_class(Profile\Factory::getDefault()), $profile);
|
|
|
|
$this->assertInstanceOf('Predis\Command\Processor\KeyPrefixProcessor', $profile->getProcessor());
|
|
$this->assertSame('prefix:', $profile->getProcessor()->getPrefix());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testAppliesPrefixOnProfileCreatedFromStringValue()
|
|
{
|
|
$option = new ProfileOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$options->expects($this->once())
|
|
->method('__isset')
|
|
->with('prefix')
|
|
->will($this->returnValue(true));
|
|
$options->expects($this->once())
|
|
->method('__get')
|
|
->with('prefix')
|
|
->will($this->returnValue(new KeyPrefixProcessor('prefix:')));
|
|
|
|
$profile = $option->filter($options, '2.0');
|
|
|
|
$this->assertInstanceOf('Predis\Profile\ProfileInterface', $profile);
|
|
$this->assertInstanceOf(get_class(Profile\Factory::get('2.0')), $profile);
|
|
|
|
$this->assertInstanceOf('Predis\Command\Processor\KeyPrefixProcessor', $profile->getProcessor());
|
|
$this->assertSame('prefix:', $profile->getProcessor()->getPrefix());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testDoesNotApplyPrefixOnProfileValue()
|
|
{
|
|
$option = new ProfileOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
$value = Profile\Factory::getDefault();
|
|
|
|
$options->expects($this->never())->method('__isset');
|
|
$options->expects($this->never())->method('__get');
|
|
|
|
$profile = $option->filter($options, $value);
|
|
|
|
$this->assertInstanceOf('Predis\Profile\ProfileInterface', $profile);
|
|
$this->assertInstanceOf(get_class(Profile\Factory::getDefault()), $profile);
|
|
$this->assertNull($profile->getProcessor());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException InvalidArgumentException
|
|
*/
|
|
public function testThrowsExceptionOnInvalidValue()
|
|
{
|
|
$option = new ProfileOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$option->filter($options, new stdClass);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException Predis\ClientException
|
|
*/
|
|
public function testThrowsExceptionOnUnrecognizedVersionString()
|
|
{
|
|
$option = new ProfileOption();
|
|
$options = $this->getMock('Predis\Configuration\OptionsInterface');
|
|
|
|
$option->filter($options, '0.0');
|
|
}
|
|
}
|