mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 21:58:40 +03:00
61 lines
1.9 KiB
PHP
61 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\CLI\Command\Api;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Prophecy\PhpUnit\ProphecyTrait;
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
use Shlinkio\Shlink\CLI\Command\Api\DisableKeyCommand;
|
|
use Shlinkio\Shlink\Common\Exception\InvalidArgumentException;
|
|
use Shlinkio\Shlink\Rest\Service\ApiKeyServiceInterface;
|
|
use Symfony\Component\Console\Application;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
class DisableKeyCommandTest extends TestCase
|
|
{
|
|
use ProphecyTrait;
|
|
|
|
private CommandTester $commandTester;
|
|
private ObjectProphecy $apiKeyService;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$this->apiKeyService = $this->prophesize(ApiKeyServiceInterface::class);
|
|
$command = new DisableKeyCommand($this->apiKeyService->reveal());
|
|
$app = new Application();
|
|
$app->add($command);
|
|
$this->commandTester = new CommandTester($command);
|
|
}
|
|
|
|
/** @test */
|
|
public function providedApiKeyIsDisabled(): void
|
|
{
|
|
$apiKey = 'abcd1234';
|
|
$this->apiKeyService->disable($apiKey)->shouldBeCalledOnce();
|
|
|
|
$this->commandTester->execute([
|
|
'apiKey' => $apiKey,
|
|
]);
|
|
$output = $this->commandTester->getDisplay();
|
|
|
|
self::assertStringContainsString('API key "abcd1234" properly disabled', $output);
|
|
}
|
|
|
|
/** @test */
|
|
public function errorIsReturnedIfServiceThrowsException(): void
|
|
{
|
|
$apiKey = 'abcd1234';
|
|
$expectedMessage = 'API key "abcd1234" does not exist.';
|
|
$disable = $this->apiKeyService->disable($apiKey)->willThrow(new InvalidArgumentException($expectedMessage));
|
|
|
|
$this->commandTester->execute([
|
|
'apiKey' => $apiKey,
|
|
]);
|
|
$output = $this->commandTester->getDisplay();
|
|
|
|
self::assertStringContainsString($expectedMessage, $output);
|
|
$disable->shouldHaveBeenCalledOnce();
|
|
}
|
|
}
|