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

157 lines
7.5 KiB
PHP
Raw Normal View History

2016-08-06 19:50:50 +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:50:50 +03:00
namespace ShlinkioTest\Shlink\CLI\Command\Api;
2021-12-10 15:42:33 +03:00
use Cake\Chronos\Chronos;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\MockObject\MockObject;
2017-03-24 22:34:18 +03:00
use PHPUnit\Framework\TestCase;
2016-08-06 19:50:50 +03:00
use Shlinkio\Shlink\CLI\Command\Api\ListKeysCommand;
use Shlinkio\Shlink\Core\Domain\Entity\Domain;
use Shlinkio\Shlink\Rest\ApiKey\Model\ApiKeyMeta;
use Shlinkio\Shlink\Rest\ApiKey\Model\RoleDefinition;
2016-08-06 19:50:50 +03:00
use Shlinkio\Shlink\Rest\Entity\ApiKey;
2019-12-30 00:27:00 +03:00
use Shlinkio\Shlink\Rest\Service\ApiKeyServiceInterface;
use ShlinkioTest\Shlink\CLI\Util\CliTestUtils;
2016-08-06 19:50:50 +03:00
use Symfony\Component\Console\Tester\CommandTester;
class ListKeysCommandTest extends TestCase
{
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:50:50 +03:00
protected function setUp(): void
2016-08-06 19:50:50 +03:00
{
$this->apiKeyService = $this->createMock(ApiKeyServiceInterface::class);
$this->commandTester = CliTestUtils::testerForCommand(new ListKeysCommand($this->apiKeyService));
2016-08-06 19:50:50 +03:00
}
#[Test, DataProvider('provideKeysAndOutputs')]
public function returnsExpectedOutput(array $keys, bool $enabledOnly, string $expected): void
2016-08-06 19:50:50 +03:00
{
$this->apiKeyService->expects($this->once())->method('listKeys')->with($enabledOnly)->willReturn($keys);
2018-11-17 19:36:22 +03:00
$this->commandTester->execute(['--enabled-only' => $enabledOnly]);
2018-11-17 19:36:22 +03:00
$output = $this->commandTester->getDisplay();
self::assertEquals($expected, $output);
2016-08-06 19:50:50 +03:00
}
2023-02-09 11:32:38 +03:00
public static function provideKeysAndOutputs(): iterable
2016-08-06 19:50:50 +03:00
{
2021-12-10 15:42:33 +03:00
$dateInThePast = Chronos::createFromFormat('Y-m-d H:i:s', '2020-01-01 00:00:00');
yield 'all keys' => [
2021-12-10 15:42:33 +03:00
[
$apiKey1 = ApiKey::create()->disable(),
2023-09-19 10:10:17 +03:00
$apiKey2 = ApiKey::fromMeta(ApiKeyMeta::fromParams(expirationDate: $dateInThePast)),
2021-12-10 15:42:33 +03:00
$apiKey3 = ApiKey::create(),
],
false,
<<<OUTPUT
2021-12-10 15:42:33 +03:00
+--------------------------------------+------+------------+---------------------------+-------+
| Key | Name | Is enabled | Expiration date | Roles |
+--------------------------------------+------+------------+---------------------------+-------+
| {$apiKey1} | - | --- | - | Admin |
+--------------------------------------+------+------------+---------------------------+-------+
| {$apiKey2} | - | --- | 2020-01-01T00:00:00+00:00 | Admin |
+--------------------------------------+------+------------+---------------------------+-------+
| {$apiKey3} | - | +++ | - | Admin |
+--------------------------------------+------+------------+---------------------------+-------+
2018-11-17 19:36:22 +03:00
OUTPUT,
];
yield 'enabled keys' => [
[$apiKey1 = ApiKey::create()->disable(), $apiKey2 = ApiKey::create()],
true,
<<<OUTPUT
+--------------------------------------+------+-----------------+-------+
| Key | Name | Expiration date | Roles |
+--------------------------------------+------+-----------------+-------+
| {$apiKey1} | - | - | Admin |
+--------------------------------------+------+-----------------+-------+
| {$apiKey2} | - | - | Admin |
+--------------------------------------+------+-----------------+-------+
OUTPUT,
];
yield 'with roles' => [
[
$apiKey1 = ApiKey::create(),
2023-02-09 11:32:38 +03:00
$apiKey2 = self::apiKeyWithRoles([RoleDefinition::forAuthoredShortUrls()]),
$apiKey3 = self::apiKeyWithRoles(
[RoleDefinition::forDomain(self::domainWithId(Domain::withAuthority('example.com')))],
2021-07-22 21:48:58 +03:00
),
$apiKey4 = ApiKey::create(),
2023-02-09 11:32:38 +03:00
$apiKey5 = self::apiKeyWithRoles([
RoleDefinition::forAuthoredShortUrls(),
2023-02-09 11:32:38 +03:00
RoleDefinition::forDomain(self::domainWithId(Domain::withAuthority('example.com'))),
]),
$apiKey6 = ApiKey::create(),
],
true,
<<<OUTPUT
+--------------------------------------+------+-----------------+--------------------------+
| Key | Name | Expiration date | Roles |
+--------------------------------------+------+-----------------+--------------------------+
| {$apiKey1} | - | - | Admin |
+--------------------------------------+------+-----------------+--------------------------+
| {$apiKey2} | - | - | Author only |
+--------------------------------------+------+-----------------+--------------------------+
| {$apiKey3} | - | - | Domain only: example.com |
+--------------------------------------+------+-----------------+--------------------------+
| {$apiKey4} | - | - | Admin |
+--------------------------------------+------+-----------------+--------------------------+
| {$apiKey5} | - | - | Author only |
| | | | Domain only: example.com |
+--------------------------------------+------+-----------------+--------------------------+
| {$apiKey6} | - | - | Admin |
+--------------------------------------+------+-----------------+--------------------------+
2021-03-06 20:27:34 +03:00
OUTPUT,
];
yield 'with names' => [
[
2023-09-19 10:10:17 +03:00
$apiKey1 = ApiKey::fromMeta(ApiKeyMeta::fromParams(name: 'Alice')),
$apiKey2 = ApiKey::fromMeta(ApiKeyMeta::fromParams(name: 'Alice and Bob')),
$apiKey3 = ApiKey::fromMeta(ApiKeyMeta::fromParams(name: '')),
$apiKey4 = ApiKey::create(),
2021-03-06 20:27:34 +03:00
],
true,
<<<OUTPUT
2021-03-14 10:28:21 +03:00
+--------------------------------------+---------------+-----------------+-------+
| Key | Name | Expiration date | Roles |
+--------------------------------------+---------------+-----------------+-------+
| {$apiKey1} | Alice | - | Admin |
+--------------------------------------+---------------+-----------------+-------+
2021-03-14 10:28:21 +03:00
| {$apiKey2} | Alice and Bob | - | Admin |
+--------------------------------------+---------------+-----------------+-------+
2021-03-14 10:28:21 +03:00
| {$apiKey3} | | - | Admin |
+--------------------------------------+---------------+-----------------+-------+
2021-03-14 10:28:21 +03:00
| {$apiKey4} | - | - | Admin |
+--------------------------------------+---------------+-----------------+-------+
OUTPUT,
];
}
2023-02-09 11:32:38 +03:00
private static function apiKeyWithRoles(array $roles): ApiKey
{
$apiKey = ApiKey::create();
foreach ($roles as $role) {
$apiKey->registerRole($role);
}
2018-11-17 19:36:22 +03:00
return $apiKey;
2016-08-06 19:50:50 +03:00
}
2022-10-24 21:11:25 +03:00
2023-02-09 11:32:38 +03:00
private static function domainWithId(Domain $domain): Domain
2022-10-24 21:11:25 +03:00
{
$domain->setId('1');
return $domain;
}
2016-08-06 19:50:50 +03:00
}