mirror of
https://github.com/predis/predis.git
synced 2026-08-23 09:14:00 +00:00
244 lines
6.5 KiB
PHP
244 lines
6.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) 2009-2020 Daniele Alessandri
|
|
* (c) 2021-2025 Till Krüss
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Predis\Command;
|
|
|
|
use Predis\Command\Redis\BloomFilter\BFADD;
|
|
use Predis\Command\Redis\CountMinSketch\CMSINFO;
|
|
use Predis\Command\Redis\CuckooFilter\CFADD;
|
|
use Predis\Command\Redis\GET;
|
|
use Predis\Command\Redis\Json\JSONSET;
|
|
use Predis\Command\Redis\MGET;
|
|
use Predis\Command\Redis\Search\FTSEARCH;
|
|
use Predis\Command\Redis\TDigest\TDIGESTADD;
|
|
use Predis\Command\Redis\TimeSeries\TSGET;
|
|
use Predis\Command\Redis\TopK\TOPKQUERY;
|
|
use Predis\Command\Redis\ZADD;
|
|
use PredisTestCase;
|
|
use UnexpectedValueException;
|
|
|
|
class RawCommandTest extends PredisTestCase
|
|
{
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testConstructorWithCommandID(): void
|
|
{
|
|
$commandID = 'PING';
|
|
$command = new RawCommand($commandID);
|
|
|
|
$this->assertSame($commandID, $command->getId());
|
|
$this->assertEmpty($command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testConstructorWithCommandIDAndArguments(): void
|
|
{
|
|
$commandID = 'SET';
|
|
$commandArgs = ['foo', 'bar'];
|
|
|
|
$command = new RawCommand($commandID, $commandArgs);
|
|
|
|
$this->assertSame($commandID, $command->getId());
|
|
$this->assertSame($commandArgs, $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testStaticCreate(): void
|
|
{
|
|
$command = RawCommand::create('SET');
|
|
$this->assertSame('SET', $command->getId());
|
|
$this->assertEmpty($command->getArguments());
|
|
|
|
$command = RawCommand::create('SET', 'foo', 'bar');
|
|
$this->assertSame('SET', $command->getId());
|
|
$this->assertSame(['foo', 'bar'], $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* The signature of RawCommand::create() requires one argument which is the
|
|
* ID of the command (other arguments are fetched dynamically). If the first
|
|
* argument is missing a standard PHP exception is thrown on PHP >= 7.1.
|
|
*
|
|
* @group disconnected
|
|
*/
|
|
public function testPHPExceptionOnMissingCommandIDWithStaticCreate(): void
|
|
{
|
|
$this->expectException('ArgumentCountError');
|
|
|
|
RawCommand::create();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testSetArguments(): void
|
|
{
|
|
$commandID = 'SET';
|
|
$command = new RawCommand($commandID);
|
|
|
|
$command->setArguments($commandArgs = ['foo', 'bar']);
|
|
$this->assertSame($commandArgs, $command->getArguments());
|
|
|
|
$command->setArguments($commandArgs = ['hoge', 'piyo']);
|
|
$this->assertSame($commandArgs, $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testSetRawArguments(): void
|
|
{
|
|
$commandID = 'SET';
|
|
$command = new RawCommand($commandID);
|
|
|
|
$command->setRawArguments($commandArgs = ['foo', 'bar']);
|
|
$this->assertSame($commandArgs, $command->getArguments());
|
|
|
|
$command->setRawArguments($commandArgs = ['hoge', 'piyo']);
|
|
$this->assertSame($commandArgs, $command->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testGetArgumentAtIndex(): void
|
|
{
|
|
$command = new RawCommand('GET', ['key']);
|
|
|
|
$this->assertSame('key', $command->getArgument(0));
|
|
$this->assertNull($command->getArgument(1));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testSetAndGetHash(): void
|
|
{
|
|
$slot = 1024;
|
|
$arguments = ['key', 'value'];
|
|
$command = new RawCommand('SET', $arguments);
|
|
|
|
$this->assertNull($command->getSlot());
|
|
|
|
$command->setSlot($slot);
|
|
$this->assertSame($slot, $command->getSlot());
|
|
|
|
$command->setArguments(['hoge', 'piyo']);
|
|
$this->assertNull($command->getSlot());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testNormalizesCommandIdentifiersToUppercase(): void
|
|
{
|
|
$command = new RawCommand('set', ['key', 'value']);
|
|
|
|
$this->assertSame('SET', $command->getId());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testSerializeCommand(): void
|
|
{
|
|
$command = new RawCommand('Test', ['foo', 'bar']);
|
|
|
|
$this->assertSame(
|
|
"*3\r\n\$4\r\nTEST\r\n\$3\r\nfoo\r\n\$3\r\nbar\r\n",
|
|
$command->serializeCommand()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider deserializeCommandProvider
|
|
* @group disconnected
|
|
*/
|
|
public function testDeserializeCommand(string $class, array $arguments): void
|
|
{
|
|
$command = new $class();
|
|
$command->setArguments($arguments);
|
|
|
|
$deserializedCommand = RawCommand::deserializeCommand($command->serializeCommand());
|
|
|
|
$this->assertInstanceOf($class, $deserializedCommand);
|
|
$this->assertEquals($command->getArguments(), $deserializedCommand->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @return void
|
|
*/
|
|
public function testDeserializeCommandThrowsException(): void
|
|
{
|
|
$this->expectException(UnexpectedValueException::class);
|
|
$this->expectExceptionMessage('Invalid serializing format');
|
|
|
|
RawCommand::deserializeCommand('foobar');
|
|
}
|
|
|
|
public function deserializeCommandProvider(): array
|
|
{
|
|
return [
|
|
'GET' => [
|
|
GET::class,
|
|
['arg1'],
|
|
],
|
|
'MGET' => [
|
|
MGET::class,
|
|
['arg1', 'arg2', 'arg3'],
|
|
],
|
|
'ZADD' => [
|
|
ZADD::class,
|
|
['key', 'value', 'key1', 'value1'],
|
|
],
|
|
'JSONSET' => [
|
|
JSONSET::class,
|
|
['key', '$', '{"key":"value"}'],
|
|
],
|
|
'BFADD' => [
|
|
BFADD::class,
|
|
['key', 'value'],
|
|
],
|
|
'CFADD' => [
|
|
CFADD::class,
|
|
['key', 'value'],
|
|
],
|
|
'CMSINFO' => [
|
|
CMSINFO::class,
|
|
['key', 'value'],
|
|
],
|
|
'FTSEARCH' => [
|
|
FTSEARCH::class,
|
|
['key', 'value'],
|
|
],
|
|
'TDIGESTADD' => [
|
|
TDIGESTADD::class,
|
|
['key', 'value'],
|
|
],
|
|
'TSGET' => [
|
|
TSGET::class,
|
|
['key'],
|
|
],
|
|
'TOPKQUERY' => [
|
|
TOPKQUERY::class,
|
|
['key'],
|
|
],
|
|
];
|
|
}
|
|
}
|