shlink/module/Rest/test/Action/ShortUrl/DeleteShortUrlActionTest.php

69 lines
2.1 KiB
PHP
Raw Normal View History

2018-09-15 13:56:17 +03:00
<?php
declare(strict_types=1);
namespace ShlinkioTest\Shlink\Rest\Action\ShortUrl;
2018-09-15 13:56:17 +03:00
use PHPUnit\Framework\TestCase;
use Prophecy\Argument;
use Prophecy\Prophecy\ObjectProphecy;
use Shlinkio\Shlink\Core\Exception;
use Shlinkio\Shlink\Core\Service\ShortUrl\DeleteShortUrlServiceInterface;
use Shlinkio\Shlink\Rest\Action\ShortUrl\DeleteShortUrlAction;
2018-09-15 13:56:17 +03:00
use Shlinkio\Shlink\Rest\Util\RestUtils;
use Throwable;
2018-09-15 13:56:17 +03:00
use Zend\Diactoros\Response\JsonResponse;
use Zend\Diactoros\ServerRequest;
2018-09-15 13:56:17 +03:00
class DeleteShortUrlActionTest extends TestCase
2018-09-15 13:56:17 +03:00
{
/** @var DeleteShortUrlAction */
2018-09-15 13:56:17 +03:00
private $action;
/** @var ObjectProphecy */
2018-09-15 13:56:17 +03:00
private $service;
public function setUp()
{
$this->service = $this->prophesize(DeleteShortUrlServiceInterface::class);
2018-11-18 18:28:04 +03:00
$this->action = new DeleteShortUrlAction($this->service->reveal());
2018-09-15 13:56:17 +03:00
}
/**
* @test
*/
public function emptyResponseIsReturnedIfProperlyDeleted()
{
$deleteByShortCode = $this->service->deleteByShortCode(Argument::any())->will(function () {
});
$resp = $this->action->handle(new ServerRequest());
2018-09-15 13:56:17 +03:00
$this->assertEquals(204, $resp->getStatusCode());
2018-11-11 15:18:21 +03:00
$deleteByShortCode->shouldHaveBeenCalledOnce();
2018-09-15 13:56:17 +03:00
}
/**
* @test
* @dataProvider provideExceptions
*/
public function returnsErrorResponseInCaseOfException(Throwable $e, string $error, int $statusCode)
2018-09-15 13:56:17 +03:00
{
$deleteByShortCode = $this->service->deleteByShortCode(Argument::any())->willThrow($e);
/** @var JsonResponse $resp */
$resp = $this->action->handle(new ServerRequest());
2018-09-15 13:56:17 +03:00
$payload = $resp->getPayload();
$this->assertEquals($statusCode, $resp->getStatusCode());
$this->assertEquals($error, $payload['error']);
2018-11-11 15:18:21 +03:00
$deleteByShortCode->shouldHaveBeenCalledOnce();
2018-09-15 13:56:17 +03:00
}
public function provideExceptions(): array
{
return [
[new Exception\InvalidShortCodeException(), RestUtils::INVALID_SHORTCODE_ERROR, 404],
[new Exception\DeleteShortUrlException(5), RestUtils::INVALID_SHORTCODE_DELETION_ERROR, 400],
];
}
}