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

81 lines
3.1 KiB
PHP
Raw Normal View History

2016-08-09 07:18:20 -05:00
<?php
2019-10-05 10:26:10 -05:00
2017-10-12 03:13:20 -05:00
declare(strict_types=1);
2016-08-09 07:18:20 -05:00
namespace ShlinkioTest\Shlink\Core\Action;
2020-01-01 14:11:53 -06:00
use Laminas\Diactoros\Response;
use Laminas\Diactoros\ServerRequest;
use Mezzio\Router\RouterInterface;
2017-03-24 14:34:18 -05:00
use PHPUnit\Framework\TestCase;
2016-08-09 07:18:20 -05:00
use Prophecy\Argument;
use Prophecy\Prophecy\ObjectProphecy;
2018-03-26 12:02:41 -05:00
use Psr\Http\Server\RequestHandlerInterface;
2016-08-09 07:18:20 -05: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\Service\ShortUrl\ShortUrlResolverInterface;
2016-08-09 07:18:20 -05:00
class QrCodeActionTest extends TestCase
{
2019-12-29 15:27:00 -06:00
private QrCodeAction $action;
private ObjectProphecy $urlResolver;
2016-08-09 07:18:20 -05:00
2019-02-16 03:53:45 -06:00
public function setUp(): void
2016-08-09 07:18:20 -05:00
{
$router = $this->prophesize(RouterInterface::class);
$router->generateUri(Argument::cetera())->willReturn('/foo/bar');
$this->urlResolver = $this->prophesize(ShortUrlResolverInterface::class);
2016-08-09 07:18:20 -05:00
$this->action = new QrCodeAction($router->reveal(), $this->urlResolver->reveal());
2016-08-09 07:18:20 -05:00
}
2019-02-17 13:28:34 -06:00
/** @test */
2019-10-22 12:52:28 -05:00
public function aNotFoundShortCodeWillDelegateIntoNextMiddleware(): void
2016-08-09 07:18:20 -05:00
{
$shortCode = 'abc123';
$this->urlResolver->shortCodeToEnabledShortUrl($shortCode, '')->willThrow(ShortUrlNotFoundException::class)
->shouldBeCalledOnce();
2018-03-26 12:02:41 -05:00
$delegate = $this->prophesize(RequestHandlerInterface::class);
$process = $delegate->handle(Argument::any())->willReturn(new Response());
2016-08-09 07:18:20 -05:00
$this->action->process((new ServerRequest())->withAttribute('shortCode', $shortCode), $delegate->reveal());
2018-11-11 06:18:21 -06:00
$process->shouldHaveBeenCalledOnce();
2016-08-09 07:18:20 -05:00
}
2019-02-17 13:28:34 -06:00
/** @test */
2019-10-22 12:52:28 -05:00
public function anInvalidShortCodeWillReturnNotFoundResponse(): void
2016-08-09 07:18:20 -05:00
{
$shortCode = 'abc123';
$this->urlResolver->shortCodeToEnabledShortUrl($shortCode, '')->willThrow(ShortUrlNotFoundException::class)
->shouldBeCalledOnce();
2018-03-26 12:02:41 -05:00
$delegate = $this->prophesize(RequestHandlerInterface::class);
$process = $delegate->handle(Argument::any())->willReturn(new Response());
2016-08-09 07:18:20 -05:00
$this->action->process((new ServerRequest())->withAttribute('shortCode', $shortCode), $delegate->reveal());
2018-11-11 06:18:21 -06:00
$process->shouldHaveBeenCalledOnce();
2016-08-09 07:18:20 -05:00
}
2019-02-17 13:28:34 -06:00
/** @test */
2019-10-22 12:52:28 -05:00
public function aCorrectRequestReturnsTheQrCodeResponse(): void
2016-08-09 07:18:20 -05:00
{
$shortCode = 'abc123';
$this->urlResolver->shortCodeToEnabledShortUrl($shortCode, '')->willReturn(new ShortUrl(''))
->shouldBeCalledOnce();
2018-03-26 12:02:41 -05:00
$delegate = $this->prophesize(RequestHandlerInterface::class);
2016-08-09 07:18:20 -05:00
$resp = $this->action->process(
(new ServerRequest())->withAttribute('shortCode', $shortCode),
2020-01-01 13:48:31 -06:00
$delegate->reveal(),
2016-08-09 07:18:20 -05:00
);
$this->assertInstanceOf(QrCodeResponse::class, $resp);
$this->assertEquals(200, $resp->getStatusCode());
2018-03-26 12:02:41 -05:00
$delegate->handle(Argument::any())->shouldHaveBeenCalledTimes(0);
2016-08-09 07:18:20 -05:00
}
}