serializeCommand() . (new PING())->serializeCommand() . (new PING())->serializeCommand(); $connection = $this->getMockBuilder('Predis\Connection\NodeConnectionInterface')->getMock(); $connection ->expects($this->exactly(2)) ->method('executeCommand') ->withConsecutive( [$this->isRedisCommand('MULTI')], [$this->isRedisCommand('EXEC')] ) ->willReturnOnConsecutiveCalls( new Response\Status('OK'), [$pong, $pong, $pong] ); $connection ->expects($this->once()) ->method('write') ->with($buffer); $connection ->expects($this->exactly(3)) ->method('readResponse') ->willReturnOnConsecutiveCalls( $queued, $queued, $queued ); $connection ->expects($this->once()) ->method('getParameters') ->willReturn(new Parameters(['protocol' => 2])); $pipeline = new Atomic(new Client($connection)); $pipeline->ping(); $pipeline->ping(); $pipeline->ping(); $this->assertSame([$pong, $pong, $pong], $pipeline->execute()); } /** * @group disconnected */ public function testThrowsExceptionOnAbortedTransaction(): void { $buffer = (new PING())->serializeCommand() . (new PING())->serializeCommand() . (new PING())->serializeCommand(); $this->expectException('Predis\ClientException'); $this->expectExceptionMessage('The underlying transaction has been aborted by the server'); $queued = new Response\Status('QUEUED'); $connection = $this->getMockBuilder('Predis\Connection\NodeConnectionInterface')->getMock(); $connection ->expects($this->exactly(2)) ->method('executeCommand') ->withConsecutive( [$this->isRedisCommand('MULTI')], [$this->isRedisCommand('EXEC')] ) ->willReturnOnConsecutiveCalls( new Response\Status('OK'), null ); $connection ->expects($this->once()) ->method('write') ->with($buffer); $connection ->expects($this->exactly(3)) ->method('readResponse') ->willReturnOnConsecutiveCalls( $queued, $queued, $queued ); $pipeline = new Atomic(new Client($connection)); $pipeline->ping(); $pipeline->ping(); $pipeline->ping(); $pipeline->execute(); } /** * @group disconnected */ public function testPipelineWithErrorInTransaction(): void { $buffer = (new PING())->serializeCommand() . (new PING())->serializeCommand() . (new PING())->serializeCommand(); $this->expectException('Predis\Response\ServerException'); $this->expectExceptionMessage('ERR Test error'); $queued = new Response\Status('QUEUED'); $error = new Response\Error('ERR Test error'); $connection = $this->getMockBuilder('Predis\Connection\NodeConnectionInterface')->getMock(); $connection ->expects($this->exactly(2)) ->method('executeCommand') ->withConsecutive( [$this->isRedisCommand('MULTI')], [$this->isRedisCommand('DISCARD')] ) ->willReturnOnConsecutiveCalls( new Response\Status('OK'), new Response\Status('OK') ); $connection ->expects($this->once()) ->method('write') ->with($buffer); $connection ->expects($this->exactly(3)) ->method('readResponse') ->willReturnOnConsecutiveCalls( $queued, $queued, $error ); $pipeline = new Atomic(new Client($connection)); $pipeline->ping(); $pipeline->ping(); $pipeline->ping(); $pipeline->execute(); } /** * @group disconnected */ public function testThrowsServerExceptionOnResponseErrorByDefault(): void { $buffer = (new PING())->serializeCommand() . (new PING())->serializeCommand(); $this->expectException('Predis\Response\ServerException'); $this->expectExceptionMessage('ERR Test error'); $connection = $this->getMockBuilder('Predis\Connection\NodeConnectionInterface')->getMock(); $connection ->expects($this->exactly(2)) ->method('executeCommand') ->withConsecutive( [$this->isRedisCommand('MULTI')], [$this->isRedisCommand('DISCARD')] ) ->willReturnOnConsecutiveCalls( new Response\Status('OK'), new Response\Status('OK') ); $connection ->expects($this->once()) ->method('write') ->with($buffer); $connection ->expects($this->once()) ->method('readResponse') ->willReturn( new Response\Error('ERR Test error') ); $pipeline = new Atomic(new Client($connection)); $pipeline->ping(); $pipeline->ping(); $pipeline->execute(); } /** * @group disconnected */ public function testReturnsResponseErrorWithClientExceptionsSetToFalse(): void { $buffer = (new PING())->serializeCommand() . (new PING())->serializeCommand() . (new PING())->serializeCommand(); $pong = new Response\Status('PONG'); $queued = new Response\Status('QUEUED'); $error = new Response\Error('ERR Test error'); $connection = $this->getMockBuilder('Predis\Connection\NodeConnectionInterface')->getMock(); $connection ->expects($this->exactly(2)) ->method('executeCommand') ->withConsecutive( [$this->isRedisCommand('MULTI')], [$this->isRedisCommand('EXEC')] ) ->willReturnOnConsecutiveCalls( new Response\Status('OK'), [$pong, $pong, $error] ); $connection ->expects($this->once()) ->method('write') ->with($buffer); $connection ->expects($this->exactly(3)) ->method('readResponse') ->willReturnOnConsecutiveCalls( $queued, $queued, $queued ); $connection ->expects($this->once()) ->method('getParameters') ->willReturn(new Parameters(['protocol' => 2])); $pipeline = new Atomic(new Client($connection, ['exceptions' => false])); $pipeline->ping(); $pipeline->ping(); $pipeline->ping(); $this->assertSame([$pong, $pong, $error], $pipeline->execute()); } /** * @group disconnected */ public function testExecutorWithAggregateConnection(): void { $this->expectException('Predis\ClientException'); $this->expectExceptionMessage("The class 'Predis\Pipeline\Atomic' does not support aggregate connections"); $connection = $this->getMockBuilder('Predis\Connection\AggregateConnectionInterface')->getMock(); $pipeline = new Atomic(new Client($connection)); $pipeline->ping(); $pipeline->execute(); } }