loggerMock = $this->getMockBuilder(\Psr\Log\LoggerInterface::class) ->disableOriginalConstructor() ->getMock(); $this->driverMock = $this->getMockBuilder(\Magento\Framework\Shell\Driver::class) ->disableOriginalConstructor() ->getMock(); $this->model = new Shell( $this->driverMock, $this->loggerMock ); } public function testExecuteSuccess() { $output = 'success'; $exitCode = 0; $command = 'escaped command'; $logEntry = $command . PHP_EOL . $output; $successfulResponse = new Response( [ 'output' => $output, 'exit_code' => $exitCode, 'escaped_command' => $command ] ); $this->driverMock->expects($this->once())->method('execute')->willReturn($successfulResponse); $this->loggerMock->expects($this->once())->method('info')->with($logEntry); $this->assertEquals($output, $this->model->execute($command, [])); } public function testExecuteFailure() { $output = 'failure'; $exitCode = 1; $command = 'escaped command'; $logEntry = $command . PHP_EOL . $output; $response = new Response( [ 'output' => $output, 'exit_code' => $exitCode, 'escaped_command' => $command ] ); $this->driverMock->expects($this->once())->method('execute')->willReturn($response); $this->loggerMock->expects($this->once())->method('error')->with($logEntry); $this->expectException(LocalizedException::class); $this->expectExceptionMessage("Command returned non-zero exit code:\n`$command`"); $this->model->execute($command, []); } }