mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 21:58:40 +03:00
45 lines
1.8 KiB
PHP
45 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioApiTest\Shlink\Rest\Action;
|
|
|
|
use Shlinkio\Shlink\TestUtils\ApiTest\ApiTestCase;
|
|
|
|
class DeleteShortUrlActionTest extends ApiTestCase
|
|
{
|
|
/** @test */
|
|
public function notFoundErrorIsReturnWhenDeletingInvalidUrl(): void
|
|
{
|
|
$expectedDetail = 'No URL found with short code "invalid"';
|
|
|
|
$resp = $this->callApiWithKey(self::METHOD_DELETE, '/short-urls/invalid');
|
|
$payload = $this->getJsonResponsePayload($resp);
|
|
|
|
$this->assertEquals(self::STATUS_NOT_FOUND, $resp->getStatusCode());
|
|
$this->assertEquals(self::STATUS_NOT_FOUND, $payload['status']);
|
|
$this->assertEquals('INVALID_SHORTCODE', $payload['type']);
|
|
$this->assertEquals($expectedDetail, $payload['detail']);
|
|
$this->assertEquals('Short URL not found', $payload['title']);
|
|
$this->assertEquals('invalid', $payload['shortCode']);
|
|
}
|
|
|
|
/** @test */
|
|
public function unprocessableEntityIsReturnedWhenTryingToDeleteUrlWithTooManyVisits(): void
|
|
{
|
|
// Generate visits first
|
|
for ($i = 0; $i < 20; $i++) {
|
|
$this->assertEquals(self::STATUS_FOUND, $this->callShortUrl('abc123')->getStatusCode());
|
|
}
|
|
$expectedDetail = 'Impossible to delete short URL with short code "abc123" since it has more than "15" visits.';
|
|
|
|
$resp = $this->callApiWithKey(self::METHOD_DELETE, '/short-urls/abc123');
|
|
$payload = $this->getJsonResponsePayload($resp);
|
|
|
|
$this->assertEquals(self::STATUS_UNPROCESSABLE_ENTITY, $resp->getStatusCode());
|
|
$this->assertEquals(self::STATUS_UNPROCESSABLE_ENTITY, $payload['status']);
|
|
$this->assertEquals('INVALID_SHORTCODE_DELETION', $payload['type']);
|
|
$this->assertEquals($expectedDetail, $payload['detail']);
|
|
$this->assertEquals('Cannot delete short URL', $payload['title']);
|
|
}
|
|
}
|