mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-18 17:12:35 +03:00
58 lines
1.8 KiB
PHP
58 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\CLI\Command\Api;
|
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\CLI\Command\Api\DisableKeyCommand;
|
|
use Shlinkio\Shlink\Common\Exception\InvalidArgumentException;
|
|
use Shlinkio\Shlink\Rest\Service\ApiKeyServiceInterface;
|
|
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
class DisableKeyCommandTest extends TestCase
|
|
{
|
|
use CliTestUtilsTrait;
|
|
|
|
private CommandTester $commandTester;
|
|
private MockObject $apiKeyService;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->apiKeyService = $this->createMock(ApiKeyServiceInterface::class);
|
|
$this->commandTester = $this->testerForCommand(new DisableKeyCommand($this->apiKeyService));
|
|
}
|
|
|
|
/** @test */
|
|
public function providedApiKeyIsDisabled(): void
|
|
{
|
|
$apiKey = 'abcd1234';
|
|
$this->apiKeyService->expects($this->once())->method('disable')->with($this->equalTo($apiKey));
|
|
|
|
$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.';
|
|
$this->apiKeyService->expects($this->once())->method('disable')->with(
|
|
$this->equalTo($apiKey),
|
|
)->willThrowException(new InvalidArgumentException($expectedMessage));
|
|
|
|
$this->commandTester->execute([
|
|
'apiKey' => $apiKey,
|
|
]);
|
|
$output = $this->commandTester->getDisplay();
|
|
|
|
self::assertStringContainsString($expectedMessage, $output);
|
|
}
|
|
}
|