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

59 lines
1.8 KiB
PHP
Raw Normal View History

2016-08-06 19:26:07 +03:00
<?php
2019-10-05 18:26:10 +03:00
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;
use PHPUnit\Framework\MockObject\MockObject;
2017-03-24 22:34:18 +03:00
use PHPUnit\Framework\TestCase;
2016-08-06 19:26:07 +03:00
use Shlinkio\Shlink\CLI\Command\Api\DisableKeyCommand;
use Shlinkio\Shlink\Common\Exception\InvalidArgumentException;
2019-12-30 00:27:00 +03:00
use Shlinkio\Shlink\Rest\Service\ApiKeyServiceInterface;
use ShlinkioTest\Shlink\CLI\CliTestUtilsTrait;
2016-08-06 19:26:07 +03:00
use Symfony\Component\Console\Tester\CommandTester;
class DisableKeyCommandTest extends TestCase
{
use CliTestUtilsTrait;
2020-11-02 13:50:19 +03:00
2019-12-30 00:27:00 +03:00
private CommandTester $commandTester;
private MockObject $apiKeyService;
2016-08-06 19:26:07 +03:00
protected function setUp(): void
2016-08-06 19:26:07 +03:00
{
$this->apiKeyService = $this->createMock(ApiKeyServiceInterface::class);
$this->commandTester = $this->testerForCommand(new DisableKeyCommand($this->apiKeyService));
2016-08-06 19:26:07 +03:00
}
2019-02-17 22:28:34 +03:00
/** @test */
public function providedApiKeyIsDisabled(): void
2016-08-06 19:26:07 +03:00
{
$apiKey = 'abcd1234';
$this->apiKeyService->expects($this->once())->method('disable')->with($this->equalTo($apiKey));
2018-11-17 19:36:22 +03:00
2016-08-06 19:26:07 +03:00
$this->commandTester->execute([
'apiKey' => $apiKey,
]);
2018-11-17 19:36:22 +03:00
$output = $this->commandTester->getDisplay();
2020-10-04 01:35:14 +03:00
self::assertStringContainsString('API key "abcd1234" properly disabled', $output);
2016-08-06 19:26:07 +03:00
}
2019-02-17 22:28:34 +03:00
/** @test */
public function errorIsReturnedIfServiceThrowsException(): void
2016-08-06 19:26:07 +03:00
{
$apiKey = 'abcd1234';
$expectedMessage = 'API key "abcd1234" does not exist.';
$this->apiKeyService->expects($this->once())->method('disable')->with(
$this->equalTo($apiKey),
)->willThrowException(new InvalidArgumentException($expectedMessage));
2016-08-06 19:26:07 +03:00
$this->commandTester->execute([
'apiKey' => $apiKey,
]);
$output = $this->commandTester->getDisplay();
2018-11-17 19:36:22 +03:00
2020-10-04 01:35:14 +03:00
self::assertStringContainsString($expectedMessage, $output);
2016-08-06 19:26:07 +03:00
}
}