|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of the Predis package. |
| 5 | + * |
| 6 | + * (c) 2009-2020 Daniele Alessandri |
| 7 | + * (c) 2021-2023 Till Krüss |
| 8 | + * |
| 9 | + * For the full copyright and license information, please view the LICENSE |
| 10 | + * file that was distributed with this source code. |
| 11 | + */ |
| 12 | + |
| 13 | +namespace Predis\Command\Redis; |
| 14 | + |
| 15 | +use PHPUnit\Util\Test as TestUtil; |
| 16 | +use Predis\Response\ServerException; |
| 17 | + |
| 18 | +/** |
| 19 | + * @group commands |
| 20 | + * @group realm-scripting |
| 21 | + */ |
| 22 | +class FCALL_RO_Test extends PredisCommandTestCase |
| 23 | +{ |
| 24 | + private const LIB_NAME = 'mylib'; |
| 25 | + |
| 26 | + /** |
| 27 | + * {@inheritdoc} |
| 28 | + */ |
| 29 | + protected function getExpectedCommand(): string |
| 30 | + { |
| 31 | + return FCALL_RO::class; |
| 32 | + } |
| 33 | + |
| 34 | + /** |
| 35 | + * {@inheritdoc} |
| 36 | + */ |
| 37 | + protected function getExpectedId(): string |
| 38 | + { |
| 39 | + return 'FCALL_RO'; |
| 40 | + } |
| 41 | + |
| 42 | + /** |
| 43 | + * @group disconnected |
| 44 | + * @dataProvider argumentsProvider |
| 45 | + */ |
| 46 | + public function testFilterArguments(array $actualArguments, array $expectedArguments): void |
| 47 | + { |
| 48 | + $command = $this->getCommand(); |
| 49 | + $command->setArguments($actualArguments); |
| 50 | + |
| 51 | + $this->assertSame($expectedArguments, $command->getArguments()); |
| 52 | + } |
| 53 | + |
| 54 | + /** |
| 55 | + * @group disconnected |
| 56 | + */ |
| 57 | + public function testParseResponse(): void |
| 58 | + { |
| 59 | + $this->assertSame(1, $this->getCommand()->parseResponse(1)); |
| 60 | + } |
| 61 | + |
| 62 | + /** |
| 63 | + * @group connected |
| 64 | + * @return void |
| 65 | + * @requiresRedisVersion >= 7.0.0 |
| 66 | + */ |
| 67 | + public function testInvokeGivenReadOnlyFunction(): void |
| 68 | + { |
| 69 | + $redis = $this->getClient(); |
| 70 | + |
| 71 | + $this->assertEquals('OK', $redis->set('key', 'value')); |
| 72 | + |
| 73 | + $this->assertSame( |
| 74 | + self::LIB_NAME, |
| 75 | + $redis->function->load( |
| 76 | + "#!lua name=mylib\n redis.register_function{function_name='myfunc',callback=function(keys, args) return redis.call('GET', keys[1]) end,flags={'no-writes'}}" |
| 77 | + ) |
| 78 | + ); |
| 79 | + |
| 80 | + $actualResponse = $redis->fcall_ro('myfunc', ['key']); |
| 81 | + $this->assertSame('value', $actualResponse); |
| 82 | + } |
| 83 | + |
| 84 | + /** |
| 85 | + * @group connected |
| 86 | + * @return void |
| 87 | + * @requiresRedisVersion >= 7.0.0 |
| 88 | + */ |
| 89 | + public function testThrowsExceptionOnWriteContextFunction(): void |
| 90 | + { |
| 91 | + $redis = $this->getClient(); |
| 92 | + |
| 93 | + $this->assertEquals('OK', $redis->set('key', 'value')); |
| 94 | + |
| 95 | + $this->assertSame( |
| 96 | + self::LIB_NAME, |
| 97 | + $redis->function->load( |
| 98 | + "#!lua name=mylib \n redis.register_function('myfunc',function(keys, args) return redis.call('GET', keys[1]) end)" |
| 99 | + ) |
| 100 | + ); |
| 101 | + |
| 102 | + $this->expectException(ServerException::class); |
| 103 | + $this->expectExceptionMessage('ERR Can not execute a script with write flag using *_ro command.'); |
| 104 | + |
| 105 | + $redis->fcall_ro('myfunc', ['key']); |
| 106 | + } |
| 107 | + |
| 108 | + protected function tearDown(): void |
| 109 | + { |
| 110 | + $annotations = TestUtil::parseTestMethodAnnotations( |
| 111 | + get_class($this), |
| 112 | + $this->getName(false) |
| 113 | + ); |
| 114 | + |
| 115 | + if ( |
| 116 | + isset($annotations['method']['group']) && |
| 117 | + in_array('connected', $annotations['method']['group'], true) |
| 118 | + ) { |
| 119 | + $redis = $this->getClient(); |
| 120 | + $redis->function->delete(self::LIB_NAME); |
| 121 | + } |
| 122 | + } |
| 123 | + |
| 124 | + public function argumentsProvider(): array |
| 125 | + { |
| 126 | + return [ |
| 127 | + 'with default arguments' => [ |
| 128 | + ['function', []], |
| 129 | + ['function', 0], |
| 130 | + ], |
| 131 | + 'with provided keys' => [ |
| 132 | + ['function', ['key1', 'key2']], |
| 133 | + ['function', 2, 'key1', 'key2'], |
| 134 | + ], |
| 135 | + 'with provided keys and arguments' => [ |
| 136 | + ['function', ['key1', 'key2'], 'arg1', 'arg2'], |
| 137 | + ['function', 2, 'key1', 'key2', 'arg1', 'arg2'], |
| 138 | + ], |
| 139 | + ]; |
| 140 | + } |
| 141 | +} |
0 commit comments