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

53 lines
1.8 KiB
PHP
Raw Normal View History

<?php
2019-10-05 18:26:10 +03:00
declare(strict_types=1);
namespace ShlinkioTest\Shlink\Rest\Action\ShortUrl;
2020-01-01 23:11:53 +03:00
use Laminas\Diactoros\ServerRequest;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use Shlinkio\Shlink\Common\Rest\DataTransformerInterface;
use Shlinkio\Shlink\Core\Options\UrlShortenerOptions;
use Shlinkio\Shlink\Core\ShortUrl\Entity\ShortUrl;
use Shlinkio\Shlink\Core\ShortUrl\Model\ShortUrlCreation;
use Shlinkio\Shlink\Core\ShortUrl\UrlShortenerInterface;
use Shlinkio\Shlink\Rest\Action\ShortUrl\SingleStepCreateShortUrlAction;
2020-11-08 13:28:27 +03:00
use Shlinkio\Shlink\Rest\Entity\ApiKey;
class SingleStepCreateShortUrlActionTest extends TestCase
{
private SingleStepCreateShortUrlAction $action;
2022-10-24 20:53:13 +03:00
private MockObject & UrlShortenerInterface $urlShortener;
protected function setUp(): void
{
$this->urlShortener = $this->createMock(UrlShortenerInterface::class);
$transformer = $this->createMock(DataTransformerInterface::class);
$transformer->method('transform')->willReturn([]);
$this->action = new SingleStepCreateShortUrlAction(
$this->urlShortener,
$transformer,
new UrlShortenerOptions(),
);
}
2019-02-17 22:28:34 +03:00
/** @test */
public function properDataIsPassedWhenGeneratingShortCode(): void
{
$apiKey = ApiKey::create();
2020-11-08 13:28:27 +03:00
$request = (new ServerRequest())->withQueryParams([
'longUrl' => 'http://foobar.com',
2021-01-21 21:26:19 +03:00
])->withAttribute(ApiKey::class, $apiKey);
$this->urlShortener->expects($this->once())->method('shorten')->with(
ShortUrlCreation::fromRawData(['apiKey' => $apiKey, 'longUrl' => 'http://foobar.com']),
)->willReturn(ShortUrl::createFake());
$resp = $this->action->handle($request);
2020-10-04 01:35:14 +03:00
self::assertEquals(200, $resp->getStatusCode());
}
}