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

68 lines
2.2 KiB
PHP
Raw Normal View History

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