@@ -84,6 +84,34 @@ public function testDumpFilterArguments(): void
84
84
$ this ->assertSameValues ($ expected , $ command ->getArguments ());
85
85
}
86
86
87
+ /**
88
+ * @group disconnected
89
+ */
90
+ public function testKillFilterArguments (): void
91
+ {
92
+ $ arguments = ['KILL ' ];
93
+ $ expected = ['KILL ' ];
94
+
95
+ $ command = $ this ->getCommand ();
96
+ $ command ->setArguments ($ arguments );
97
+
98
+ $ this ->assertSameValues ($ expected , $ command ->getArguments ());
99
+ }
100
+
101
+ /**
102
+ * @group disconnected
103
+ */
104
+ public function testStatsFilterArguments (): void
105
+ {
106
+ $ arguments = ['STATS ' ];
107
+ $ expected = ['STATS ' ];
108
+
109
+ $ command = $ this ->getCommand ();
110
+ $ command ->setArguments ($ arguments );
111
+
112
+ $ this ->assertSameValues ($ expected , $ command ->getArguments ());
113
+ }
114
+
87
115
/**
88
116
* @dataProvider flushArgumentsProvider
89
117
* @group disconnected
@@ -108,6 +136,18 @@ public function testRestoreFilterArguments(array $actualArguments, array $expect
108
136
$ this ->assertSameValues ($ expectedResponse , $ command ->getArguments ());
109
137
}
110
138
139
+ /**
140
+ * @dataProvider listArgumentsProvider
141
+ * @group disconnected
142
+ */
143
+ public function testListFilterArguments (array $ actualArguments , array $ expectedResponse ): void
144
+ {
145
+ $ command = $ this ->getCommand ();
146
+ $ command ->setArguments ($ actualArguments );
147
+
148
+ $ this ->assertSameValues ($ expectedResponse , $ command ->getArguments ());
149
+ }
150
+
111
151
/**
112
152
* @group disconnected
113
153
*/
@@ -267,6 +307,53 @@ public function testRestoresLibraryFromSerializedPayload(): void
267
307
$ this ->assertEquals ('OK ' , $ redis ->function ->restore ($ serializedPayload ));
268
308
}
269
309
310
+ /**
311
+ * @group connected
312
+ * @group relay-incompatible
313
+ * @return void
314
+ * @requiresRedisVersion >= 7.0.0
315
+ */
316
+ public function testListReturnsListOfAvailableFunctions (): void
317
+ {
318
+ $ redis = $ this ->getClient ();
319
+ $ redis ->function ->flush ();
320
+ $ expectedResponse = [
321
+ [
322
+ 'library_name ' , 'mylib ' , 'engine ' , 'LUA ' , 'functions ' ,
323
+ [
324
+ ['name ' , 'myfunc ' , 'description ' , null , 'flags ' , []],
325
+ ],
326
+ ],
327
+ ];
328
+
329
+ $ libName = $ redis ->function ->load (
330
+ "#!lua name= {$ this ->libName } \n redis.register_function('myfunc', function(keys, args) return args[1] end) "
331
+ );
332
+
333
+ $ this ->assertEquals ($ this ->libName , $ libName );
334
+ $ this ->assertSame ($ expectedResponse , $ redis ->function ->list ());
335
+ }
336
+
337
+ /**
338
+ * @group connected
339
+ * @group relay-incompatible
340
+ * @return void
341
+ * @requiresRedisVersion >= 7.0.0
342
+ */
343
+ public function testStatsReturnsInformationAboutRunningScript (): void
344
+ {
345
+ $ redis = $ this ->getClient ();
346
+ $ redis ->function ->flush ();
347
+ $ expectedResponse = ['running_script ' , null , 'engines ' , ['LUA ' , ['libraries_count ' , 1 , 'functions_count ' , 1 ]]];
348
+
349
+ $ libName = $ redis ->function ->load (
350
+ "#!lua name= {$ this ->libName } \n redis.register_function('myfunc', function(keys, args) return args[1] end) "
351
+ );
352
+
353
+ $ this ->assertEquals ($ this ->libName , $ libName );
354
+ $ this ->assertSame ($ expectedResponse , $ redis ->function ->stats ());
355
+ }
356
+
270
357
/**
271
358
* @group connected
272
359
* @return void
@@ -283,6 +370,22 @@ public function testDeleteFunctionThrowsErrorOnNonExistingLibrary(): void
283
370
$ redis ->function ->delete ($ this ->libName );
284
371
}
285
372
373
+ /**
374
+ * @group connected
375
+ * @return void
376
+ * @requiresRedisVersion >= 7.0.0
377
+ */
378
+ public function testKillThrowsExceptionOnNonExistingRunningScript (): void
379
+ {
380
+ $ redis = $ this ->getClient ();
381
+ $ redis ->function ->flush ();
382
+
383
+ $ this ->expectException (ServerException::class);
384
+ $ this ->expectExceptionMessage ('NOTBUSY No scripts in execution right now. ' );
385
+
386
+ $ redis ->function ->kill ();
387
+ }
388
+
286
389
public function flushArgumentsProvider (): array
287
390
{
288
391
return [
@@ -310,4 +413,26 @@ public function restoreArgumentsProvider(): array
310
413
],
311
414
];
312
415
}
416
+
417
+ public function listArgumentsProvider (): array
418
+ {
419
+ return [
420
+ 'with default arguments ' => [
421
+ ['LIST ' , null , false ],
422
+ ['LIST ' ],
423
+ ],
424
+ 'with LIBRARYNAME modifier ' => [
425
+ ['LIST ' , 'libraryname ' , false ],
426
+ ['LIST ' , 'LIBRARYNAME ' , 'libraryname ' ],
427
+ ],
428
+ 'with WITHCODE modifier ' => [
429
+ ['LIST ' , null , true ],
430
+ ['LIST ' , 'WITHCODE ' ],
431
+ ],
432
+ 'with all arguments ' => [
433
+ ['LIST ' , 'libraryname ' , true ],
434
+ ['LIST ' , 'LIBRARYNAME ' , 'libraryname ' , 'WITHCODE ' ],
435
+ ],
436
+ ];
437
+ }
313
438
}
0 commit comments