2017-04-13 10:52:17 +03:00
|
|
|
<?php
|
2019-10-05 18:26:10 +03:00
|
|
|
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-08-11 14:20:18 +03:00
|
|
|
namespace ShlinkioTest\Shlink\Rest\Middleware;
|
2017-04-13 10:52:17 +03:00
|
|
|
|
2020-01-01 23:11:53 +03:00
|
|
|
use Laminas\Diactoros\Response\EmptyResponse;
|
|
|
|
use Mezzio\Router\Middleware\ImplicitOptionsMiddleware;
|
2017-04-13 10:52:17 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2018-10-28 10:24:06 +03:00
|
|
|
use ReflectionObject;
|
2019-08-11 14:20:18 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Middleware\EmptyResponseImplicitOptionsMiddlewareFactory;
|
2017-04-13 10:52:17 +03:00
|
|
|
|
|
|
|
class EmptyResponseImplicitOptionsMiddlewareFactoryTest extends TestCase
|
|
|
|
{
|
2019-12-30 00:48:40 +03:00
|
|
|
private EmptyResponseImplicitOptionsMiddlewareFactory $factory;
|
2017-04-13 10:52:17 +03:00
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
public function setUp(): void
|
2017-04-13 10:52:17 +03:00
|
|
|
{
|
|
|
|
$this->factory = new EmptyResponseImplicitOptionsMiddlewareFactory();
|
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2019-08-11 00:58:21 +03:00
|
|
|
public function serviceIsCreated(): void
|
2017-04-13 10:52:17 +03:00
|
|
|
{
|
2019-08-11 00:58:21 +03:00
|
|
|
$instance = ($this->factory)();
|
2020-10-04 01:35:14 +03:00
|
|
|
self::assertInstanceOf(ImplicitOptionsMiddleware::class, $instance);
|
2017-04-13 10:52:17 +03:00
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2019-08-11 00:58:21 +03:00
|
|
|
public function responsePrototypeIsEmptyResponse(): void
|
2017-04-13 10:52:17 +03:00
|
|
|
{
|
2019-08-11 00:58:21 +03:00
|
|
|
$instance = ($this->factory)();
|
2017-04-13 10:52:17 +03:00
|
|
|
|
2018-10-28 10:24:06 +03:00
|
|
|
$ref = new ReflectionObject($instance);
|
2018-03-26 20:02:41 +03:00
|
|
|
$prop = $ref->getProperty('responseFactory');
|
2017-04-13 10:52:17 +03:00
|
|
|
$prop->setAccessible(true);
|
2020-10-04 01:35:14 +03:00
|
|
|
self::assertInstanceOf(EmptyResponse::class, $prop->getValue($instance)());
|
2017-04-13 10:52:17 +03:00
|
|
|
}
|
|
|
|
}
|