apiKeyService = $this->prophesize(ApiKeyService::class); $command = new DisableKeyCommand($this->apiKeyService->reveal(), Translator::factory([])); $app = new Application(); $app->add($command); $this->commandTester = new CommandTester($command); } /** * @test */ public function providedApiKeyIsDisabled() { $apiKey = 'abcd1234'; $this->apiKeyService->disable($apiKey)->shouldBeCalledOnce(); $this->commandTester->execute([ 'command' => 'api-key:disable', 'apiKey' => $apiKey, ]); } /** * @test */ public function errorIsReturnedIfServiceThrowsException() { $apiKey = 'abcd1234'; $this->apiKeyService->disable($apiKey)->willThrow(InvalidArgumentException::class) ->shouldBeCalledOnce(); $this->commandTester->execute([ 'command' => 'api-key:disable', 'apiKey' => $apiKey, ]); $output = $this->commandTester->getDisplay(); $this->assertContains('API key "abcd1234" does not exist.', $output); } }