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

81 lines
2.3 KiB
PHP
Raw Normal View History

2016-08-06 19:50:50 +03:00
<?php
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;
use Shlinkio\Shlink\Rest\Service\ApiKeyService;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;
use Zend\I18n\Translator\Translator;
class ListKeysCommandTest extends TestCase
{
/**
* @var CommandTester
*/
protected $commandTester;
/**
* @var ObjectProphecy
*/
protected $apiKeyService;
public function setUp()
{
$this->apiKeyService = $this->prophesize(ApiKeyService::class);
$command = new ListKeysCommand($this->apiKeyService->reveal(), Translator::factory([]));
$app = new Application();
$app->add($command);
$this->commandTester = new CommandTester($command);
}
/**
* @test
*/
2018-11-17 19:36:22 +03:00
public function everythingIsListedIfEnabledOnlyIsNotProvided()
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
2016-08-06 19:50:50 +03:00
$this->commandTester->execute([
2018-11-17 19:36:22 +03:00
'command' => ListKeysCommand::NAME,
2016-08-06 19:50:50 +03:00
]);
2018-11-17 19:36:22 +03:00
$output = $this->commandTester->getDisplay();
$this->assertContains('Key', $output);
$this->assertContains('Is enabled', $output);
$this->assertContains(' +++ ', $output);
$this->assertNotContains(' --- ', $output);
$this->assertContains('Expiration date', $output);
2016-08-06 19:50:50 +03:00
}
/**
* @test
*/
2018-11-17 19:36:22 +03:00
public function onlyEnabledKeysAreListedIfEnabledOnlyIsProvided()
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([
2018-11-17 19:36:22 +03:00
'command' => ListKeysCommand::NAME,
2016-08-06 19:50:50 +03:00
'--enabledOnly' => true,
]);
2018-11-17 19:36:22 +03:00
$output = $this->commandTester->getDisplay();
$this->assertContains('Key', $output);
$this->assertNotContains('Is enabled', $output);
$this->assertNotContains(' +++ ', $output);
$this->assertNotContains(' --- ', $output);
$this->assertContains('Expiration date', $output);
2016-08-06 19:50:50 +03:00
}
}