mirror of
https://github.com/predis/predis.git
synced 2026-08-28 19:21:22 +00:00
93 lines
2.2 KiB
PHP
93 lines
2.2 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\Traits\Json;
|
|
|
|
use Predis\Command\Command as RedisCommand;
|
|
use PredisTestCase;
|
|
use UnexpectedValueException;
|
|
|
|
class NxXxArgumentTest extends PredisTestCase
|
|
{
|
|
private $testClass;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->testClass = new class extends RedisCommand {
|
|
use NxXxArgument;
|
|
|
|
public static $nxXxArgumentPositionOffset = 0;
|
|
|
|
public function getId()
|
|
{
|
|
return 'test';
|
|
}
|
|
};
|
|
}
|
|
|
|
/**
|
|
* @dataProvider argumentsProvider
|
|
* @param int $offset
|
|
* @param array $actualArguments
|
|
* @param array $expectedResponse
|
|
* @return void
|
|
*/
|
|
public function testReturnsCorrectArguments(
|
|
int $offset,
|
|
array $actualArguments,
|
|
array $expectedResponse
|
|
): void {
|
|
$this->testClass::$nxXxArgumentPositionOffset = $offset;
|
|
|
|
$this->testClass->setArguments($actualArguments);
|
|
|
|
$this->assertSame($expectedResponse, $this->testClass->getArguments());
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function testThrowsExceptionOnUnexpectedValueGiven(): void
|
|
{
|
|
$this->expectException(UnexpectedValueException::class);
|
|
$this->expectExceptionMessage('Argument accepts only: nx, xx values');
|
|
|
|
$this->testClass->setArguments(['wrong']);
|
|
}
|
|
|
|
public function argumentsProvider(): array
|
|
{
|
|
return [
|
|
'with correct argument - NX' => [
|
|
0,
|
|
['nx'],
|
|
['NX'],
|
|
],
|
|
'with correct argument - XX' => [
|
|
0,
|
|
['xx'],
|
|
['XX'],
|
|
],
|
|
'with wrong offset' => [
|
|
2,
|
|
['argument1'],
|
|
['argument1'],
|
|
],
|
|
'with null argument' => [
|
|
0,
|
|
[null],
|
|
[false],
|
|
],
|
|
];
|
|
}
|
|
}
|