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

54 lines
1.6 KiB
PHP
Raw Normal View History

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