mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-23 15:40:33 -06:00
46 lines
1.5 KiB
PHP
46 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Core\ErrorHandler;
|
|
|
|
use Laminas\Diactoros\ServerRequestFactory;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Psr\Http\Server\RequestHandlerInterface;
|
|
use Shlinkio\Shlink\Core\ErrorHandler\Model\NotFoundType;
|
|
use Shlinkio\Shlink\Core\ErrorHandler\NotFoundTrackerMiddleware;
|
|
use Shlinkio\Shlink\Core\Visit\RequestTrackerInterface;
|
|
|
|
class NotFoundTrackerMiddlewareTest extends TestCase
|
|
{
|
|
private NotFoundTrackerMiddleware $middleware;
|
|
private ServerRequestInterface $request;
|
|
private MockObject $handler;
|
|
private MockObject $requestTracker;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->handler = $this->createMock(RequestHandlerInterface::class);
|
|
$this->requestTracker = $this->createMock(RequestTrackerInterface::class);
|
|
$this->middleware = new NotFoundTrackerMiddleware($this->requestTracker);
|
|
|
|
$this->request = ServerRequestFactory::fromGlobals()->withAttribute(
|
|
NotFoundType::class,
|
|
$this->createMock(NotFoundType::class),
|
|
);
|
|
}
|
|
|
|
/** @test */
|
|
public function delegatesIntoRequestTracker(): void
|
|
{
|
|
$this->handler->expects($this->once())->method('handle')->with($this->equalTo($this->request));
|
|
$this->requestTracker->expects($this->once())->method('trackNotFoundIfApplicable')->with(
|
|
$this->equalTo($this->request),
|
|
);
|
|
|
|
$this->middleware->process($this->request, $this->handler);
|
|
}
|
|
}
|