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

58 lines
2.0 KiB
PHP
Raw Normal View History

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