apiKeyService = $this->prophesize(ApiKeyServiceInterface::class); $this->roleResolver = $this->prophesize(RoleResolverInterface::class); $this->roleResolver->determineRoles(Argument::type(InputInterface::class))->willReturn([]); $command = new GenerateKeyCommand($this->apiKeyService->reveal(), $this->roleResolver->reveal()); $app = new Application(); $app->add($command); $this->commandTester = new CommandTester($command); } /** @test */ public function noExpirationDateIsDefinedIfNotProvided(): void { $create = $this->apiKeyService->create(null)->willReturn(new ApiKey()); $this->commandTester->execute([]); $output = $this->commandTester->getDisplay(); self::assertStringContainsString('Generated API key: ', $output); $create->shouldHaveBeenCalledOnce(); } /** @test */ public function expirationDateIsDefinedIfProvided(): void { $this->apiKeyService->create(Argument::type(Chronos::class))->shouldBeCalledOnce() ->willReturn(new ApiKey()); $this->commandTester->execute([ '--expiration-date' => '2016-01-01', ]); } }