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\Middleware;
|
|
|
|
|
|
|
|
use Doctrine\Common\Cache\ArrayCache;
|
|
|
|
use Doctrine\Common\Cache\Cache;
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2017-03-25 01:34:17 +03:00
|
|
|
use Prophecy\Argument;
|
2018-03-26 20:02:41 +03:00
|
|
|
use Psr\Http\Server\RequestHandlerInterface;
|
2016-08-09 15:18:20 +03:00
|
|
|
use Shlinkio\Shlink\Core\Middleware\QrCodeCacheMiddleware;
|
|
|
|
use Zend\Diactoros\Response;
|
2018-12-26 01:01:30 +03:00
|
|
|
use Zend\Diactoros\ServerRequest;
|
2016-08-09 15:18:20 +03:00
|
|
|
use Zend\Diactoros\Uri;
|
|
|
|
|
|
|
|
class QrCodeCacheMiddlewareTest extends TestCase
|
|
|
|
{
|
2019-12-30 00:48:40 +03:00
|
|
|
private QrCodeCacheMiddleware $middleware;
|
|
|
|
private Cache $cache;
|
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
|
|
|
{
|
|
|
|
$this->cache = new ArrayCache();
|
|
|
|
$this->middleware = new QrCodeCacheMiddleware($this->cache);
|
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2017-03-25 01:34:17 +03:00
|
|
|
public function noCachedPathFallsBackToNextMiddleware()
|
2016-08-09 15:18:20 +03:00
|
|
|
{
|
2018-03-26 20:02:41 +03:00
|
|
|
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
2018-11-11 15:18:21 +03:00
|
|
|
$delegate->handle(Argument::any())->willReturn(new Response())->shouldBeCalledOnce();
|
2017-03-25 11:22:00 +03:00
|
|
|
|
2018-12-26 01:01:30 +03:00
|
|
|
$this->middleware->process((new ServerRequest())->withUri(new Uri('/foo/bar')), $delegate->reveal());
|
2017-03-25 01:34:17 +03:00
|
|
|
|
|
|
|
$this->assertTrue($this->cache->contains('/foo/bar'));
|
2016-08-09 15:18:20 +03:00
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2016-08-09 15:18:20 +03:00
|
|
|
public function cachedPathReturnsCacheContent()
|
|
|
|
{
|
|
|
|
$isCalled = false;
|
|
|
|
$uri = (new Uri())->withPath('/foo');
|
|
|
|
$this->cache->save('/foo', ['body' => 'the body', 'content-type' => 'image/png']);
|
2018-03-26 20:02:41 +03:00
|
|
|
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
2016-08-09 15:18:20 +03:00
|
|
|
|
2018-12-26 01:01:30 +03:00
|
|
|
$resp = $this->middleware->process((new ServerRequest())->withUri($uri), $delegate->reveal());
|
2016-08-09 15:18:20 +03:00
|
|
|
|
|
|
|
$this->assertFalse($isCalled);
|
|
|
|
$resp->getBody()->rewind();
|
|
|
|
$this->assertEquals('the body', $resp->getBody()->getContents());
|
|
|
|
$this->assertEquals('image/png', $resp->getHeaderLine('Content-Type'));
|
2018-03-26 20:02:41 +03:00
|
|
|
$delegate->handle(Argument::any())->shouldHaveBeenCalledTimes(0);
|
2016-08-09 15:18:20 +03:00
|
|
|
}
|
|
|
|
}
|