You are here

public function ValidationTest::testDisabledToken in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Form/ValidationTest.php \Drupal\Tests\system\Functional\Form\ValidationTest::testDisabledToken()
  2. 10 core/modules/system/tests/src/Functional/Form/ValidationTest.php \Drupal\Tests\system\Functional\Form\ValidationTest::testDisabledToken()

Tests that a form with a disabled CSRF token can be validated.

File

core/modules/system/tests/src/Functional/Form/ValidationTest.php, line 83

Class

ValidationTest
Tests form processing and alteration via form validation handlers.

Namespace

Drupal\Tests\system\Functional\Form

Code

public function testDisabledToken() {
  $this
    ->drupalPostForm('form-test/validate-no-token', [], 'Save');
  $this
    ->assertText('The form_test_validate_no_token form has been submitted successfully.');
}