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

88 lines
3.2 KiB
PHP
Raw Normal View History

2016-08-18 18:23:40 +03:00
<?php
2017-10-12 11:13:20 +03:00
declare(strict_types=1);
2016-08-18 18:23:40 +03:00
namespace ShlinkioTest\Shlink\Core\Action;
use finfo;
2017-03-24 22:34:18 +03:00
use PHPUnit\Framework\TestCase;
use Prophecy\Argument;
2016-08-18 18:23:40 +03:00
use Prophecy\Prophecy\ObjectProphecy;
2018-03-26 20:02:41 +03:00
use Psr\Http\Server\RequestHandlerInterface;
2016-08-18 18:23:40 +03:00
use Shlinkio\Shlink\Common\Service\PreviewGenerator;
use Shlinkio\Shlink\Core\Action\PreviewAction;
use Shlinkio\Shlink\Core\Entity\ShortUrl;
use Shlinkio\Shlink\Core\Exception\EntityDoesNotExistException;
2016-08-18 18:23:40 +03:00
use Shlinkio\Shlink\Core\Exception\InvalidShortCodeException;
use Shlinkio\Shlink\Core\Service\UrlShortener;
use ShlinkioTest\Shlink\Common\Util\TestUtils;
use Zend\Diactoros\Response;
use Zend\Diactoros\ServerRequest;
use const FILEINFO_MIME;
use function filesize;
2016-08-18 18:23:40 +03:00
class PreviewActionTest extends TestCase
{
/** @var PreviewAction */
private $action;
/** @var ObjectProphecy */
2016-08-18 18:23:40 +03:00
private $previewGenerator;
/** @var ObjectProphecy */
2016-08-18 18:23:40 +03:00
private $urlShortener;
2019-02-16 12:53:45 +03:00
public function setUp(): void
2016-08-18 18:23:40 +03:00
{
$this->previewGenerator = $this->prophesize(PreviewGenerator::class);
$this->urlShortener = $this->prophesize(UrlShortener::class);
$this->action = new PreviewAction($this->previewGenerator->reveal(), $this->urlShortener->reveal());
}
2019-02-17 22:28:34 +03:00
/** @test */
public function invalidShortCodeFallsBackToNextMiddleware()
2016-08-18 18:23:40 +03:00
{
$shortCode = 'abc123';
$this->urlShortener->shortCodeToUrl($shortCode)->willThrow(EntityDoesNotExistException::class)
2018-11-11 15:18:21 +03:00
->shouldBeCalledOnce();
2018-03-26 20:02:41 +03:00
$delegate = $this->prophesize(RequestHandlerInterface::class);
2018-11-11 15:18:21 +03:00
$delegate->handle(Argument::cetera())->shouldBeCalledOnce()
->willReturn(new Response());
2016-08-18 18:23:40 +03:00
$this->action->process((new ServerRequest())->withAttribute('shortCode', $shortCode), $delegate->reveal());
2016-08-18 18:23:40 +03:00
}
2019-02-17 22:28:34 +03:00
/** @test */
2016-08-18 18:23:40 +03:00
public function correctShortCodeReturnsImageResponse()
{
$shortCode = 'abc123';
$url = 'foobar.com';
$shortUrl = new ShortUrl($url);
2016-08-18 18:23:40 +03:00
$path = __FILE__;
2018-11-11 15:18:21 +03:00
$this->urlShortener->shortCodeToUrl($shortCode)->willReturn($shortUrl)->shouldBeCalledOnce();
$this->previewGenerator->generatePreview($url)->willReturn($path)->shouldBeCalledOnce();
2016-08-18 18:23:40 +03:00
$resp = $this->action->process(
(new ServerRequest())->withAttribute('shortCode', $shortCode),
2018-03-26 20:02:41 +03:00
TestUtils::createReqHandlerMock()->reveal()
2016-08-18 18:23:40 +03:00
);
$this->assertEquals(filesize($path), $resp->getHeaderLine('Content-length'));
$this->assertEquals((new finfo(FILEINFO_MIME))->file($path), $resp->getHeaderLine('Content-type'));
2016-08-18 18:23:40 +03:00
}
2019-02-17 22:28:34 +03:00
/** @test */
public function invalidShortCodeExceptionFallsBackToNextMiddleware()
2016-08-18 18:23:40 +03:00
{
$shortCode = 'abc123';
$this->urlShortener->shortCodeToUrl($shortCode)->willThrow(InvalidShortCodeException::class)
2018-11-11 15:18:21 +03:00
->shouldBeCalledOnce();
2018-03-26 20:02:41 +03:00
$delegate = $this->prophesize(RequestHandlerInterface::class);
$process = $delegate->handle(Argument::any())->willReturn(new Response());
2016-08-18 18:23:40 +03:00
$this->action->process(
(new ServerRequest())->withAttribute('shortCode', $shortCode),
$delegate->reveal()
2016-08-18 18:23:40 +03:00
);
2018-11-11 15:18:21 +03:00
$process->shouldHaveBeenCalledOnce();
2016-08-18 18:23:40 +03:00
}
}