You are here

protected function FormActionXssTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 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 56

Class

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

Namespace

Drupal\KernelTests\Core\Form

Code

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