mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-03 17:22:32 +03:00
84 lines
2.9 KiB
PHP
84 lines
2.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Rest\Action\ShortUrl;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Prophecy\Argument;
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
|
use Shlinkio\Shlink\Core\Exception\InvalidShortCodeException;
|
|
use Shlinkio\Shlink\Core\Service\ShortUrlServiceInterface;
|
|
use Shlinkio\Shlink\Rest\Action\ShortUrl\EditShortUrlAction;
|
|
use Shlinkio\Shlink\Rest\Util\RestUtils;
|
|
use Zend\Diactoros\Response\JsonResponse;
|
|
use Zend\Diactoros\ServerRequest;
|
|
|
|
class EditShortUrlActionTest extends TestCase
|
|
{
|
|
/** @var EditShortUrlAction */
|
|
private $action;
|
|
/** @var ObjectProphecy */
|
|
private $shortUrlService;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$this->shortUrlService = $this->prophesize(ShortUrlServiceInterface::class);
|
|
$this->action = new EditShortUrlAction($this->shortUrlService->reveal());
|
|
}
|
|
|
|
/** @test */
|
|
public function invalidDataReturnsError()
|
|
{
|
|
$request = (new ServerRequest())->withParsedBody([
|
|
'maxVisits' => 'invalid',
|
|
]);
|
|
|
|
/** @var JsonResponse $resp */
|
|
$resp = $this->action->handle($request);
|
|
$payload = $resp->getPayload();
|
|
|
|
$this->assertEquals(400, $resp->getStatusCode());
|
|
$this->assertEquals(RestUtils::INVALID_ARGUMENT_ERROR, $payload['error']);
|
|
$this->assertEquals('Provided data is invalid.', $payload['message']);
|
|
}
|
|
|
|
/** @test */
|
|
public function incorrectShortCodeReturnsError()
|
|
{
|
|
$request = (new ServerRequest())->withAttribute('shortCode', 'abc123')
|
|
->withParsedBody([
|
|
'maxVisits' => 5,
|
|
]);
|
|
$updateMeta = $this->shortUrlService->updateMetadataByShortCode(Argument::cetera())->willThrow(
|
|
InvalidShortCodeException::class
|
|
);
|
|
|
|
/** @var JsonResponse $resp */
|
|
$resp = $this->action->handle($request);
|
|
$payload = $resp->getPayload();
|
|
|
|
$this->assertEquals(404, $resp->getStatusCode());
|
|
$this->assertEquals(RestUtils::INVALID_SHORTCODE_ERROR, $payload['error']);
|
|
$this->assertEquals('No URL found for short code "abc123"', $payload['message']);
|
|
$updateMeta->shouldHaveBeenCalled();
|
|
}
|
|
|
|
/** @test */
|
|
public function correctShortCodeReturnsSuccess()
|
|
{
|
|
$request = (new ServerRequest())->withAttribute('shortCode', 'abc123')
|
|
->withParsedBody([
|
|
'maxVisits' => 5,
|
|
]);
|
|
$updateMeta = $this->shortUrlService->updateMetadataByShortCode(Argument::cetera())->willReturn(
|
|
new ShortUrl('')
|
|
);
|
|
|
|
$resp = $this->action->handle($request);
|
|
|
|
$this->assertEquals(204, $resp->getStatusCode());
|
|
$updateMeta->shouldHaveBeenCalled();
|
|
}
|
|
}
|