Files
predis/tests/PHPUnit/CommandTestCase.php
T
Daniele Alessandri 371ac91777 [tests] Rewrite the whole test suite to allow more granular testing.
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.
2011-12-10 15:26:00 +01:00

175 lines
4.1 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\Commands;
use \PHPUnit_Framework_TestCase as StandardTestCase;
use Predis\Client;
use Predis\Profiles\ServerProfile;
use Predis\Profiles\IServerProfile;
/**
*
*/
abstract class CommandTestCase extends StandardTestCase
{
/**
* Returns the expected command.
*
* @return ICommand|string Instance or FQN of the expected command.
*/
protected abstract function getExpectedCommand();
/**
* Returns the expected command ID.
*
* @return string
*/
protected abstract function getExpectedId();
/**
* Returns a new command instance.
*
* @return ICommand
*/
protected function getCommand()
{
$command = $this->getExpectedCommand();
return $command instanceof ICommand ? $command : new $command();
}
/**
* Return the server profile used during the tests.
*
* @return IServerProfile
*/
protected function getProfile()
{
return ServerProfile::get(REDIS_SERVER_VERSION);
}
/**
* Returns a new client instance.
*
* @param Boolean $connect Flush selected database before returning the client.
* @return Client
*/
protected function getClient($flushdb = true)
{
$profile = $this->getProfile();
if (!$profile->supportsCommand($id = $this->getExpectedId())) {
$this->markTestSkipped("The profile {$profile->getVersion()} does not support command {$id}");
}
$parameters = array(
'host' => REDIS_SERVER_HOST,
'port' => REDIS_SERVER_PORT,
);
$options = array(
'profile' => $profile
);
$client = new Client($parameters, $options);
$client->connect();
$client->select(REDIS_SERVER_DBNUM);
if ($flushdb) {
$client->flushdb();
}
return $client;
}
/**
* Returns wether the command is prefixable or not.
*
* @return Boolean
*/
protected function isPrefixable()
{
return $this->getCommand() instanceof IPrefixable;
}
/**
* Returns a new command instance with the specified arguments.
*
* @param ... List of arguments for the command.
* @return ICommand
*/
protected function getCommandWithArguments(/* arguments */)
{
return $this->getCommandWithArgumentsArray(func_get_args());
}
/**
* Returns a new command instance with the specified arguments.
*
* @param array $arguments Arguments for the command.
* @return ICommand
*/
protected function getCommandWithArgumentsArray(Array $arguments)
{
$command = $this->getCommand();
$command->setArguments($arguments);
return $command;
}
/**
* Sleep the test case with microseconds resolution.
*
* @param float $seconds Seconds to sleep.
*/
protected function sleep($seconds)
{
usleep($seconds * 1000000);
}
/**
* Asserts that two arrays have the same values, even if with different order.
*
* @param Array $expected Expected array.
* @param Array $actual Actual array.
*/
protected function assertSameValues(Array $expected, Array $actual)
{
$this->assertThat($expected, new \ArrayHasSameValuesConstraint($actual));
}
/**
* @group disconnected
*/
public function testCommandId()
{
$command = $this->getCommand();
$this->assertInstanceOf('Predis\Commands\ICommand', $command);
$this->assertEquals($this->getExpectedId(), $command->getId());
}
/**
* @group disconnected
*/
public function testRawArguments()
{
$expected = array('1st', '2nd', '3rd', '4th');
$command = $this->getCommand();
$command->setRawArguments($expected);
$this->assertSame($expected, $command->getArguments());
}
}