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