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