shlink/module/Rest/test/Middleware/CrossDomainMiddlewareTest.php

83 lines
2.7 KiB
PHP
Raw Normal View History

2016-07-19 19:19:05 +03:00
<?php
2017-10-12 11:13:20 +03:00
declare(strict_types=1);
2016-07-19 19:19:05 +03:00
namespace ShlinkioTest\Shlink\Rest\Middleware;
2017-03-24 22:34:18 +03:00
use PHPUnit\Framework\TestCase;
use Prophecy\Argument;
use Prophecy\Prophecy\ObjectProphecy;
2018-03-26 20:02:41 +03:00
use Psr\Http\Server\RequestHandlerInterface;
2016-07-19 19:19:05 +03:00
use Shlinkio\Shlink\Rest\Middleware\CrossDomainMiddleware;
use Zend\Diactoros\Response;
use Zend\Diactoros\ServerRequestFactory;
class CrossDomainMiddlewareTest extends TestCase
{
/**
* @var CrossDomainMiddleware
*/
protected $middleware;
/**
* @var ObjectProphecy
*/
protected $delegate;
2016-07-19 19:19:05 +03:00
public function setUp()
{
$this->middleware = new CrossDomainMiddleware();
2018-03-26 20:02:41 +03:00
$this->delegate = $this->prophesize(RequestHandlerInterface::class);
2016-07-19 19:19:05 +03:00
}
/**
* @test
*/
public function nonCrossDomainRequestsAreNotAffected()
2016-07-19 19:19:05 +03:00
{
$originalResponse = new Response();
2018-03-26 20:02:41 +03:00
$this->delegate->handle(Argument::any())->willReturn($originalResponse)->shouldbeCalledTimes(1);
$response = $this->middleware->process(ServerRequestFactory::fromGlobals(), $this->delegate->reveal());
$this->assertSame($originalResponse, $response);
$headers = $response->getHeaders();
$this->assertArrayNotHasKey('Access-Control-Allow-Origin', $headers);
$this->assertArrayNotHasKey('Access-Control-Allow-Headers', $headers);
}
/**
* @test
*/
public function anyRequestIncludesTheAllowAccessHeader()
{
$originalResponse = new Response();
2018-03-26 20:02:41 +03:00
$this->delegate->handle(Argument::any())->willReturn($originalResponse)->shouldbeCalledTimes(1);
$response = $this->middleware->process(
ServerRequestFactory::fromGlobals()->withHeader('Origin', 'local'),
$this->delegate->reveal()
2016-07-19 19:19:05 +03:00
);
$this->assertNotSame($originalResponse, $response);
2016-07-19 19:19:05 +03:00
$headers = $response->getHeaders();
$this->assertArrayHasKey('Access-Control-Allow-Origin', $headers);
$this->assertArrayNotHasKey('Access-Control-Allow-Headers', $headers);
}
/**
* @test
*/
public function optionsRequestIncludesMoreHeaders()
{
$originalResponse = new Response();
$request = ServerRequestFactory::fromGlobals()->withMethod('OPTIONS')->withHeader('Origin', 'local');
2018-03-26 20:02:41 +03:00
$this->delegate->handle(Argument::any())->willReturn($originalResponse)->shouldbeCalledTimes(1);
2016-07-19 19:19:05 +03:00
$response = $this->middleware->process($request, $this->delegate->reveal());
$this->assertNotSame($originalResponse, $response);
2016-07-19 19:19:05 +03:00
$headers = $response->getHeaders();
$this->assertArrayHasKey('Access-Control-Allow-Origin', $headers);
$this->assertArrayHasKey('Access-Control-Allow-Headers', $headers);
}
}