CsrfAccessCheckTest.php
Same filename and directory in other branches
Namespace
Drupal\Tests\Core\AccessFile
-
core/
tests/ Drupal/ Tests/ Core/ Access/ CsrfAccessCheckTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\Core\Access;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Access\CsrfTokenGenerator;
use Drupal\Core\Routing\RouteMatchInterface;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Route;
use Drupal\Core\Access\CsrfAccessCheck;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\Core\Access\CsrfAccessCheck
* @group Access
*/
class CsrfAccessCheckTest extends UnitTestCase {
/**
* The mock CSRF token generator.
*/
protected CsrfTokenGenerator $csrfToken;
/**
* The access checker.
*/
protected CsrfAccessCheck $accessCheck;
/**
* The mock route match.
*/
protected RouteMatchInterface $routeMatch;
/**
* The mock parameter bag.
*/
protected ParameterBagInterface $parameterBag;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->csrfToken = $this->getMockBuilder(CsrfTokenGenerator::class)
->disableOriginalConstructor()
->getMock();
$this->parameterBag = $this->createMock(ParameterBagInterface::class);
$this->routeMatch = $this->createMock(RouteMatchInterface::class);
$this->accessCheck = new CsrfAccessCheck($this->csrfToken);
}
/**
* Tests the access() method with a valid token.
*/
public function testAccessTokenPass() : void {
$this->csrfToken
->expects($this->once())
->method('validate')
->with('test_query', 'test-path/42')
->willReturn(TRUE);
$this->parameterBag
->method('all')
->willReturn([
'node' => 42,
]);
$this->routeMatch
->expects($this->once())
->method('getRawParameters')
->willReturn($this->parameterBag);
$route = new Route('/test-path/{node}', [], [
'_csrf_token' => 'TRUE',
]);
$request = Request::create('/test-path/42?token=test_query');
$this->assertEquals(AccessResult::allowed()->setCacheMaxAge(0), $this->accessCheck
->access($route, $request, $this->routeMatch));
}
/**
* @covers ::access
*/
public function testCsrfTokenInvalid() : void {
$this->csrfToken
->expects($this->once())
->method('validate')
->with('test_query', 'test-path')
->willReturn(FALSE);
$this->parameterBag
->method('all')
->willReturn([]);
$this->routeMatch
->expects($this->once())
->method('getRawParameters')
->willReturn($this->parameterBag);
$route = new Route('/test-path', [], [
'_csrf_token' => 'TRUE',
]);
$request = Request::create('/test-path?token=test_query');
$this->assertEquals(AccessResult::forbidden("'csrf_token' URL query argument is invalid.")->setCacheMaxAge(0), $this->accessCheck
->access($route, $request, $this->routeMatch));
}
/**
* @covers ::access
*/
public function testCsrfTokenMissing() : void {
$this->csrfToken
->expects($this->once())
->method('validate')
->with('', 'test-path')
->willReturn(FALSE);
$this->parameterBag
->method('all')
->willReturn([]);
$this->routeMatch
->expects($this->once())
->method('getRawParameters')
->willReturn($this->parameterBag);
$route = new Route('/test-path', [], [
'_csrf_token' => 'TRUE',
]);
$request = Request::create('/test-path');
$this->assertEquals(AccessResult::forbidden("'csrf_token' URL query argument is missing.")->setCacheMaxAge(0), $this->accessCheck
->access($route, $request, $this->routeMatch));
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
CsrfAccessCheckTest | @coversDefaultClass \Drupal\Core\Access\CsrfAccessCheck[[api-linebreak]] @group Access |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.