mirror of
https://github.com/predis/predis.git
synced 2026-08-25 17:09:39 +00:00
d0b431016d
While command classes define how the client should filter arguments or parse responses, key prefixing depends on the actual command signature as defined by Redis so it really is something that should be handled separately as the norm. Developers can define new handlers or override existing ones, but they can still define the key prefixing logic inside their command classes by implementing Predis\Command\PrefixableCommandInterface: the key prefix processor will just use that by overriding any defined handler.
158 lines
5.2 KiB
PHP
158 lines
5.2 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\Command;
|
|
|
|
use PHPUnit_Framework_TestCase as StandardTestCase;
|
|
|
|
/**
|
|
* @group realm-scripting
|
|
*/
|
|
class ScriptedCommandTest extends StandardTestCase
|
|
{
|
|
const LUA_SCRIPT = 'return { KEYS[1], KEYS[2], ARGV[1], ARGV[2] }';
|
|
const LUA_SCRIPT_SHA1 = '6e07f61f502e36d123fe28523076af588f5c315e';
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetArguments()
|
|
{
|
|
$arguments = array('key1', 'key2', 'value1', 'value2');
|
|
|
|
$command = $this->getMock('Predis\Command\ScriptedCommand', array('getScript', 'getKeysCount'));
|
|
$command->expects($this->once())
|
|
->method('getScript')
|
|
->will($this->returnValue(self::LUA_SCRIPT));
|
|
$command->expects($this->once())
|
|
->method('getKeysCount')
|
|
->will($this->returnValue(2));
|
|
$command->setArguments($arguments);
|
|
|
|
|
|
$this->assertSame(array_merge(array(self::LUA_SCRIPT_SHA1, 2), $arguments), $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetArgumentsWithNegativeKeysCount()
|
|
{
|
|
$arguments = array('key1', 'key2', 'value1', 'value2');
|
|
|
|
$command = $this->getMock('Predis\Command\ScriptedCommand', array('getScript', 'getKeysCount'));
|
|
$command->expects($this->once())
|
|
->method('getScript')
|
|
->will($this->returnValue(self::LUA_SCRIPT));
|
|
$command->expects($this->once())
|
|
->method('getKeysCount')
|
|
->will($this->returnValue(-2));
|
|
$command->setArguments($arguments);
|
|
|
|
$this->assertSame(array_merge(array(self::LUA_SCRIPT_SHA1, 2), $arguments), $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetArgumentsWithZeroKeysCount()
|
|
{
|
|
$arguments = array('value1', 'value2', 'value3');
|
|
|
|
$command = $this->getMock('Predis\Command\ScriptedCommand', array('getScript', 'getKeysCount'));
|
|
$command->expects($this->once())
|
|
->method('getScript')
|
|
->will($this->returnValue(self::LUA_SCRIPT));
|
|
$command->expects($this->once())
|
|
->method('getKeysCount')
|
|
->will($this->returnValue(0));
|
|
$command->setArguments($arguments);
|
|
|
|
$this->assertSame(array_merge(array(self::LUA_SCRIPT_SHA1, 0), $arguments), $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetKeys()
|
|
{
|
|
$arguments = array('key1', 'key2', 'value1', 'value2');
|
|
|
|
$command = $this->getMock('Predis\Command\ScriptedCommand', array('getScript', 'getKeysCount'));
|
|
$command->expects($this->once())
|
|
->method('getScript')
|
|
->will($this->returnValue(self::LUA_SCRIPT));
|
|
$command->expects($this->exactly(2))
|
|
->method('getKeysCount')
|
|
->will($this->returnValue(2));
|
|
$command->setArguments($arguments);
|
|
|
|
$this->assertSame(array('key1', 'key2'), $command->getKeys());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetKeysWithZeroKeysCount()
|
|
{
|
|
$arguments = array('value1', 'value2', 'value3');
|
|
|
|
$command = $this->getMock('Predis\Command\ScriptedCommand', array('getScript', 'getKeysCount'));
|
|
$command->expects($this->once())
|
|
->method('getScript')
|
|
->will($this->returnValue(self::LUA_SCRIPT));
|
|
$command->expects($this->exactly(2))
|
|
->method('getKeysCount')
|
|
->will($this->returnValue(0));
|
|
$command->setArguments($arguments);
|
|
|
|
$this->assertSame(array(), $command->getKeys());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetKeysWithNegativeKeysCount()
|
|
{
|
|
$arguments = array('key1', 'key2', 'value1', 'value2');
|
|
|
|
$command = $this->getMock('Predis\Command\ScriptedCommand', array('getScript', 'getKeysCount'));
|
|
$command->expects($this->once())
|
|
->method('getScript')
|
|
->will($this->returnValue(self::LUA_SCRIPT));
|
|
$command->expects($this->exactly(2))
|
|
->method('getKeysCount')
|
|
->will($this->returnValue(-2));
|
|
$command->setArguments($arguments);
|
|
|
|
$this->assertSame(array('key1', 'key2'), $command->getKeys());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetScriptHash()
|
|
{
|
|
$arguments = array('key1', 'key2', 'value1', 'value2');
|
|
|
|
$command = $this->getMock('Predis\Command\ScriptedCommand', array('getScript', 'getKeysCount'));
|
|
$command->expects($this->once())
|
|
->method('getScript')
|
|
->will($this->returnValue(self::LUA_SCRIPT));
|
|
$command->expects($this->once())
|
|
->method('getKeysCount')
|
|
->will($this->returnValue(2));
|
|
$command->setArguments($arguments);
|
|
|
|
$this->assertSame(self::LUA_SCRIPT_SHA1, $command->getScriptHash());
|
|
}
|
|
}
|