@@ -39,8 +39,8 @@ protected function getExpectedId(): string
39
39
*/
40
40
public function testFilterArguments (): void
41
41
{
42
- $ arguments = ['key ' , 'ttl ' ];
43
- $ expected = ['key ' , 'ttl ' ];
42
+ $ arguments = ['key ' , 'ttl ' , ' xx ' ];
43
+ $ expected = ['key ' , 'ttl ' , ' XX ' ];
44
44
45
45
$ command = $ this ->getCommand ();
46
46
$ command ->setArguments ($ arguments );
@@ -87,6 +87,33 @@ public function testCanExpireKeys(): void
87
87
$ this ->assertSame (0 , $ redis ->exists ('foo ' ));
88
88
}
89
89
90
+ /**
91
+ * @medium
92
+ * @group connected
93
+ * @dataProvider keysProvider
94
+ * @group slow
95
+ * @param array $firstKeyArguments
96
+ * @param array $secondKeyArguments
97
+ * @param array $positivePathArguments
98
+ * @param array $negativePathArguments
99
+ * @return void
100
+ * @requiresRedisVersion >= 7.0.0
101
+ */
102
+ public function testSetNewExpirationTimeWithExpireOptions (
103
+ array $ firstKeyArguments ,
104
+ array $ secondKeyArguments ,
105
+ array $ positivePathArguments ,
106
+ array $ negativePathArguments
107
+ ): void {
108
+ $ redis = $ this ->getClient ();
109
+
110
+ $ redis ->set (...$ firstKeyArguments );
111
+ $ redis ->set (...$ secondKeyArguments );
112
+
113
+ $ this ->assertSame (1 , $ redis ->expire (...$ positivePathArguments ));
114
+ $ this ->assertSame (0 , $ redis ->expire (...$ negativePathArguments ));
115
+ }
116
+
90
117
/**
91
118
* @group connected
92
119
*/
@@ -99,4 +126,34 @@ public function testDeletesKeysOnNegativeTTL(): void
99
126
$ this ->assertSame (1 , $ redis ->expire ('foo ' , -10 ));
100
127
$ this ->assertSame (0 , $ redis ->exists ('foo ' ));
101
128
}
129
+
130
+ public function keysProvider (): array
131
+ {
132
+ return [
133
+ 'only if key has no expiry ' => [
134
+ ['noExpiry ' , 'value ' ],
135
+ ['withExpiry ' , 'value ' , 'EX ' , 10 ],
136
+ ['noExpiry ' , 2 , 'NX ' ],
137
+ ['withExpiry ' , 2 , 'NX ' ],
138
+ ],
139
+ 'only if key has expiry ' => [
140
+ ['noExpiry ' , 'value ' ],
141
+ ['withExpiry ' , 'value ' , 'EX ' , 10 ],
142
+ ['withExpiry ' , 2 , 'XX ' ],
143
+ ['noExpiry ' , 2 , 'XX ' ],
144
+ ],
145
+ 'only if new expiry is greater then current one ' => [
146
+ ['newExpiryLower ' , 'value ' , 'EXAT ' , time () + 1000 ],
147
+ ['newExpiryGreater ' , 'value ' , 'EXAT ' , time () + 10 ],
148
+ ['newExpiryGreater ' , 20 , 'GT ' ],
149
+ ['newExpiryLower ' , 20 , 'GT ' ],
150
+ ],
151
+ 'only if new expiry is lower then current one ' => [
152
+ ['newExpiryLower ' , 'value ' , 'EXAT ' , time () + 1000 ],
153
+ ['newExpiryGreater ' , 'value ' , 'EXAT ' , time () + 10 ],
154
+ ['newExpiryLower ' , 20 , 'LT ' ],
155
+ ['newExpiryGreater ' , 20 , 'LT ' ],
156
+ ],
157
+ ];
158
+ }
102
159
}
0 commit comments