getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame('bar', $this->getCommand()->parseResponse('bar')); } /** * @group disconnected */ public function testGetScriptHash(): void { $command = $this->getCommandWithArgumentsArray([$sha1 = sha1('return true')]); $this->assertSame($sha1, $command->getScriptHash()); } /** * @group connected * @requiresRedisVersion >= 2.6.0 */ public function testExecutesSpecifiedLuaScript(): void { $redis = $this->getClient(); $lua = 'return {KEYS[1],KEYS[2],ARGV[1],ARGV[2]}'; $sha1 = sha1($lua); $result = ['foo', 'hoge', 'bar', 'piyo']; $this->assertSame($result, $redis->eval($lua, 2, 'foo', 'hoge', 'bar', 'piyo')); $this->assertSame($result, $redis->evalsha($sha1, 2, 'foo', 'hoge', 'bar', 'piyo')); } /** * @group connected * @requiresRedisVersion >= 2.6.0 */ public function testThrowsExceptionOnWrongNumberOfKeys(): void { $this->expectException('Predis\Response\ServerException'); $redis = $this->getClient(); $lua = 'return {KEYS[1],KEYS[2],ARGV[1],ARGV[2]}'; $sha1 = sha1($lua); $redis->eval($lua, 2, 'foo', 'hoge', 'bar', 'piyo'); $redis->evalsha($sha1, 3, 'foo', 'hoge'); } /** * @group connected * @requiresRedisVersion >= 2.6.0 */ public function testThrowsExceptionOnInvalidScript(): void { $this->expectException('Predis\Response\ServerException'); $redis = $this->getClient(); $redis->evalsha('ffffffffffffffffffffffffffffffffffffffff', 0); } }