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);
|
|
|
|
|
2018-09-20 12:55:24 -05:00
|
|
|
namespace ShlinkioTest\Shlink\Rest\Action\ShortUrl;
|
2016-07-31 09:24:00 -05:00
|
|
|
|
2020-01-01 14:11:53 -06:00
|
|
|
use Laminas\Diactoros\ServerRequest;
|
2017-03-24 14:34:18 -05:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2020-11-02 04:50:19 -06:00
|
|
|
use Prophecy\PhpUnit\ProphecyTrait;
|
2016-07-31 09:24:00 -05:00
|
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
2018-08-11 03:40:44 -05:00
|
|
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
2020-02-01 04:46:54 -06:00
|
|
|
use Shlinkio\Shlink\Core\Model\ShortUrlIdentifier;
|
2020-01-26 12:21:51 -06:00
|
|
|
use Shlinkio\Shlink\Core\Service\ShortUrl\ShortUrlResolverInterface;
|
2018-09-20 12:55:24 -05:00
|
|
|
use Shlinkio\Shlink\Rest\Action\ShortUrl\ResolveShortUrlAction;
|
2019-02-26 15:56:43 -06:00
|
|
|
|
2018-10-28 02:34:02 -05:00
|
|
|
use function strpos;
|
2016-07-31 09:24:00 -05:00
|
|
|
|
2018-09-20 12:55:24 -05:00
|
|
|
class ResolveShortUrlActionTest extends TestCase
|
2016-07-31 09:24:00 -05:00
|
|
|
{
|
2020-11-02 04:50:19 -06:00
|
|
|
use ProphecyTrait;
|
|
|
|
|
2019-12-29 15:48:40 -06:00
|
|
|
private ResolveShortUrlAction $action;
|
2020-01-26 12:21:51 -06:00
|
|
|
private ObjectProphecy $urlResolver;
|
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
|
|
|
{
|
2020-01-26 12:21:51 -06:00
|
|
|
$this->urlResolver = $this->prophesize(ShortUrlResolverInterface::class);
|
|
|
|
$this->action = new ResolveShortUrlAction($this->urlResolver->reveal(), []);
|
2016-07-31 09:24:00 -05:00
|
|
|
}
|
|
|
|
|
2019-02-17 13:28:34 -06:00
|
|
|
/** @test */
|
2019-10-04 14:17:02 -05:00
|
|
|
public function correctShortCodeReturnsSuccess(): void
|
2016-07-31 09:24:00 -05:00
|
|
|
{
|
|
|
|
$shortCode = 'abc123';
|
2020-02-01 04:46:54 -06:00
|
|
|
$this->urlResolver->resolveShortUrl(new ShortUrlIdentifier($shortCode))->willReturn(
|
2020-01-01 13:48:31 -06:00
|
|
|
new ShortUrl('http://domain.com/foo/bar'),
|
2018-11-11 06:18:21 -06:00
|
|
|
)->shouldBeCalledOnce();
|
2016-07-31 09:24:00 -05:00
|
|
|
|
2018-12-25 16:01:30 -06:00
|
|
|
$request = (new ServerRequest())->withAttribute('shortCode', $shortCode);
|
2018-03-26 12:02:41 -05:00
|
|
|
$response = $this->action->handle($request);
|
2020-10-03 17:35:14 -05:00
|
|
|
self::assertEquals(200, $response->getStatusCode());
|
|
|
|
self::assertTrue(strpos($response->getBody()->getContents(), 'http://domain.com/foo/bar') > 0);
|
2016-07-31 09:24:00 -05:00
|
|
|
}
|
|
|
|
}
|