Files
predis/tests/Predis/Command/Redis/SRANDMEMBER_Test.php
T
2025-01-22 09:24:26 -08:00

96 lines
2.1 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\Redis;
/**
* @group commands
* @group realm-set
*/
class SRANDMEMBER_Test extends PredisCommandTestCase
{
/**
* {@inheritdoc}
*/
protected function getExpectedCommand(): string
{
return 'Predis\Command\Redis\SRANDMEMBER';
}
/**
* {@inheritdoc}
*/
protected function getExpectedId(): string
{
return 'SRANDMEMBER';
}
/**
* @group disconnected
*/
public function testFilterArguments(): void
{
$arguments = ['key', 1];
$expected = ['key', 1];
$command = $this->getCommand();
$command->setArguments($arguments);
$this->assertSame($expected, $command->getArguments());
}
/**
* @group disconnected
*/
public function testParseResponse(): void
{
$this->assertSame('member', $this->getCommand()->parseResponse('member'));
}
/**
* @group connected
*/
public function testReturnsRandomMemberFromSet(): void
{
$redis = $this->getClient();
$redis->sadd('letters', 'a', 'b');
$this->assertContains($redis->srandmember('letters'), ['a', 'b']);
$this->assertContains($redis->srandmember('letters'), ['a', 'b']);
$this->assertSame(2, $redis->scard('letters'));
}
/**
* @group connected
*/
public function testReturnsNullOnNonExistingSet(): void
{
$this->assertNull($this->getClient()->srandmember('letters'));
}
/**
* @group connected
*/
public function testThrowsExceptionOnWrongType(): void
{
$this->expectException('Predis\Response\ServerException');
$this->expectExceptionMessage('Operation against a key holding the wrong kind of value');
$redis = $this->getClient();
$redis->set('foo', 'bar');
$redis->srandmember('foo');
}
}