mirror of
https://github.com/predis/predis.git
synced 2026-08-24 13:09:31 +00:00
371ac91777
Fix also a few bugs found while rewriting the test suite. In order to be able to run integration tests, the test suite requires a version of Redis >= 2.4.0. The units have been splitted into several different groups using PHPUnit @group annotation to allow developers to enable, disable and combine certain types of tests. The available groups are: - disconnected: can run without a Redis server online - connected: active connection to a Redis server is required - commands: test dedicated to a specific Redis command - slow: performs operations that can slow down execution; A list of the available groups can be obtained by running phpunit --list-groups Groups of tests can be disabled or enabled via the XML configuration file or the standard command-line test runner. Please note that due to a bug in PHPUnit, older versions ignore the --group option when the group is excluded in the XML configuration file. Please refer to http://github.com/sebastianbergmann/phpunit/issues/320 for details Integration tests in the @connected group check if the command being tested is defined in the selected server profile (see the value of the TEST_SERVER_VERSION constant in phpunit.xml). If the command is not defined in the target server profile, the integration test is automatically marked as skipped. We also provide an helper script in the bin directory that can be used to automatically generate a file with the scheleton of a test case for a Redis command by specifying the name of the class in the Predis\Commands namespace. For example, to generate a test case for SET (represented by the Predis\Commands\StringSet class): ./bin/generate-command-test.php --class=StringSet The realm of a command is automatically inferred from the name of the class, but it can be set using the --realm option.
235 lines
5.9 KiB
PHP
235 lines
5.9 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\Profiles;
|
|
|
|
use Predis\ClientException;
|
|
use Predis\Commands\Processors\ICommandProcessor;
|
|
use Predis\Commands\Processors\IProcessingSupport;
|
|
|
|
/**
|
|
* Base class that implements common functionalities of server profiles.
|
|
*
|
|
* @author Daniele Alessandri <suppakilla@gmail.com>
|
|
*/
|
|
abstract class ServerProfile implements IServerProfile, IProcessingSupport
|
|
{
|
|
private static $profiles;
|
|
|
|
private $commands;
|
|
private $processor;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->commands = $this->getSupportedCommands();
|
|
}
|
|
|
|
/**
|
|
* Returns a map of all the commands supported by the profile and their
|
|
* actual PHP classes.
|
|
*
|
|
* @return array
|
|
*/
|
|
protected abstract function getSupportedCommands();
|
|
|
|
/**
|
|
* Returns the default server profile.
|
|
*
|
|
* @return IServerProfile
|
|
*/
|
|
public static function getDefault()
|
|
{
|
|
return self::get('default');
|
|
}
|
|
|
|
/**
|
|
* Returns the development server profile.
|
|
*
|
|
* @return IServerProfile
|
|
*/
|
|
public static function getDevelopment()
|
|
{
|
|
return self::get('dev');
|
|
}
|
|
|
|
/**
|
|
* Returns a map of all the server profiles supported by default and their
|
|
* actual PHP classes.
|
|
*
|
|
* @return array
|
|
*/
|
|
private static function getDefaultProfiles()
|
|
{
|
|
return array(
|
|
'1.2' => 'Predis\Profiles\ServerVersion12',
|
|
'2.0' => 'Predis\Profiles\ServerVersion20',
|
|
'2.2' => 'Predis\Profiles\ServerVersion22',
|
|
'2.4' => 'Predis\Profiles\ServerVersion24',
|
|
'default' => 'Predis\Profiles\ServerVersion24',
|
|
'dev' => 'Predis\Profiles\ServerVersionNext',
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Registers a new server profile.
|
|
*
|
|
* @param string $alias Profile version or alias.
|
|
* @param string $profileClass FQN of a class implementing Predis\Profiles\IServerProfile.
|
|
*/
|
|
public static function define($alias, $profileClass)
|
|
{
|
|
if (!isset(self::$profiles)) {
|
|
self::$profiles = self::getDefaultProfiles();
|
|
}
|
|
|
|
$profileReflection = new \ReflectionClass($profileClass);
|
|
|
|
if (!$profileReflection->isSubclassOf('Predis\Profiles\IServerProfile')) {
|
|
throw new \InvalidArgumentException("Cannot register '$profileClass' as it is not a valid profile class");
|
|
}
|
|
|
|
self::$profiles[$alias] = $profileClass;
|
|
}
|
|
|
|
/**
|
|
* Returns the specified server profile.
|
|
*
|
|
* @param string $version Profile version or alias.
|
|
* @return IServerProfile
|
|
*/
|
|
public static function get($version)
|
|
{
|
|
if (!isset(self::$profiles)) {
|
|
self::$profiles = self::getDefaultProfiles();
|
|
}
|
|
if (!isset(self::$profiles[$version])) {
|
|
throw new ClientException("Unknown server profile: $version");
|
|
}
|
|
|
|
$profile = self::$profiles[$version];
|
|
|
|
return new $profile();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function supportsCommands(Array $commands)
|
|
{
|
|
foreach ($commands as $command) {
|
|
if ($this->supportsCommand($command) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function supportsCommand($command)
|
|
{
|
|
return isset($this->commands[strtolower($command)]);
|
|
}
|
|
|
|
/**
|
|
* Returns the FQN of the class that represent the specified command ID
|
|
* registered in the current server profile.
|
|
*
|
|
* @param string $command Command ID.
|
|
* @return string
|
|
*/
|
|
public function getCommandClass($command)
|
|
{
|
|
if (isset($this->commands[$command = strtolower($command)])) {
|
|
return $this->commands[$command];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function createCommand($method, $arguments = array())
|
|
{
|
|
$method = strtolower($method);
|
|
if (!isset($this->commands[$method])) {
|
|
throw new ClientException("'$method' is not a registered Redis command");
|
|
}
|
|
|
|
$commandClass = $this->commands[$method];
|
|
$command = new $commandClass();
|
|
$command->setArguments($arguments);
|
|
|
|
if (isset($this->processor)) {
|
|
$this->processor->process($command);
|
|
}
|
|
|
|
return $command;
|
|
}
|
|
|
|
/**
|
|
* Defines new commands in the server profile.
|
|
*
|
|
* @param array $commands Named list of command IDs and their classes.
|
|
*/
|
|
public function defineCommands(Array $commands)
|
|
{
|
|
foreach ($commands as $alias => $command) {
|
|
$this->defineCommand($alias, $command);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Defines a new commands in the server profile.
|
|
*
|
|
* @param string $alias Command ID.
|
|
* @param string $command FQN of a class implementing Predis\Commands\ICommand.
|
|
*/
|
|
public function defineCommand($alias, $command)
|
|
{
|
|
$commandReflection = new \ReflectionClass($command);
|
|
if (!$commandReflection->isSubclassOf('Predis\Commands\ICommand')) {
|
|
throw new \InvalidArgumentException("Cannot register '$command' as it is not a valid Redis command");
|
|
}
|
|
$this->commands[strtolower($alias)] = $command;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function setProcessor(ICommandProcessor $processor = null)
|
|
{
|
|
$this->processor = $processor;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getProcessor()
|
|
{
|
|
return $this->processor;
|
|
}
|
|
|
|
/**
|
|
* Returns the version of server profile as its string representation.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function __toString()
|
|
{
|
|
return $this->getVersion();
|
|
}
|
|
}
|