mirror of
https://github.com/shlinkio/shlink.git
synced 2026-05-31 08:27:22 -05:00
85 lines
2.7 KiB
PHP
85 lines
2.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Core\Exception;
|
|
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\Core\Exception\DeleteShortUrlException;
|
|
use Shlinkio\Shlink\Core\ShortUrl\Model\ShortUrlIdentifier;
|
|
|
|
use function array_map;
|
|
use function range;
|
|
use function Shlinkio\Shlink\Core\generateRandomShortCode;
|
|
use function sprintf;
|
|
|
|
class DeleteShortUrlExceptionTest extends TestCase
|
|
{
|
|
#[Test, DataProvider('provideThresholds')]
|
|
public function fromVisitsThresholdGeneratesMessageProperly(
|
|
int $threshold,
|
|
string $shortCode,
|
|
string $expectedMessage,
|
|
): void {
|
|
$e = DeleteShortUrlException::fromVisitsThreshold(
|
|
$threshold,
|
|
ShortUrlIdentifier::fromShortCodeAndDomain($shortCode),
|
|
);
|
|
|
|
self::assertEquals($threshold, $e->getVisitsThreshold());
|
|
self::assertEquals($expectedMessage, $e->getMessage());
|
|
self::assertEquals($expectedMessage, $e->getDetail());
|
|
self::assertEquals(
|
|
[
|
|
'shortCode' => $shortCode,
|
|
'threshold' => $threshold,
|
|
],
|
|
$e->getAdditionalData(),
|
|
);
|
|
self::assertEquals('Cannot delete short URL', $e->getTitle());
|
|
self::assertEquals('https://shlink.io/api/error/invalid-short-url-deletion', $e->getType());
|
|
self::assertEquals(422, $e->getStatus());
|
|
}
|
|
|
|
public static function provideThresholds(): array
|
|
{
|
|
return array_map(
|
|
static fn (int $number) => [
|
|
$number,
|
|
$shortCode = generateRandomShortCode(6),
|
|
sprintf(
|
|
'Impossible to delete short URL with short code "%s", since it has more than "%s" visits.',
|
|
$shortCode,
|
|
$number,
|
|
),
|
|
],
|
|
range(5, 50, 5),
|
|
);
|
|
}
|
|
|
|
#[Test]
|
|
public function domainIsPartOfAdditionalWhenProvidedInIdentifier(): void
|
|
{
|
|
$e = DeleteShortUrlException::fromVisitsThreshold(
|
|
10,
|
|
ShortUrlIdentifier::fromShortCodeAndDomain('abc123', 's.test'),
|
|
);
|
|
$expectedMessage =
|
|
'Impossible to delete short URL with short code "abc123" for domain "s.test", since it '
|
|
. 'has more than "10" visits.';
|
|
|
|
self::assertEquals(
|
|
[
|
|
'shortCode' => 'abc123',
|
|
'domain' => 's.test',
|
|
'threshold' => 10,
|
|
],
|
|
$e->getAdditionalData(),
|
|
);
|
|
self::assertEquals($expectedMessage, $e->getMessage());
|
|
self::assertEquals($expectedMessage, $e->getDetail());
|
|
}
|
|
}
|