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