2016-07-31 17:24:00 +03:00
|
|
|
<?php
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-09-20 20:55:24 +03:00
|
|
|
namespace ShlinkioTest\Shlink\Rest\Action\ShortUrl;
|
2016-07-31 17:24:00 +03:00
|
|
|
|
2018-10-28 10:24:06 +03:00
|
|
|
use Exception;
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-31 17:24:00 +03:00
|
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
2018-08-11 11:40:44 +03:00
|
|
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
2017-10-12 12:28:45 +03:00
|
|
|
use Shlinkio\Shlink\Core\Exception\EntityDoesNotExistException;
|
2016-07-31 17:24:00 +03:00
|
|
|
use Shlinkio\Shlink\Core\Exception\InvalidShortCodeException;
|
|
|
|
use Shlinkio\Shlink\Core\Service\UrlShortener;
|
2018-09-20 20:55:24 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Action\ShortUrl\ResolveShortUrlAction;
|
2016-07-31 17:24:00 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Util\RestUtils;
|
2018-12-26 01:01:30 +03:00
|
|
|
use Zend\Diactoros\ServerRequest;
|
2019-02-27 00:56:43 +03:00
|
|
|
|
2018-10-28 10:34:02 +03:00
|
|
|
use function strpos;
|
2016-07-31 17:24:00 +03:00
|
|
|
|
2018-09-20 20:55:24 +03:00
|
|
|
class ResolveShortUrlActionTest extends TestCase
|
2016-07-31 17:24:00 +03:00
|
|
|
{
|
2018-11-20 21:30:27 +03:00
|
|
|
/** @var ResolveShortUrlAction */
|
2018-11-20 21:37:22 +03:00
|
|
|
private $action;
|
2018-11-20 21:30:27 +03:00
|
|
|
/** @var ObjectProphecy */
|
2018-11-20 21:37:22 +03:00
|
|
|
private $urlShortener;
|
2016-07-31 17:24:00 +03:00
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
public function setUp(): void
|
2016-07-31 17:24:00 +03:00
|
|
|
{
|
|
|
|
$this->urlShortener = $this->prophesize(UrlShortener::class);
|
2018-11-18 18:28:04 +03:00
|
|
|
$this->action = new ResolveShortUrlAction($this->urlShortener->reveal(), []);
|
2016-07-31 17:24:00 +03:00
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2019-10-04 22:17:02 +03:00
|
|
|
public function incorrectShortCodeReturnsError(): void
|
2016-07-31 17:24:00 +03:00
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
2019-10-04 22:17:02 +03:00
|
|
|
$this->urlShortener->shortCodeToUrl($shortCode, null)->willThrow(EntityDoesNotExistException::class)
|
|
|
|
->shouldBeCalledOnce();
|
2016-07-31 17:24:00 +03:00
|
|
|
|
2018-12-26 01:01:30 +03:00
|
|
|
$request = (new ServerRequest())->withAttribute('shortCode', $shortCode);
|
2018-03-26 20:02:41 +03:00
|
|
|
$response = $this->action->handle($request);
|
2016-08-08 11:02:52 +03:00
|
|
|
$this->assertEquals(404, $response->getStatusCode());
|
2016-07-31 17:24:00 +03:00
|
|
|
$this->assertTrue(strpos($response->getBody()->getContents(), RestUtils::INVALID_ARGUMENT_ERROR) > 0);
|
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2019-10-04 22:17:02 +03:00
|
|
|
public function correctShortCodeReturnsSuccess(): void
|
2016-07-31 17:24:00 +03:00
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
2019-10-04 22:17:02 +03:00
|
|
|
$this->urlShortener->shortCodeToUrl($shortCode, null)->willReturn(
|
2018-10-28 18:00:54 +03:00
|
|
|
new ShortUrl('http://domain.com/foo/bar')
|
2018-11-11 15:18:21 +03:00
|
|
|
)->shouldBeCalledOnce();
|
2016-07-31 17:24:00 +03:00
|
|
|
|
2018-12-26 01:01:30 +03:00
|
|
|
$request = (new ServerRequest())->withAttribute('shortCode', $shortCode);
|
2018-03-26 20:02:41 +03:00
|
|
|
$response = $this->action->handle($request);
|
2016-07-31 17:24:00 +03:00
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
|
|
$this->assertTrue(strpos($response->getBody()->getContents(), 'http://domain.com/foo/bar') > 0);
|
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2019-10-04 22:17:02 +03:00
|
|
|
public function invalidShortCodeExceptionReturnsError(): void
|
2016-07-31 17:24:00 +03:00
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
2019-10-04 22:17:02 +03:00
|
|
|
$this->urlShortener->shortCodeToUrl($shortCode, null)->willThrow(InvalidShortCodeException::class)
|
|
|
|
->shouldBeCalledOnce();
|
2016-07-31 17:24:00 +03:00
|
|
|
|
2018-12-26 01:01:30 +03:00
|
|
|
$request = (new ServerRequest())->withAttribute('shortCode', $shortCode);
|
2018-03-26 20:02:41 +03:00
|
|
|
$response = $this->action->handle($request);
|
2016-07-31 17:24:00 +03:00
|
|
|
$this->assertEquals(400, $response->getStatusCode());
|
|
|
|
$this->assertTrue(strpos($response->getBody()->getContents(), RestUtils::INVALID_SHORTCODE_ERROR) > 0);
|
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2019-10-04 22:17:02 +03:00
|
|
|
public function unexpectedExceptionWillReturnError(): void
|
2016-07-31 17:24:00 +03:00
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
2019-10-04 22:17:02 +03:00
|
|
|
$this->urlShortener->shortCodeToUrl($shortCode, null)->willThrow(Exception::class)
|
|
|
|
->shouldBeCalledOnce();
|
2016-07-31 17:24:00 +03:00
|
|
|
|
2018-12-26 01:01:30 +03:00
|
|
|
$request = (new ServerRequest())->withAttribute('shortCode', $shortCode);
|
2018-03-26 20:02:41 +03:00
|
|
|
$response = $this->action->handle($request);
|
2016-07-31 17:24:00 +03:00
|
|
|
$this->assertEquals(500, $response->getStatusCode());
|
|
|
|
$this->assertTrue(strpos($response->getBody()->getContents(), RestUtils::UNKNOWN_ERROR) > 0);
|
|
|
|
}
|
|
|
|
}
|