Files
predis/tests/Predis/Command/Traits/Json/NewlineTest.php
T
2025-01-22 09:24:26 -08:00

88 lines
2.0 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 NewlineTest extends PredisTestCase
{
private $testClass;
protected function setUp(): void
{
$this->testClass = new class extends RedisCommand {
use Newline;
public static $newlineArgumentPositionOffset = 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::$newlineArgumentPositionOffset = $offset;
$this->testClass->setArguments($actualArguments);
$this->assertSame($expectedResponse, $this->testClass->getArguments());
}
/**
* @return void
*/
public function testThrowsExceptionOnUnexpectedValueGiven(): void
{
$this->expectException(UnexpectedValueException::class);
$this->expectExceptionMessage('Newline argument value should be a string');
$this->testClass->setArguments([1]);
}
public function argumentsProvider(): array
{
return [
'with wrong offset' => [
2,
['argument1'],
['argument1'],
],
'with default value' => [
0,
[''],
[false],
],
'with correct argument' => [
0,
['\n'],
['NEWLINE', '\n'],
],
];
}
}