function FormActionXssTest::setUp

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Form/FormActionXssTest.php \Drupal\KernelTests\Core\Form\FormActionXssTest::setUp()
  2. 8.9.x core/tests/Drupal/KernelTests/Core/Form/FormActionXssTest.php \Drupal\KernelTests\Core\Form\FormActionXssTest::setUp()
  3. 10 core/tests/Drupal/KernelTests/Core/Form/FormActionXssTest.php \Drupal\KernelTests\Core\Form\FormActionXssTest::setUp()

Overrides KernelTestBase::setUp

File

core/tests/Drupal/KernelTests/Core/Form/FormActionXssTest.php, line 60

Class

FormActionXssTest
Ensures that a form's action attribute can't be exploited with XSS.

Namespace

Drupal\KernelTests\Core\Form

Code

protected function setUp() : void {
    parent::setUp();
    $this->installEntitySchema('user');
    $test_user = User::create([
        'name' => 'foobar',
        'mail' => 'foobar@example.com',
    ]);
    $test_user->save();
    \Drupal::service('current_user')->setAccount($test_user);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.