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;
|
|
|
|
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-08-06 19:50:50 +03:00
|
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
|
|
use Shlinkio\Shlink\CLI\Command\Api\ListKeysCommand;
|
|
|
|
use Shlinkio\Shlink\Rest\Entity\ApiKey;
|
2019-12-30 00:27:00 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Service\ApiKeyServiceInterface;
|
2016-08-06 19:50:50 +03:00
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
|
|
|
|
class ListKeysCommandTest extends TestCase
|
|
|
|
{
|
2019-12-30 00:27:00 +03:00
|
|
|
private CommandTester $commandTester;
|
|
|
|
private ObjectProphecy $apiKeyService;
|
2016-08-06 19:50:50 +03:00
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
public function setUp(): void
|
2016-08-06 19:50:50 +03:00
|
|
|
{
|
2019-12-30 00:27:00 +03:00
|
|
|
$this->apiKeyService = $this->prophesize(ApiKeyServiceInterface::class);
|
2018-11-18 18:02:52 +03:00
|
|
|
$command = new ListKeysCommand($this->apiKeyService->reveal());
|
2016-08-06 19:50:50 +03:00
|
|
|
$app = new Application();
|
|
|
|
$app->add($command);
|
|
|
|
$this->commandTester = new CommandTester($command);
|
|
|
|
}
|
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
/** @test */
|
|
|
|
public function everythingIsListedIfEnabledOnlyIsNotProvided(): void
|
2016-08-06 19:50:50 +03:00
|
|
|
{
|
|
|
|
$this->apiKeyService->listKeys(false)->willReturn([
|
|
|
|
new ApiKey(),
|
|
|
|
new ApiKey(),
|
|
|
|
new ApiKey(),
|
2018-11-11 15:18:21 +03:00
|
|
|
])->shouldBeCalledOnce();
|
2018-11-17 19:36:22 +03:00
|
|
|
|
2019-02-16 23:24:32 +03:00
|
|
|
$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('Key', $output);
|
|
|
|
$this->assertStringContainsString('Is enabled', $output);
|
|
|
|
$this->assertStringContainsString(' +++ ', $output);
|
|
|
|
$this->assertStringNotContainsString(' --- ', $output);
|
|
|
|
$this->assertStringContainsString('Expiration date', $output);
|
2016-08-06 19:50:50 +03:00
|
|
|
}
|
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
/** @test */
|
|
|
|
public function onlyEnabledKeysAreListedIfEnabledOnlyIsProvided(): void
|
2016-08-06 19:50:50 +03:00
|
|
|
{
|
|
|
|
$this->apiKeyService->listKeys(true)->willReturn([
|
2018-11-17 19:36:22 +03:00
|
|
|
(new ApiKey())->disable(),
|
2016-08-06 19:50:50 +03:00
|
|
|
new ApiKey(),
|
2018-11-11 15:18:21 +03:00
|
|
|
])->shouldBeCalledOnce();
|
2018-11-17 19:36:22 +03:00
|
|
|
|
2016-08-06 19:50:50 +03:00
|
|
|
$this->commandTester->execute([
|
|
|
|
'--enabledOnly' => true,
|
|
|
|
]);
|
2018-11-17 19:36:22 +03:00
|
|
|
$output = $this->commandTester->getDisplay();
|
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
$this->assertStringContainsString('Key', $output);
|
|
|
|
$this->assertStringNotContainsString('Is enabled', $output);
|
|
|
|
$this->assertStringNotContainsString(' +++ ', $output);
|
|
|
|
$this->assertStringNotContainsString(' --- ', $output);
|
|
|
|
$this->assertStringContainsString('Expiration date', $output);
|
2016-08-06 19:50:50 +03:00
|
|
|
}
|
|
|
|
}
|