shlink/module/CLI/test/Command/Api/GenerateKeyCommandTest.php

53 lines
1.6 KiB
PHP
Raw Normal View History

<?php
2019-10-05 10:26:10 -05:00
2017-10-12 03:13:20 -05:00
declare(strict_types=1);
namespace ShlinkioTest\Shlink\CLI\Command\Api;
use Cake\Chronos\Chronos;
2017-03-24 14:34:18 -05:00
use PHPUnit\Framework\TestCase;
use Prophecy\Argument;
use Prophecy\Prophecy\ObjectProphecy;
use Shlinkio\Shlink\CLI\Command\Api\GenerateKeyCommand;
2018-07-31 12:59:41 -05:00
use Shlinkio\Shlink\Rest\Entity\ApiKey;
2019-12-29 15:27:00 -06:00
use Shlinkio\Shlink\Rest\Service\ApiKeyServiceInterface;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;
class GenerateKeyCommandTest extends TestCase
{
2019-12-29 15:27:00 -06:00
private CommandTester $commandTester;
private ObjectProphecy $apiKeyService;
2019-02-16 03:53:45 -06:00
public function setUp(): void
{
2019-12-29 15:27:00 -06:00
$this->apiKeyService = $this->prophesize(ApiKeyServiceInterface::class);
2018-11-18 09:02:52 -06:00
$command = new GenerateKeyCommand($this->apiKeyService->reveal());
$app = new Application();
$app->add($command);
$this->commandTester = new CommandTester($command);
}
2019-02-17 13:28:34 -06:00
/** @test */
2020-01-01 13:48:31 -06:00
public function noExpirationDateIsDefinedIfNotProvided(): void
{
2018-11-17 10:36:22 -06:00
$create = $this->apiKeyService->create(null)->willReturn(new ApiKey());
$this->commandTester->execute([]);
2018-11-17 10:36:22 -06:00
$output = $this->commandTester->getDisplay();
2019-02-16 03:53:45 -06:00
$this->assertStringContainsString('Generated API key: ', $output);
2018-11-17 10:36:22 -06:00
$create->shouldHaveBeenCalledOnce();
}
2019-02-17 13:28:34 -06:00
/** @test */
2020-01-01 13:48:31 -06:00
public function expirationDateIsDefinedIfProvided(): void
{
2018-11-11 06:18:21 -06:00
$this->apiKeyService->create(Argument::type(Chronos::class))->shouldBeCalledOnce()
->willReturn(new ApiKey());
$this->commandTester->execute([
'--expirationDate' => '2016-01-01',
]);
}
}