12
12
13
13
namespace Predis \Connection ;
14
14
15
+ use Predis \Client ;
16
+ use Predis \Command \RawCommand ;
15
17
use PredisTestCase ;
16
18
use ReflectionObject ;
17
19
use stdClass ;
@@ -302,10 +304,12 @@ public function testCreateConnectionWithInitializationCommands(): void
302
304
->method ('getParameters ' )
303
305
->willReturn ($ parameters );
304
306
$ connection
305
- ->expects ($ this ->exactly (2 ))
307
+ ->expects ($ this ->exactly (4 ))
306
308
->method ('addConnectCommand ' )
307
309
->withConsecutive (
308
310
[$ this ->isRedisCommand ('AUTH ' , ['foobar ' ])],
311
+ [$ this ->isRedisCommand ('CLIENT ' , ['SETINFO ' , 'LIB-NAME ' , 'predis ' ])],
312
+ [$ this ->isRedisCommand ('CLIENT ' , ['SETINFO ' , 'LIB-VER ' , Client::VERSION ])],
309
313
[$ this ->isRedisCommand ('SELECT ' , ['0 ' ])]
310
314
);
311
315
@@ -331,9 +335,13 @@ public function testCreateConnectionWithPasswordAndNoUsernameAddsInitializationC
331
335
$ connection ->expects ($ this ->once ())
332
336
->method ('getParameters ' )
333
337
->will ($ this ->returnValue ($ parameters ));
334
- $ connection ->expects ($ this ->once ( ))
338
+ $ connection ->expects ($ this ->exactly ( 3 ))
335
339
->method ('addConnectCommand ' )
336
- ->with ($ this ->isRedisCommand ('AUTH ' , ['foobar ' ]));
340
+ ->withConsecutive (
341
+ [$ this ->isRedisCommand ('AUTH ' , ['foobar ' ])],
342
+ [$ this ->isRedisCommand ('CLIENT ' , ['SETINFO ' , 'LIB-NAME ' , 'predis ' ])],
343
+ [$ this ->isRedisCommand ('CLIENT ' , ['SETINFO ' , 'LIB-VER ' , Client::VERSION ])]
344
+ );
337
345
338
346
$ factory = new Factory ();
339
347
@@ -358,9 +366,13 @@ public function testCreateConnectionWithPasswordAndUsernameAddsInitializationCom
358
366
$ connection ->expects ($ this ->once ())
359
367
->method ('getParameters ' )
360
368
->will ($ this ->returnValue ($ parameters ));
361
- $ connection ->expects ($ this ->once ( ))
369
+ $ connection ->expects ($ this ->exactly ( 3 ))
362
370
->method ('addConnectCommand ' )
363
- ->with ($ this ->isRedisCommand ('AUTH ' , ['myusername ' , 'foobar ' ]));
371
+ ->withConsecutive (
372
+ [$ this ->isRedisCommand ('AUTH ' , ['myusername ' , 'foobar ' ])],
373
+ [$ this ->isRedisCommand ('CLIENT ' , ['SETINFO ' , 'LIB-NAME ' , 'predis ' ])],
374
+ [$ this ->isRedisCommand ('CLIENT ' , ['SETINFO ' , 'LIB-VER ' , Client::VERSION ])]
375
+ );
364
376
365
377
$ factory = new Factory ();
366
378
@@ -384,8 +396,12 @@ public function testCreateConnectionWithUsernameAndNoPasswordDoesNotAddInitializ
384
396
$ connection ->expects ($ this ->once ())
385
397
->method ('getParameters ' )
386
398
->will ($ this ->returnValue ($ parameters ));
387
- $ connection ->expects ($ this ->never ())
388
- ->method ('addConnectCommand ' );
399
+ $ connection ->expects ($ this ->exactly (2 ))
400
+ ->method ('addConnectCommand ' )
401
+ ->withConsecutive (
402
+ [$ this ->isRedisCommand ('CLIENT ' , ['SETINFO ' , 'LIB-NAME ' , 'predis ' ])],
403
+ [$ this ->isRedisCommand ('CLIENT ' , ['SETINFO ' , 'LIB-VER ' , Client::VERSION ])]
404
+ );
389
405
390
406
$ factory = new Factory ();
391
407
@@ -410,8 +426,12 @@ public function testCreateConnectionWithEmptyParametersDoesNotAddInitializationC
410
426
$ connection ->expects ($ this ->once ())
411
427
->method ('getParameters ' )
412
428
->will ($ this ->returnValue ($ parameters ));
413
- $ connection ->expects ($ this ->never ())
414
- ->method ('addConnectCommand ' );
429
+ $ connection ->expects ($ this ->exactly (2 ))
430
+ ->method ('addConnectCommand ' )
431
+ ->withConsecutive (
432
+ [$ this ->isRedisCommand ('CLIENT ' , ['SETINFO ' , 'LIB-NAME ' , 'predis ' ])],
433
+ [$ this ->isRedisCommand ('CLIENT ' , ['SETINFO ' , 'LIB-VER ' , Client::VERSION ])]
434
+ );
415
435
416
436
$ factory = new Factory ();
417
437
@@ -538,6 +558,27 @@ public function testDefineAndUndefineConnection(): void
538
558
$ factory ->create ('test://127.0.0.1 ' );
539
559
}
540
560
561
+ /**
562
+ * @group disconnected
563
+ * @return void
564
+ */
565
+ public function testSetClientNameAndVersionOnConnection (): void
566
+ {
567
+ $ parameters = [];
568
+
569
+ $ factory = new Factory ();
570
+ $ connection = $ factory ->create ($ parameters );
571
+ $ initCommands = $ connection ->getInitCommands ();
572
+
573
+ $ this ->assertInstanceOf (RawCommand::class, $ initCommands [0 ]);
574
+ $ this ->assertSame ('CLIENT ' , $ initCommands [0 ]->getId ());
575
+ $ this ->assertSame (['SETINFO ' , 'LIB-NAME ' , 'predis ' ], $ initCommands [0 ]->getArguments ());
576
+
577
+ $ this ->assertInstanceOf (RawCommand::class, $ initCommands [1 ]);
578
+ $ this ->assertSame ('CLIENT ' , $ initCommands [1 ]->getId ());
579
+ $ this ->assertSame (['SETINFO ' , 'LIB-VER ' , Client::VERSION ], $ initCommands [1 ]->getArguments ());
580
+ }
581
+
541
582
// ******************************************************************** //
542
583
// ---- HELPER METHODS ------------------------------------------------ //
543
584
// ******************************************************************** //
0 commit comments