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