mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-25 06:11:11 +03:00
129 lines
4.8 KiB
PHP
129 lines
4.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Core\Action;
|
|
|
|
use Laminas\Diactoros\Response;
|
|
use Laminas\Diactoros\ServerRequest;
|
|
use Laminas\Diactoros\ServerRequestFactory;
|
|
use Mezzio\Router\RouterInterface;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Prophecy\Argument;
|
|
use Prophecy\PhpUnit\ProphecyTrait;
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Psr\Http\Server\RequestHandlerInterface;
|
|
use Shlinkio\Shlink\Common\Response\QrCodeResponse;
|
|
use Shlinkio\Shlink\Core\Action\QrCodeAction;
|
|
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
|
use Shlinkio\Shlink\Core\Exception\ShortUrlNotFoundException;
|
|
use Shlinkio\Shlink\Core\Model\ShortUrlIdentifier;
|
|
use Shlinkio\Shlink\Core\Service\ShortUrl\ShortUrlResolverInterface;
|
|
|
|
use function getimagesizefromstring;
|
|
|
|
class QrCodeActionTest extends TestCase
|
|
{
|
|
use ProphecyTrait;
|
|
|
|
private QrCodeAction $action;
|
|
private ObjectProphecy $urlResolver;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$router = $this->prophesize(RouterInterface::class);
|
|
$router->generateUri(Argument::cetera())->willReturn('/foo/bar');
|
|
|
|
$this->urlResolver = $this->prophesize(ShortUrlResolverInterface::class);
|
|
|
|
$this->action = new QrCodeAction($this->urlResolver->reveal(), ['domain' => 'doma.in']);
|
|
}
|
|
|
|
/** @test */
|
|
public function aNotFoundShortCodeWillDelegateIntoNextMiddleware(): void
|
|
{
|
|
$shortCode = 'abc123';
|
|
$this->urlResolver->resolveEnabledShortUrl(new ShortUrlIdentifier($shortCode, ''))
|
|
->willThrow(ShortUrlNotFoundException::class)
|
|
->shouldBeCalledOnce();
|
|
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
|
$process = $delegate->handle(Argument::any())->willReturn(new Response());
|
|
|
|
$this->action->process((new ServerRequest())->withAttribute('shortCode', $shortCode), $delegate->reveal());
|
|
|
|
$process->shouldHaveBeenCalledOnce();
|
|
}
|
|
|
|
/** @test */
|
|
public function aCorrectRequestReturnsTheQrCodeResponse(): void
|
|
{
|
|
$shortCode = 'abc123';
|
|
$this->urlResolver->resolveEnabledShortUrl(new ShortUrlIdentifier($shortCode, ''))
|
|
->willReturn(new ShortUrl(''))
|
|
->shouldBeCalledOnce();
|
|
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
|
|
|
$resp = $this->action->process(
|
|
(new ServerRequest())->withAttribute('shortCode', $shortCode),
|
|
$delegate->reveal(),
|
|
);
|
|
|
|
self::assertInstanceOf(QrCodeResponse::class, $resp);
|
|
self::assertEquals(200, $resp->getStatusCode());
|
|
$delegate->handle(Argument::any())->shouldHaveBeenCalledTimes(0);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @dataProvider provideQueries
|
|
*/
|
|
public function imageIsReturnedWithExpectedContentTypeBasedOnProvidedFormat(
|
|
array $query,
|
|
string $expectedContentType
|
|
): void {
|
|
$code = 'abc123';
|
|
$this->urlResolver->resolveEnabledShortUrl(new ShortUrlIdentifier($code, ''))->willReturn(new ShortUrl(''));
|
|
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
|
$req = (new ServerRequest())->withAttribute('shortCode', $code)->withQueryParams($query);
|
|
|
|
$resp = $this->action->process($req, $delegate->reveal());
|
|
|
|
self::assertEquals($expectedContentType, $resp->getHeaderLine('Content-Type'));
|
|
}
|
|
|
|
public function provideQueries(): iterable
|
|
{
|
|
yield 'no format' => [[], 'image/png'];
|
|
yield 'png format' => [['format' => 'png'], 'image/png'];
|
|
yield 'svg format' => [['format' => 'svg'], 'image/svg+xml'];
|
|
yield 'unsupported format' => [['format' => 'jpg'], 'image/png'];
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @dataProvider provideRequestsWithSize
|
|
*/
|
|
public function imageIsReturnedWithExpectedSize(ServerRequestInterface $req, int $expectedSize): void
|
|
{
|
|
$code = 'abc123';
|
|
$this->urlResolver->resolveEnabledShortUrl(new ShortUrlIdentifier($code, ''))->willReturn(new ShortUrl(''));
|
|
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
|
|
|
$resp = $this->action->process($req->withAttribute('shortCode', $code), $delegate->reveal());
|
|
[$size] = getimagesizefromstring((string) $resp->getBody());
|
|
|
|
self::assertEquals($expectedSize, $size);
|
|
}
|
|
|
|
public function provideRequestsWithSize(): iterable
|
|
{
|
|
yield 'no size' => [ServerRequestFactory::fromGlobals(), 300];
|
|
yield 'size in attr' => [ServerRequestFactory::fromGlobals()->withAttribute('size', '400'), 400];
|
|
yield 'size in query' => [ServerRequestFactory::fromGlobals()->withQueryParams(['size' => '123']), 123];
|
|
yield 'size in query and attr' => [
|
|
ServerRequestFactory::fromGlobals()->withAttribute('size', '350')->withQueryParams(['size' => '123']),
|
|
350,
|
|
];
|
|
}
|
|
}
|