2016-08-06 19:07:48 +03:00
|
|
|
<?php
|
2019-10-05 18:26:10 +03:00
|
|
|
|
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;
|
2023-02-09 22:42:18 +03:00
|
|
|
use PHPUnit\Framework\Attributes\Test;
|
2022-10-22 13:52:11 +03:00
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2021-01-10 22:14:06 +03:00
|
|
|
use Shlinkio\Shlink\CLI\ApiKey\RoleResolverInterface;
|
2023-09-21 09:58:05 +03:00
|
|
|
use Shlinkio\Shlink\CLI\Command\Api\GenerateKeyCommand;
|
2023-09-19 10:10:17 +03:00
|
|
|
use Shlinkio\Shlink\Rest\ApiKey\Model\ApiKeyMeta;
|
2018-07-31 20:59:41 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Entity\ApiKey;
|
2019-12-30 00:27:00 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Service\ApiKeyServiceInterface;
|
2021-04-08 14:42:56 +03:00
|
|
|
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
|
2021-01-10 22:14:06 +03:00
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
2016-08-06 19:07:48 +03:00
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
|
2023-09-21 09:58:05 +03:00
|
|
|
class GenerateKeyCommandTest extends TestCase
|
2016-08-06 19:07:48 +03:00
|
|
|
{
|
2021-04-08 14:42:56 +03:00
|
|
|
use CliTestUtilsTrait;
|
2020-11-02 13:50:19 +03:00
|
|
|
|
2019-12-30 00:27:00 +03:00
|
|
|
private CommandTester $commandTester;
|
2022-10-24 20:53:13 +03:00
|
|
|
private MockObject & ApiKeyServiceInterface $apiKeyService;
|
2016-08-06 19:07:48 +03:00
|
|
|
|
2022-09-11 13:02:49 +03:00
|
|
|
protected function setUp(): void
|
2016-08-06 19:07:48 +03:00
|
|
|
{
|
2022-10-22 13:52:11 +03:00
|
|
|
$this->apiKeyService = $this->createMock(ApiKeyServiceInterface::class);
|
|
|
|
$roleResolver = $this->createMock(RoleResolverInterface::class);
|
|
|
|
$roleResolver->method('determineRoles')->with($this->isInstanceOf(InputInterface::class))->willReturn([]);
|
2021-01-10 22:14:06 +03:00
|
|
|
|
2023-09-21 09:58:05 +03:00
|
|
|
$command = new GenerateKeyCommand($this->apiKeyService, $roleResolver);
|
2021-04-08 14:42:56 +03:00
|
|
|
$this->commandTester = $this->testerForCommand($command);
|
2016-08-06 19:07:48 +03:00
|
|
|
}
|
|
|
|
|
2023-02-09 22:42:18 +03:00
|
|
|
#[Test]
|
2020-01-01 22:48:31 +03:00
|
|
|
public function noExpirationDateIsDefinedIfNotProvided(): void
|
2016-08-06 19:07:48 +03:00
|
|
|
{
|
2022-10-22 13:52:11 +03:00
|
|
|
$this->apiKeyService->expects($this->once())->method('create')->with(
|
2023-09-19 10:10:17 +03:00
|
|
|
$this->callback(fn (ApiKeyMeta $meta) => $meta->name === null && $meta->expirationDate === null),
|
2022-10-22 13:52:11 +03:00
|
|
|
)->willReturn(ApiKey::create());
|
2018-11-17 19:36:22 +03:00
|
|
|
|
2019-04-14 23:20:58 +03:00
|
|
|
$this->commandTester->execute([]);
|
2018-11-17 19:36:22 +03:00
|
|
|
$output = $this->commandTester->getDisplay();
|
|
|
|
|
2020-10-04 01:35:14 +03:00
|
|
|
self::assertStringContainsString('Generated API key: ', $output);
|
2016-08-06 19:07:48 +03:00
|
|
|
}
|
|
|
|
|
2023-02-09 22:42:18 +03:00
|
|
|
#[Test]
|
2020-01-01 22:48:31 +03:00
|
|
|
public function expirationDateIsDefinedIfProvided(): void
|
2016-08-06 19:07:48 +03:00
|
|
|
{
|
2022-10-22 13:52:11 +03:00
|
|
|
$this->apiKeyService->expects($this->once())->method('create')->with(
|
2023-09-19 10:10:17 +03:00
|
|
|
$this->callback(fn (ApiKeyMeta $meta) => $meta->expirationDate instanceof Chronos),
|
2022-10-22 13:52:11 +03:00
|
|
|
)->willReturn(ApiKey::create());
|
2021-03-06 20:27:34 +03:00
|
|
|
|
2016-08-06 19:07:48 +03:00
|
|
|
$this->commandTester->execute([
|
2021-01-30 13:25:20 +03:00
|
|
|
'--expiration-date' => '2016-01-01',
|
2016-08-06 19:07:48 +03:00
|
|
|
]);
|
|
|
|
}
|
2021-03-06 20:27:34 +03:00
|
|
|
|
2023-02-09 22:42:18 +03:00
|
|
|
#[Test]
|
2021-03-06 20:27:34 +03:00
|
|
|
public function nameIsDefinedIfProvided(): void
|
|
|
|
{
|
2022-10-22 13:52:11 +03:00
|
|
|
$this->apiKeyService->expects($this->once())->method('create')->with(
|
2023-09-19 11:14:04 +03:00
|
|
|
$this->callback(fn (ApiKeyMeta $meta) => $meta->name === 'Alice'),
|
2022-10-22 13:52:11 +03:00
|
|
|
)->willReturn(ApiKey::create());
|
2021-03-06 20:27:34 +03:00
|
|
|
|
|
|
|
$this->commandTester->execute([
|
|
|
|
'--name' => 'Alice',
|
|
|
|
]);
|
|
|
|
}
|
2016-08-06 19:07:48 +03:00
|
|
|
}
|