mirror of
https://github.com/predis/predis.git
synced 2026-08-26 00:20:04 +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.
172 lines
5.4 KiB
PHP
172 lines
5.4 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;
|
|
|
|
use \PHPUnit_Framework_TestCase as StandardTestCase;
|
|
|
|
use Predis\Profiles\ServerProfile;
|
|
|
|
/**
|
|
* @group realm-monitor
|
|
*/
|
|
class MonitorContextTest extends StandardTestCase
|
|
{
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException Predis\NotSupportedException
|
|
* @expectedExceptionMessage The current profile does not support the MONITOR command
|
|
*/
|
|
public function testMonitorContextRequireMonitorCommand()
|
|
{
|
|
$profile = $this->getMock('Predis\Profiles\IServerProfile');
|
|
$profile->expects($this->once())
|
|
->method('supportsCommand')
|
|
->with('monitor')
|
|
->will($this->returnValue(false));
|
|
|
|
$client = new Client(null, array('profile' => $profile));
|
|
$monitor = new MonitorContext($client);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException Predis\NotSupportedException
|
|
* @expectedExceptionMessage Cannot initialize a monitor context over a cluster of connections
|
|
*/
|
|
public function testMonitorContextDoesNotWorkOnClusters()
|
|
{
|
|
$cluster = $this->getMock('Predis\Network\IConnectionCluster');
|
|
|
|
$client = new Client($cluster);
|
|
$monitor = new MonitorContext($client);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testConstructorOpensContext()
|
|
{
|
|
$cmdMonitor = ServerProfile::getDefault()->createCommand('monitor');
|
|
|
|
$connection = $this->getMock('Predis\Network\IConnectionSingle');
|
|
|
|
$client = $this->getMock('Predis\Client', array('createCommand', 'executeCommand'), array($connection));
|
|
$client->expects($this->once())
|
|
->method('createCommand')
|
|
->with('monitor', array())
|
|
->will($this->returnValue($cmdMonitor));
|
|
$client->expects($this->once())
|
|
->method('executeCommand')
|
|
->with($cmdMonitor);
|
|
|
|
$monitor = new MonitorContext($client);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @todo We should investigate why disconnect is invoked 2 times in this test,
|
|
* but the reason is probably that the GC invokes __destruct() on monitor
|
|
* thus calling $client->disconnect() a second time at the end of the test.
|
|
*/
|
|
public function testClosingContextClosesConnection()
|
|
{
|
|
$connection = $this->getMock('Predis\Network\IConnectionSingle');
|
|
|
|
$client = $this->getMock('Predis\Client', array('disconnect'), array($connection));
|
|
$client->expects($this->exactly(2))->method('disconnect');
|
|
|
|
$monitor = new MonitorContext($client);
|
|
$monitor->closeContext();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGarbageCollectorRunClosesContext()
|
|
{
|
|
$connection = $this->getMock('Predis\Network\IConnectionSingle');
|
|
|
|
$client = $this->getMock('Predis\Client', array('disconnect'), array($connection));
|
|
$client->expects($this->once())->method('disconnect');
|
|
|
|
$monitor = new MonitorContext($client);
|
|
unset($monitor);
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testCurrentReadsMessageFromConnection()
|
|
{
|
|
$message = '1323367530.939137 (db 15) "MONITOR"';
|
|
|
|
$connection = $this->getMock('Predis\Network\IConnectionSingle');
|
|
$connection->expects($this->once())
|
|
->method('read')
|
|
->will($this->returnValue($message));
|
|
|
|
$client = new Client($connection);
|
|
$monitor = new MonitorContext($client);
|
|
|
|
$payload = $monitor->current();
|
|
$this->assertSame(1323367530, (int) $payload->timestamp);
|
|
$this->assertSame(15, $payload->database);
|
|
$this->assertSame('MONITOR', $payload->command);
|
|
$this->assertNull($payload->arguments);
|
|
}
|
|
|
|
// ******************************************************************** //
|
|
// ---- INTEGRATION TESTS --------------------------------------------- //
|
|
// ******************************************************************** //
|
|
|
|
/**
|
|
* @group connected
|
|
*/
|
|
public function testMonitorAgainstRedisServer()
|
|
{
|
|
$parameters = array(
|
|
'host' => REDIS_SERVER_HOST,
|
|
'port' => REDIS_SERVER_PORT,
|
|
'database' => REDIS_SERVER_DBNUM,
|
|
// Prevents suite from handing on broken test
|
|
'read_write_timeout' => 2,
|
|
);
|
|
|
|
$echoed = array();
|
|
|
|
$producer = new Client($parameters, REDIS_SERVER_VERSION);
|
|
$producer->connect();
|
|
|
|
$consumer = new Client($parameters, REDIS_SERVER_VERSION);
|
|
$consumer->connect();
|
|
|
|
$monitor = new MonitorContext($consumer);
|
|
|
|
$producer->echo('message1');
|
|
$producer->echo('message2');
|
|
$producer->echo('QUIT');
|
|
|
|
foreach ($monitor as $message) {
|
|
if ($message->command == 'ECHO') {
|
|
$echoed[] = $arguments = trim($message->arguments, '"');
|
|
if ($arguments == 'QUIT') {
|
|
$monitor->closeContext();
|
|
}
|
|
}
|
|
}
|
|
|
|
$this->assertSame(array('message1', 'message2', 'QUIT'), $echoed);
|
|
$this->assertFalse($monitor->valid());
|
|
$this->assertTrue($consumer->ping());
|
|
}
|
|
}
|