FormActionXssTest.php in Drupal 10
File
core/tests/Drupal/KernelTests/Core/Form/FormActionXssTest.php
View source
<?php
namespace Drupal\KernelTests\Core\Form;
use Drupal\Core\Form\FormInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\KernelTests\KernelTestBase;
use Drupal\user\Entity\User;
use Symfony\Component\HttpFoundation\Request;
class FormActionXssTest extends KernelTestBase implements FormInterface {
protected static $modules = [
'user',
'system',
];
public function getFormId() {
return 'external_form_url_test';
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form['something'] = [
'#type' => 'textfield',
'#title' => 'What do you think?',
];
return $form;
}
public function validateForm(array &$form, FormStateInterface $form_state) {
}
public function submitForm(array &$form, FormStateInterface $form_state) {
}
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);
}
public function testFormActionXss() {
$request_stack = \Drupal::service('request_stack');
$original_request = $request_stack
->pop();
$request_stack
->pop();
$request_stack
->pop();
$request = Request::create($original_request
->getSchemeAndHttpHost() . '/test/"injected=\'attribute\'close="');
$request_stack
->push($request);
$form = \Drupal::formBuilder()
->getForm($this);
$markup = \Drupal::service('renderer')
->renderRoot($form);
$this
->setRawContent($markup);
$elements = $this
->xpath('//form');
$action = isset($elements[0]['action']) ? (string) $elements[0]['action'] : FALSE;
$injected = isset($elements[0]['injected']) ? (string) $elements[0]['injected'] : FALSE;
$this
->assertSame('/test/"injected=\'attribute\'close="', $action);
$this
->assertRaw('action="/test/"injected='attribute'close=""');
$this
->assertNotSame('attribute', $injected);
}
}