mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 16:23:37 +08:00
40 lines
942 B
PHP
40 lines
942 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of Flarum.
|
||
|
*
|
||
|
* For detailed copyright and license information, please view the
|
||
|
* LICENSE file that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
namespace Flarum\Tests\integration\middleware;
|
||
|
|
||
|
use Flarum\Testing\integration\TestCase;
|
||
|
|
||
|
class ReferrerPolicyTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function has_referer_header()
|
||
|
{
|
||
|
$response = $this->send(
|
||
|
$this->request('GET', '/')
|
||
|
);
|
||
|
$this->assertEquals(200, $response->getStatusCode());
|
||
|
$this->assertArrayHasKey('Referrer-Policy', $response->getHeaders());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function has_default_referer_policy()
|
||
|
{
|
||
|
$response = $this->send(
|
||
|
$this->request('GET', '/')
|
||
|
);
|
||
|
$this->assertEquals(200, $response->getStatusCode());
|
||
|
$this->assertEquals('same-origin', $response->getHeader('Referrer-Policy')[0]);
|
||
|
}
|
||
|
}
|