2016-07-31 17:24:00 +03:00
|
|
|
<?php
|
|
|
|
namespace ShlinkioTest\Shlink\Rest\Action;
|
|
|
|
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-31 17:24:00 +03:00
|
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
|
|
use Shlinkio\Shlink\Core\Exception\InvalidShortCodeException;
|
|
|
|
use Shlinkio\Shlink\Core\Service\UrlShortener;
|
|
|
|
use Shlinkio\Shlink\Rest\Action\ResolveUrlAction;
|
|
|
|
use Shlinkio\Shlink\Rest\Util\RestUtils;
|
|
|
|
use Zend\Diactoros\Response;
|
|
|
|
use Zend\Diactoros\ServerRequestFactory;
|
|
|
|
use Zend\I18n\Translator\Translator;
|
|
|
|
|
|
|
|
class ResolveUrlActionTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var ResolveUrlAction
|
|
|
|
*/
|
|
|
|
protected $action;
|
|
|
|
/**
|
|
|
|
* @var ObjectProphecy
|
|
|
|
*/
|
|
|
|
protected $urlShortener;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$this->urlShortener = $this->prophesize(UrlShortener::class);
|
|
|
|
$this->action = new ResolveUrlAction($this->urlShortener->reveal(), Translator::factory([]));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function incorrectShortCodeReturnsError()
|
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
|
|
|
$this->urlShortener->shortCodeToUrl($shortCode)->willReturn(null)
|
|
|
|
->shouldBeCalledTimes(1);
|
|
|
|
|
|
|
|
$request = ServerRequestFactory::fromGlobals()->withAttribute('shortCode', $shortCode);
|
|
|
|
$response = $this->action->__invoke($request, new Response());
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function correctShortCodeReturnsSuccess()
|
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
|
|
|
$this->urlShortener->shortCodeToUrl($shortCode)->willReturn('http://domain.com/foo/bar')
|
|
|
|
->shouldBeCalledTimes(1);
|
|
|
|
|
|
|
|
$request = ServerRequestFactory::fromGlobals()->withAttribute('shortCode', $shortCode);
|
|
|
|
$response = $this->action->__invoke($request, new Response());
|
|
|
|
$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)
|
|
|
|
->shouldBeCalledTimes(1);
|
|
|
|
|
|
|
|
$request = ServerRequestFactory::fromGlobals()->withAttribute('shortCode', $shortCode);
|
|
|
|
$response = $this->action->__invoke($request, new Response());
|
|
|
|
$this->assertEquals(400, $response->getStatusCode());
|
|
|
|
$this->assertTrue(strpos($response->getBody()->getContents(), RestUtils::INVALID_SHORTCODE_ERROR) > 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function unexpectedExceptionWillReturnError()
|
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
|
|
|
$this->urlShortener->shortCodeToUrl($shortCode)->willThrow(\Exception::class)
|
|
|
|
->shouldBeCalledTimes(1);
|
|
|
|
|
|
|
|
$request = ServerRequestFactory::fromGlobals()->withAttribute('shortCode', $shortCode);
|
|
|
|
$response = $this->action->__invoke($request, new Response());
|
|
|
|
$this->assertEquals(500, $response->getStatusCode());
|
|
|
|
$this->assertTrue(strpos($response->getBody()->getContents(), RestUtils::UNKNOWN_ERROR) > 0);
|
|
|
|
}
|
|
|
|
}
|