mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-14 23:22:21 +03:00
26 lines
757 B
PHP
26 lines
757 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\CLI\Exception;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\CLI\Exception\InvalidRoleConfigException;
|
|
use Shlinkio\Shlink\Rest\ApiKey\Role;
|
|
|
|
use function sprintf;
|
|
|
|
class InvalidRoleConfigExceptionTest extends TestCase
|
|
{
|
|
/** @test */
|
|
public function forDomainOnlyWithDefaultDomainGeneratesExpectedException(): void
|
|
{
|
|
$e = InvalidRoleConfigException::forDomainOnlyWithDefaultDomain();
|
|
|
|
self::assertEquals(sprintf(
|
|
'You cannot create an API key with the "%s" role attached to the default domain. '
|
|
. 'The role is currently limited to non-default domains.',
|
|
Role::DOMAIN_SPECIFIC->value,
|
|
), $e->getMessage());
|
|
}
|
|
}
|