class CsrfRequestHeaderTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/tests/src/Functional/CsrfRequestHeaderTest.php \Drupal\Tests\system\Functional\CsrfRequestHeaderTest
- 9 core/modules/system/tests/src/Functional/CsrfRequestHeaderTest.php \Drupal\Tests\system\Functional\CsrfRequestHeaderTest
Tests protecting routes by requiring CSRF token in the request header.
@group system
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, FunctionalTestSetupTrait, TestSetupTrait, BlockCreationTrait, ConfigTestTrait, ExtensionListTestTrait, ContentTypeCreationTrait, NodeCreationTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\Tests\system\Functional\CsrfRequestHeaderTest
Expanded class hierarchy of CsrfRequestHeaderTest
File
- core/
modules/ system/ tests/ src/ Functional/ CsrfRequestHeaderTest.php, line 13
Namespace
Drupal\Tests\system\FunctionalView source
class CsrfRequestHeaderTest extends BrowserTestBase {
/**
* Modules to enable.
*
* @var array
*/
protected static $modules = [
'system',
'csrf_test',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Tests access to routes protected by CSRF request header requirements.
*
* This checks one route that uses _csrf_request_header_token.
*/
public function testRouteAccess() {
$client = $this
->getHttpClient();
$csrf_token_path = 'session/token';
// Test using the current path.
$route_name = 'csrf_test.protected';
$user = $this
->drupalCreateUser();
$this
->drupalLogin($user);
$csrf_token = $this
->drupalGet($csrf_token_path);
$url = Url::fromRoute($route_name)
->setAbsolute(TRUE)
->toString();
$post_options = [
'headers' => [
'Accept' => 'text/plain',
],
'http_errors' => FALSE,
];
// Test that access is allowed for anonymous user with no token in header.
$result = $client
->post($url, $post_options);
$this
->assertEquals(200, $result
->getStatusCode());
// Add cookies to POST options so that all other requests are for the
// authenticated user.
$post_options['cookies'] = $this
->getSessionCookies();
// Test that access is denied with no token in header.
$result = $client
->post($url, $post_options);
$this
->assertEquals(403, $result
->getStatusCode());
// Test that access is allowed with correct token in header.
$post_options['headers']['X-CSRF-Token'] = $csrf_token;
$result = $client
->post($url, $post_options);
$this
->assertEquals(200, $result
->getStatusCode());
// Test that access is denied with incorrect token in header.
$post_options['headers']['X-CSRF-Token'] = 'this-is-not-the-token-you-are-looking-for';
$result = $client
->post($url, $post_options);
$this
->assertEquals(403, $result
->getStatusCode());
}
}