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

65 lines
1.9 KiB
PHP
Raw Normal View History

2016-08-06 19:26:07 +03:00
<?php
2017-10-12 11:13:20 +03:00
declare(strict_types=1);
2016-08-06 19:26:07 +03:00
namespace ShlinkioTest\Shlink\CLI\Command\Api;
2017-03-24 22:34:18 +03:00
use PHPUnit\Framework\TestCase;
2016-08-06 19:26:07 +03:00
use Prophecy\Prophecy\ObjectProphecy;
use Shlinkio\Shlink\CLI\Command\Api\DisableKeyCommand;
use Shlinkio\Shlink\Common\Exception\InvalidArgumentException;
use Shlinkio\Shlink\Rest\Service\ApiKeyService;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;
class DisableKeyCommandTest extends TestCase
{
/** @var CommandTester */
private $commandTester;
/** @var ObjectProphecy */
private $apiKeyService;
2016-08-06 19:26:07 +03:00
2019-02-16 12:53:45 +03:00
public function setUp(): void
2016-08-06 19:26:07 +03:00
{
$this->apiKeyService = $this->prophesize(ApiKeyService::class);
2018-11-18 18:02:52 +03:00
$command = new DisableKeyCommand($this->apiKeyService->reveal());
2016-08-06 19:26:07 +03:00
$app = new Application();
$app->add($command);
$this->commandTester = new CommandTester($command);
}
/**
* @test
*/
public function providedApiKeyIsDisabled()
{
$apiKey = 'abcd1234';
2018-11-11 15:18:21 +03:00
$this->apiKeyService->disable($apiKey)->shouldBeCalledOnce();
2018-11-17 19:36:22 +03:00
2016-08-06 19:26:07 +03:00
$this->commandTester->execute([
'command' => 'api-key:disable',
'apiKey' => $apiKey,
]);
2018-11-17 19:36:22 +03:00
$output = $this->commandTester->getDisplay();
2019-02-16 12:53:45 +03:00
$this->assertStringContainsString('API key "abcd1234" properly disabled', $output);
2016-08-06 19:26:07 +03:00
}
/**
* @test
*/
public function errorIsReturnedIfServiceThrowsException()
{
$apiKey = 'abcd1234';
2018-11-17 19:36:22 +03:00
$disable = $this->apiKeyService->disable($apiKey)->willThrow(InvalidArgumentException::class);
2016-08-06 19:26:07 +03:00
$this->commandTester->execute([
'command' => 'api-key:disable',
'apiKey' => $apiKey,
]);
$output = $this->commandTester->getDisplay();
2018-11-17 19:36:22 +03:00
2019-02-16 12:53:45 +03:00
$this->assertStringContainsString('API key "abcd1234" does not exist.', $output);
2018-11-17 19:36:22 +03:00
$disable->shouldHaveBeenCalledOnce();
2016-08-06 19:26:07 +03:00
}
}