|
| 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 Predis\Response\ServerException; |
| 16 | + |
| 17 | +class ACL_Test extends PredisCommandTestCase |
| 18 | +{ |
| 19 | + /** |
| 20 | + * {@inheritDoc} |
| 21 | + */ |
| 22 | + protected function getExpectedCommand(): string |
| 23 | + { |
| 24 | + return ACL::class; |
| 25 | + } |
| 26 | + |
| 27 | + /** |
| 28 | + * {@inheritDoc} |
| 29 | + */ |
| 30 | + protected function getExpectedId(): string |
| 31 | + { |
| 32 | + return 'ACL'; |
| 33 | + } |
| 34 | + |
| 35 | + /** |
| 36 | + * @group disconnected |
| 37 | + */ |
| 38 | + public function testSetUserFilterArguments(): void |
| 39 | + { |
| 40 | + $arguments = ['SETUSER', 'username', 'rule1', 'rule2']; |
| 41 | + $expected = ['SETUSER', 'username', 'rule1', 'rule2']; |
| 42 | + |
| 43 | + $command = $this->getCommand(); |
| 44 | + $command->setArguments($arguments); |
| 45 | + |
| 46 | + $this->assertSameValues($expected, $command->getArguments()); |
| 47 | + } |
| 48 | + |
| 49 | + /** |
| 50 | + * @group disconnected |
| 51 | + */ |
| 52 | + public function testDryRunFilterArguments(): void |
| 53 | + { |
| 54 | + $arguments = ['DRYRUN', 'username', 'command', 'arg1', 'arg2']; |
| 55 | + $expected = ['DRYRUN', 'username', 'command', 'arg1', 'arg2']; |
| 56 | + |
| 57 | + $command = $this->getCommand(); |
| 58 | + $command->setArguments($arguments); |
| 59 | + |
| 60 | + $this->assertSameValues($expected, $command->getArguments()); |
| 61 | + } |
| 62 | + |
| 63 | + /** |
| 64 | + * @group disconnected |
| 65 | + */ |
| 66 | + public function testGetUserFilterArguments(): void |
| 67 | + { |
| 68 | + $arguments = ['GETUSER', 'username']; |
| 69 | + $expected = ['GETUSER', 'username']; |
| 70 | + |
| 71 | + $command = $this->getCommand(); |
| 72 | + $command->setArguments($arguments); |
| 73 | + |
| 74 | + $this->assertSameValues($expected, $command->getArguments()); |
| 75 | + } |
| 76 | + |
| 77 | + /** |
| 78 | + * @group connected |
| 79 | + * @return void |
| 80 | + * @requiresRedisVersion >= 6.0.0 |
| 81 | + */ |
| 82 | + public function testSetUserCreatesACLUser(): void |
| 83 | + { |
| 84 | + $redis = $this->getClient(); |
| 85 | + |
| 86 | + $this->assertEquals('OK', $redis->acl->setUser('Test')); |
| 87 | + } |
| 88 | + |
| 89 | + /** |
| 90 | + * @group connected |
| 91 | + * @return void |
| 92 | + * @requiresRedisVersion >= 7.0.0 |
| 93 | + */ |
| 94 | + public function testDryRunSimulateExecutionOfGivenCommandByUser(): void |
| 95 | + { |
| 96 | + $redis = $this->getClient(); |
| 97 | + |
| 98 | + $this->assertEquals('OK', $redis->acl->setUser('Test', '+SET', '~*')); |
| 99 | + $this->assertEquals( |
| 100 | + 'OK', |
| 101 | + $redis->acl->dryRun('Test', 'SET', 'foo', 'bar') |
| 102 | + ); |
| 103 | + $this->assertEquals( |
| 104 | + "This user has no permissions to run the 'get' command", |
| 105 | + $redis->acl->dryRun('Test', 'GET', 'foo') |
| 106 | + ); |
| 107 | + } |
| 108 | + |
| 109 | + /** |
| 110 | + * @group connected |
| 111 | + * @return void |
| 112 | + * @requiresRedisVersion >= 6.0.0 |
| 113 | + */ |
| 114 | + public function testGetUserReturnsUserDefinedRules(): void |
| 115 | + { |
| 116 | + $redis = $this->getClient(); |
| 117 | + |
| 118 | + $this->assertEquals( |
| 119 | + 'OK', |
| 120 | + $redis->acl->setUser( |
| 121 | + 'alan', |
| 122 | + 'allkeys', |
| 123 | + '+@string', |
| 124 | + '+@set', |
| 125 | + '-SADD', |
| 126 | + '>alanpassword' |
| 127 | + ) |
| 128 | + ); |
| 129 | + |
| 130 | + foreach (['flags', 'passwords', 'commands', 'keys', 'channels'] as $key) { |
| 131 | + $this->assertContains($key, $redis->acl->getUser('alan')); |
| 132 | + } |
| 133 | + } |
| 134 | + |
| 135 | + /** |
| 136 | + * @group connected |
| 137 | + * @return void |
| 138 | + * @requiresRedisVersion >= 6.0.0 |
| 139 | + */ |
| 140 | + public function testSetUserThrowsExceptionOnIncorrectRuleProvided(): void |
| 141 | + { |
| 142 | + $redis = $this->getClient(); |
| 143 | + |
| 144 | + $this->expectException(ServerException::class); |
| 145 | + $this->expectExceptionMessage("ERR Error in ACL SETUSER modifier 'foobar'"); |
| 146 | + |
| 147 | + $redis->acl->setUser('Test', 'foobar'); |
| 148 | + } |
| 149 | +} |
0 commit comments