2016-08-06 19:07:48 +03:00
|
|
|
<?php
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-08-06 19:07:48 +03:00
|
|
|
namespace ShlinkioTest\Shlink\CLI\Command\Api;
|
|
|
|
|
2018-09-29 13:52:32 +03:00
|
|
|
use Cake\Chronos\Chronos;
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-08-06 19:07:48 +03:00
|
|
|
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;
|
2016-08-06 19:07:48 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Service\ApiKeyService;
|
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
use Zend\I18n\Translator\Translator;
|
|
|
|
|
|
|
|
class GenerateKeyCommandTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var CommandTester
|
|
|
|
*/
|
|
|
|
protected $commandTester;
|
|
|
|
/**
|
|
|
|
* @var ObjectProphecy
|
|
|
|
*/
|
|
|
|
protected $apiKeyService;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$this->apiKeyService = $this->prophesize(ApiKeyService::class);
|
|
|
|
$command = new GenerateKeyCommand($this->apiKeyService->reveal(), Translator::factory([]));
|
|
|
|
$app = new Application();
|
|
|
|
$app->add($command);
|
|
|
|
$this->commandTester = new CommandTester($command);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function noExpirationDateIsDefinedIfNotProvided()
|
|
|
|
{
|
2018-11-17 19:36:22 +03:00
|
|
|
$create = $this->apiKeyService->create(null)->willReturn(new ApiKey());
|
|
|
|
|
2016-08-06 19:07:48 +03:00
|
|
|
$this->commandTester->execute([
|
|
|
|
'command' => 'api-key:generate',
|
|
|
|
]);
|
2018-11-17 19:36:22 +03:00
|
|
|
$output = $this->commandTester->getDisplay();
|
|
|
|
|
|
|
|
$this->assertContains('Generated API key: ', $output);
|
|
|
|
$create->shouldHaveBeenCalledOnce();
|
2016-08-06 19:07:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
2018-07-31 20:59:41 +03:00
|
|
|
public function expirationDateIsDefinedIfProvided()
|
2016-08-06 19:07:48 +03:00
|
|
|
{
|
2018-11-11 15:18:21 +03:00
|
|
|
$this->apiKeyService->create(Argument::type(Chronos::class))->shouldBeCalledOnce()
|
2018-09-29 13:52:32 +03:00
|
|
|
->willReturn(new ApiKey());
|
2016-08-06 19:07:48 +03:00
|
|
|
$this->commandTester->execute([
|
|
|
|
'command' => 'api-key:generate',
|
|
|
|
'--expirationDate' => '2016-01-01',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|