mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-15 07:32:02 +03:00
27 lines
750 B
PHP
27 lines
750 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,
|
||
|
), $e->getMessage());
|
||
|
}
|
||
|
}
|