2018-05-03 17:57:43 +02:00
|
|
|
<?php
|
2019-10-05 17:26:10 +02:00
|
|
|
|
2018-05-03 17:57:43 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-09-20 19:55:24 +02:00
|
|
|
namespace ShlinkioTest\Shlink\Rest\Action\ShortUrl;
|
2018-05-03 17:57:43 +02:00
|
|
|
|
2020-01-01 21:11:53 +01:00
|
|
|
use Laminas\Diactoros\ServerRequest;
|
2023-02-09 20:42:18 +01:00
|
|
|
use PHPUnit\Framework\Attributes\Test;
|
2022-10-23 22:16:19 +02:00
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
2018-05-03 17:57:43 +02:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2021-02-01 22:55:52 +01:00
|
|
|
use Shlinkio\Shlink\Common\Rest\DataTransformerInterface;
|
2022-08-05 08:38:05 +02:00
|
|
|
use Shlinkio\Shlink\Core\Options\UrlShortenerOptions;
|
2022-09-23 19:03:32 +02:00
|
|
|
use Shlinkio\Shlink\Core\ShortUrl\Entity\ShortUrl;
|
2022-09-23 18:05:17 +02:00
|
|
|
use Shlinkio\Shlink\Core\ShortUrl\Model\ShortUrlCreation;
|
2023-04-12 09:15:36 +02:00
|
|
|
use Shlinkio\Shlink\Core\ShortUrl\Model\UrlShorteningResult;
|
2022-09-23 18:42:38 +02:00
|
|
|
use Shlinkio\Shlink\Core\ShortUrl\UrlShortenerInterface;
|
2018-09-20 19:55:24 +02:00
|
|
|
use Shlinkio\Shlink\Rest\Action\ShortUrl\SingleStepCreateShortUrlAction;
|
2020-11-08 11:28:27 +01:00
|
|
|
use Shlinkio\Shlink\Rest\Entity\ApiKey;
|
2018-05-03 17:57:43 +02:00
|
|
|
|
2018-09-20 19:55:24 +02:00
|
|
|
class SingleStepCreateShortUrlActionTest extends TestCase
|
2018-05-03 17:57:43 +02:00
|
|
|
{
|
2019-12-29 22:48:40 +01:00
|
|
|
private SingleStepCreateShortUrlAction $action;
|
2022-10-24 19:53:13 +02:00
|
|
|
private MockObject & UrlShortenerInterface $urlShortener;
|
2018-05-03 17:57:43 +02:00
|
|
|
|
2022-09-11 12:02:49 +02:00
|
|
|
protected function setUp(): void
|
2018-05-03 17:57:43 +02:00
|
|
|
{
|
2022-10-23 22:16:19 +02:00
|
|
|
$this->urlShortener = $this->createMock(UrlShortenerInterface::class);
|
|
|
|
$transformer = $this->createMock(DataTransformerInterface::class);
|
|
|
|
$transformer->method('transform')->willReturn([]);
|
2018-05-03 17:57:43 +02:00
|
|
|
|
2018-09-20 19:55:24 +02:00
|
|
|
$this->action = new SingleStepCreateShortUrlAction(
|
2022-10-23 22:16:19 +02:00
|
|
|
$this->urlShortener,
|
|
|
|
$transformer,
|
2022-08-05 08:38:05 +02:00
|
|
|
new UrlShortenerOptions(),
|
2018-05-03 17:57:43 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-09 20:42:18 +01:00
|
|
|
#[Test]
|
2019-11-21 20:05:06 +01:00
|
|
|
public function properDataIsPassedWhenGeneratingShortCode(): void
|
2018-05-03 17:57:43 +02:00
|
|
|
{
|
2021-03-14 09:59:35 +01:00
|
|
|
$apiKey = ApiKey::create();
|
2020-11-08 11:28:27 +01:00
|
|
|
|
2018-12-25 23:01:30 +01:00
|
|
|
$request = (new ServerRequest())->withQueryParams([
|
2018-05-03 17:57:43 +02:00
|
|
|
'longUrl' => 'http://foobar.com',
|
2021-01-21 19:26:19 +01:00
|
|
|
])->withAttribute(ApiKey::class, $apiKey);
|
2022-10-23 22:16:19 +02:00
|
|
|
$this->urlShortener->expects($this->once())->method('shorten')->with(
|
2022-09-23 18:05:17 +02:00
|
|
|
ShortUrlCreation::fromRawData(['apiKey' => $apiKey, 'longUrl' => 'http://foobar.com']),
|
2023-04-12 09:15:36 +02:00
|
|
|
)->willReturn(UrlShorteningResult::withoutErrorOnEventDispatching(ShortUrl::createFake()));
|
2018-05-03 17:57:43 +02:00
|
|
|
|
|
|
|
$resp = $this->action->handle($request);
|
|
|
|
|
2020-10-04 00:35:14 +02:00
|
|
|
self::assertEquals(200, $resp->getStatusCode());
|
2018-05-03 17:57:43 +02:00
|
|
|
}
|
|
|
|
}
|