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