protected function FormActionXssTest::setUp in Drupal 9
Same name and namespace in other branches
- 8 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\FormCode
protected function setUp() : void {
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);
}