Skip to content

Commit 16bdd83

Browse files
authored
Added EXPIRETIME command to KeyPrefixProcessor (#1369)
* Added EXPIRETIME command to KeyPrefixProcessor * Fixed test responses for Redis 7.2 * Marked test as relay-incompatible
1 parent 912af82 commit 16bdd83

File tree

5 files changed

+24
-2
lines changed

5 files changed

+24
-2
lines changed

src/Command/Processor/KeyPrefixProcessor.php

+3
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@ public function __construct($prefix)
190190
/* ---------------- Redis 6.2 ---------------- */
191191
'GETDEL' => $prefixFirst,
192192

193+
/* ---------------- Redis 7.0 ---------------- */
194+
'EXPIRETIME' => $prefixFirst,
195+
193196
/* RedisJSON */
194197
'JSON.ARRAPPEND' => $prefixFirst,
195198
'JSON.ARRINDEX' => $prefixFirst,

tests/Predis/ClientTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -1255,6 +1255,7 @@ public function testGetIteratorWithNonTraversableConnectionNoException(): void
12551255

12561256
/**
12571257
* @group connected
1258+
* @group relay-incompatible
12581259
* @requiresRedisVersion >= 7.2.0
12591260
*/
12601261
public function testSetClientInfoOnConnection(): void

tests/Predis/Command/Processor/KeyPrefixProcessorTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -978,6 +978,11 @@ public function commandArgumentsDataProvider(): array
978978
['key'],
979979
['prefix:key'],
980980
],
981+
/* ---------------- Redis 7.0 ---------------- */
982+
['EXPIRETIME',
983+
['key'],
984+
['prefix:key'],
985+
],
981986
];
982987
}
983988
}

tests/Predis/Command/Redis/ACL_Test.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function testDryRunSimulateExecutionOfGivenCommandByUser(): void
101101
$redis->acl->dryRun('Test', 'SET', 'foo', 'bar')
102102
);
103103
$this->assertEquals(
104-
"This user has no permissions to run the 'get' command",
104+
"User Test has no permissions to run the 'get' command",
105105
$redis->acl->dryRun('Test', 'GET', 'foo')
106106
);
107107
}

tests/Predis/Command/Redis/OBJECT_Test.php

+14-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public function testObjectIdletime(): void
8282

8383
/**
8484
* @group connected
85-
* @requiresRedisVersion >= 2.2.3
85+
* @requiresRedisVersion < 7.2.0
8686
*/
8787
public function testObjectEncoding(): void
8888
{
@@ -92,6 +92,19 @@ public function testObjectEncoding(): void
9292
$this->assertMatchesRegularExpression('/[zip|quick]list/', $redis->object('ENCODING', 'list:metavars'));
9393
}
9494

95+
/**
96+
* @group connected
97+
* @requiresRedisVersion >= 7.2.0
98+
*/
99+
public function testObjectEncodingReturnsUpdatedResponse(): void
100+
{
101+
$redis = $this->getClient();
102+
103+
$redis->lpush('list:metavars', 'foo', 'bar');
104+
105+
$this->assertSame('listpack', $redis->object('ENCODING', 'list:metavars'));
106+
}
107+
95108
/**
96109
* @group connected
97110
* @requiresRedisVersion >= 2.2.3

0 commit comments

Comments
 (0)