shlink/module/Core/test/Action/QrCodeActionTest.php

153 lines
5.8 KiB
PHP
Raw Normal View History

2016-08-09 15:18:20 +03:00
<?php
2019-10-05 18:26:10 +03:00
2017-10-12 11:13:20 +03:00
declare(strict_types=1);
2016-08-09 15:18:20 +03:00
namespace ShlinkioTest\Shlink\Core\Action;
2020-01-01 23:11:53 +03:00
use Laminas\Diactoros\Response;
use Laminas\Diactoros\ServerRequest;
use Laminas\Diactoros\ServerRequestFactory;
2020-01-01 23:11:53 +03:00
use Mezzio\Router\RouterInterface;
2017-03-24 22:34:18 +03:00
use PHPUnit\Framework\TestCase;
2016-08-09 15:18:20 +03:00
use Prophecy\Argument;
2020-11-02 13:50:19 +03:00
use Prophecy\PhpUnit\ProphecyTrait;
2016-08-09 15:18:20 +03:00
use Prophecy\Prophecy\ObjectProphecy;
use Psr\Http\Message\ServerRequestInterface;
2018-03-26 20:02:41 +03:00
use Psr\Http\Server\RequestHandlerInterface;
2016-08-09 15:18:20 +03:00
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 Shlinkio\Shlink\Core\ShortUrl\Helper\ShortUrlStringifier;
2016-08-09 15:18:20 +03:00
use function getimagesizefromstring;
2016-08-09 15:18:20 +03:00
class QrCodeActionTest extends TestCase
{
2020-11-02 13:50:19 +03:00
use ProphecyTrait;
2019-12-30 00:27:00 +03:00
private QrCodeAction $action;
private ObjectProphecy $urlResolver;
2016-08-09 15:18:20 +03:00
2019-02-16 12:53:45 +03:00
public function setUp(): void
2016-08-09 15:18:20 +03:00
{
$router = $this->prophesize(RouterInterface::class);
$router->generateUri(Argument::cetera())->willReturn('/foo/bar');
$this->urlResolver = $this->prophesize(ShortUrlResolverInterface::class);
2016-08-09 15:18:20 +03:00
$this->action = new QrCodeAction(
$this->urlResolver->reveal(),
new ShortUrlStringifier(['domain' => 'doma.in']),
);
2016-08-09 15:18:20 +03:00
}
2019-02-17 22:28:34 +03:00
/** @test */
2019-10-22 20:52:28 +03:00
public function aNotFoundShortCodeWillDelegateIntoNextMiddleware(): void
2016-08-09 15:18:20 +03:00
{
$shortCode = 'abc123';
$this->urlResolver->resolveEnabledShortUrl(new ShortUrlIdentifier($shortCode, ''))
->willThrow(ShortUrlNotFoundException::class)
->shouldBeCalledOnce();
2018-03-26 20:02:41 +03:00
$delegate = $this->prophesize(RequestHandlerInterface::class);
$process = $delegate->handle(Argument::any())->willReturn(new Response());
2016-08-09 15:18:20 +03:00
$this->action->process((new ServerRequest())->withAttribute('shortCode', $shortCode), $delegate->reveal());
2018-11-11 15:18:21 +03:00
$process->shouldHaveBeenCalledOnce();
2016-08-09 15:18:20 +03:00
}
2019-02-17 22:28:34 +03:00
/** @test */
2019-10-22 20:52:28 +03:00
public function aCorrectRequestReturnsTheQrCodeResponse(): void
2016-08-09 15:18:20 +03:00
{
$shortCode = 'abc123';
$this->urlResolver->resolveEnabledShortUrl(new ShortUrlIdentifier($shortCode, ''))
->willReturn(ShortUrl::createEmpty())
->shouldBeCalledOnce();
2018-03-26 20:02:41 +03:00
$delegate = $this->prophesize(RequestHandlerInterface::class);
2016-08-09 15:18:20 +03:00
$resp = $this->action->process(
(new ServerRequest())->withAttribute('shortCode', $shortCode),
2020-01-01 22:48:31 +03:00
$delegate->reveal(),
2016-08-09 15:18:20 +03:00
);
2020-10-04 01:35:14 +03:00
self::assertInstanceOf(QrCodeResponse::class, $resp);
self::assertEquals(200, $resp->getStatusCode());
2018-03-26 20:02:41 +03:00
$delegate->handle(Argument::any())->shouldHaveBeenCalledTimes(0);
2016-08-09 15:18:20 +03:00
}
2020-09-21 23:54:05 +03:00
/**
* @test
* @dataProvider provideQueries
*/
public function imageIsReturnedWithExpectedContentTypeBasedOnProvidedFormat(
array $query,
string $expectedContentType,
2020-09-21 23:54:05 +03:00
): void {
$code = 'abc123';
$this->urlResolver->resolveEnabledShortUrl(new ShortUrlIdentifier($code, ''))->willReturn(
ShortUrl::createEmpty(),
);
2020-09-21 23:54:05 +03:00
$delegate = $this->prophesize(RequestHandlerInterface::class);
$req = (new ServerRequest())->withAttribute('shortCode', $code)->withQueryParams($query);
$resp = $this->action->process($req, $delegate->reveal());
2020-10-04 01:35:14 +03:00
self::assertEquals($expectedContentType, $resp->getHeaderLine('Content-Type'));
2020-09-21 23:54:05 +03:00
}
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(
ShortUrl::createEmpty(),
);
$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,
];
yield 'margin' => [ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '35']), 370];
yield 'margin and size' => [
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '100', 'size' => '200']),
400,
];
yield 'negative margin' => [ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '-50']), 300];
yield 'non-numeric margin' => [ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => 'foo']), 300];
yield 'negative margin and size' => [
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '-1', 'size' => '150']),
150,
];
yield 'non-numeric margin and size' => [
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => 'foo', 'size' => '538']),
538,
];
}
2016-08-09 15:18:20 +03:00
}