Skip to content

Commit

Permalink
Add tests and support for sentinel user+pw combo
Browse files Browse the repository at this point in the history
  • Loading branch information
ostrolucky committed Sep 6, 2024
1 parent f576535 commit 7410a58
Show file tree
Hide file tree
Showing 11 changed files with 49 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
include:
- dependency-versions: "lowest"
php-version: "7.4"
php-extensions: "redis-5.3.0"
php-extensions: "redis-5.3.2"
- symfony-require: "5.4.*"
php-version: "8.2"
php-extensions: "redis"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/redis-configs/redis-sentinel.conf
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
sentinel monitor mymaster 127.0.0.1 6379 2
user default on +@all ~* >sentinelauthdefaultpw
user sentinelauth on +@all ~* >sentinelauthpw
appendonly no
18 changes: 9 additions & 9 deletions Procfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
redis: redis-server .github/workflows/redis-configs/redis.conf --port 6379
redis-acl: redis-server .github/workflows/redis-configs/redis-acl.conf --port 7099
redis-sentinel: redis-server .github/workflows/redis-configs/redis-sentinel.conf --sentinel
redis-node1: sh -c 'cd .github/workflows/redis-configs/redis-node1 && redis-server redis.conf --port 7079'
redis-node2: sh -c 'cd .github/workflows/redis-configs/redis-node2 && redis-server redis.conf --port 7080'
redis-node3: sh -c 'cd .github/workflows/redis-configs/redis-node3 && redis-server redis.conf --port 7081'
redis-node4: sh -c 'cd .github/workflows/redis-configs/redis-node4 && redis-server redis.conf --port 7082'
redis-node5: sh -c 'cd .github/workflows/redis-configs/redis-node5 && redis-server redis.conf --port 7083'
redis-node6: sh -c 'cd .github/workflows/redis-configs/redis-node6 && redis-server redis.conf --port 7084'
redis: sh -c 'cp .github/workflows/redis-configs/redis.conf /tmp/ && redis-server /tmp/redis.conf --port 6379'
redis-acl: sh -c 'cp .github/workflows/redis-configs/redis-acl.conf /tmp/ && redis-server /tmp/redis-acl.conf --port 7099'
redis-sentinel: sh -c 'cp .github/workflows/redis-configs/redis-sentinel.conf /tmp/ && redis-server /tmp/redis-sentinel.conf --sentinel'
redis-node1: sh -c 'cp -R .github/workflows/redis-configs/redis-node1 /tmp/ && cd /tmp/redis-node1 && redis-server redis.conf --port 7079'
redis-node2: sh -c 'cp -R .github/workflows/redis-configs/redis-node2 /tmp/ && cd /tmp/redis-node2 && redis-server redis.conf --port 7080'
redis-node3: sh -c 'cp -R .github/workflows/redis-configs/redis-node3 /tmp/ && cd /tmp/redis-node3 && redis-server redis.conf --port 7081'
redis-node4: sh -c 'cp -R .github/workflows/redis-configs/redis-node4 /tmp/ && cd /tmp/redis-node4 && redis-server redis.conf --port 7082'
redis-node5: sh -c 'cp -R .github/workflows/redis-configs/redis-node5 /tmp/ && cd /tmp/redis-node5 && redis-server redis.conf --port 7083'
redis-node6: sh -c 'cp -R .github/workflows/redis-configs/redis-node6 /tmp/ && cd /tmp/redis-node6 && redis-server redis.conf --port 7084'
7 changes: 3 additions & 4 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ A setup using `predis`, `phpredis` or `relay` sentinel replication could look li
snc_redis:
clients:
default:
type: "predis" # or "phpredis", or "relay"
type: "phpredis" # or "predis", or "relay"
alias: default
dsn:
- redis://localhost:26379
Expand All @@ -121,8 +121,8 @@ snc_redis:
parameters:
database: 1
password: pass
sentinel_auth: pass1 # default to null
sentinel_username: myuser # default to null
sentinel_password: mypass # default to null
```

The `service` is the name of the set of Redis instances.
Expand All @@ -133,7 +133,6 @@ If you use a password, it must be in the password parameter and must
be omitted from the DSNs. Also make sure to use the sentinel port number
(26379 by default) in the DSNs, and not the default Redis port.
You can find more information about this on [Configuring Sentinel](https://redis.io/topics/sentinel#configuring-sentinel).
`sentinel_auth` is used to set a specific password for Sentinel authentication. default is null (No authentication)
A setup using `RedisCluster` from `phpredis` could look like this:

``` yaml
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
config.allowUnfree = true;
config.allowInsecurePredicate = pkg: pkgs.lib.getName pkg == "openssl";
};
php = pkgs.php82.buildEnv {
php = pkgs.php83.buildEnv {
extensions = (
{
all,
Expand Down
3 changes: 2 additions & 1 deletion src/DependencyInjection/Configuration/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ private function addClientsSection(ArrayNodeDefinition $rootNode): void
->scalarNode('database')->defaultNull()->end()
->scalarNode('username')->defaultNull()->end()
->scalarNode('password')->defaultNull()->end()
->scalarNode('sentinel_auth')->defaultNull()->end()
->scalarNode('sentinel_username')->defaultNull()->end()
->scalarNode('sentinel_password')->defaultNull()->end()
->booleanNode('logging')->defaultValue($this->debug)->end()
->variableNode('ssl_context')->defaultNull()->end()
->end()
Expand Down
3 changes: 2 additions & 1 deletion src/Factory/PhpredisClientFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ private function createClientFromSentinel(string $class, array $dsns, string $al
$connectionTimeout = $options['connection_timeout'] ?? 0;
$connectionPersistent = $options['connection_persistent'] ? $masterName : null;
$readTimeout = $options['read_write_timeout'] ?? 0;
$parameters = $options['parameters'];

Check failure on line 128 in src/Factory/PhpredisClientFactory.php

View workflow job for this annotation

GitHub Actions / Static Analysis with Psalm

InvalidArrayOffset

src/Factory/PhpredisClientFactory.php:128:33: InvalidArrayOffset: Cannot access value on variable $options using offset value of 'parameters', expecting 'service', 'connection_persistent', 'connection_timeout' or 'read_write_timeout' (see https://psalm.dev/115)

foreach ($dsns as $dsn) {
$args = [
Expand All @@ -134,7 +135,7 @@ private function createClientFromSentinel(string $class, array $dsns, string $al
'persistent' => $connectionPersistent,
'retryInterval' => 5,
'readTimeout' => $readTimeout,
'auth' => $options['parameters']['sentinel_auth'] ?? null,
'auth' => [$parameters['sentinel_username'], $parameters['sentinel_password']],
];
try {
if ($isRelay || version_compare(phpversion('redis'), '6.0', '<')) {
Expand Down
9 changes: 6 additions & 3 deletions tests/DependencyInjection/SncRedisExtensionEnvTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public function testPredisDefaultParameterConfig(): void
'database' => null,
'username' => null,
'password' => null,
'sentinel_auth' => null,
'sentinel_username' => null,
'sentinel_password' => null,
'logging' => false,
],
'commands' => ['foo' => 'Foo\Bar\Baz'],
Expand Down Expand Up @@ -133,7 +134,8 @@ public function testPhpredisFullConfig(): void
'database' => null,
'username' => null,
'password' => null,
'sentinel_auth' => null,
'sentinel_username' => null,
'sentinel_password' => null,
'logging' => false,
],
'connection_async' => false,
Expand Down Expand Up @@ -172,7 +174,8 @@ public function testPhpredisWithAclConfig(): void
'database' => null,
'logging' => false,
'ssl_context' => null,
'sentinel_auth' => null,
'sentinel_username' => null,
'sentinel_password' => null,
],
'prefix' => null,
'read_write_timeout' => null,
Expand Down
18 changes: 14 additions & 4 deletions tests/Factory/PhpredisClientFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,17 @@ public function testCreateMinimalClusterConfig(): void

/**
* @requires extension relay
* @testWith ["RedisSentinel", "Redis"]
* ["Relay\\Sentinel", "Relay\\Relay"]
* @testWith ["RedisSentinel", "Redis", null, "sentinelauthdefaultpw"]
* ["RedisSentinel", "Redis", "sentinelauth", "sentinelauthpw"]
* ["Relay\\Sentinel", "Relay\\Relay", null, "sentinelauthdefaultpw"]
* ["Relay\\Sentinel", "Relay\\Relay", "sentinelauth", "sentinelauthpw"]
*/
public function testCreateSentinelConfig(string $sentinelClass, string $outputClass): void
{
public function testCreateSentinelConfig(
string $sentinelClass,
string $outputClass,
?string $sentinelUser,
?string $sentinelPassword
): void {
$this->logger->method('debug')->with(...$this->withConsecutive(
[$this->stringContains('Executing command "CONNECT 127.0.0.1 6379 5 <null>')],
['Executing command "AUTH sncredis"'],
Expand All @@ -130,6 +136,10 @@ public function testCreateSentinelConfig(string $sentinelClass, string $outputCl
'connection_timeout' => 5,
'connection_persistent' => false,
'service' => 'mymaster',
'parameters' => [
'sentinel_username' => $sentinelUser,
'sentinel_password' => $sentinelPassword,
],
],
'phpredissentinel',
true,
Expand Down
3 changes: 3 additions & 0 deletions tests/Functional/App/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ snc_redis:
options:
replication: true
service: mymaster
parameters:
sentinel_username: sentinelauth
sentinel_password: sentinelauthpw
with_acl:
type: predis
alias: with_acl
Expand Down

0 comments on commit 7410a58

Please sign in to comment.