function WebAssertTest::testTextAsserts
Same name in this branch
- 11.x core/tests/Drupal/Tests/Core/Test/WebAssertTest.php \Drupal\Tests\Core\Test\WebAssertTest::testTextAsserts()
Same name in other branches
- 10 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testTextAsserts()
- 10 core/tests/Drupal/Tests/Core/Test/WebAssertTest.php \Drupal\Tests\Core\Test\WebAssertTest::testTextAsserts()
Tests legacy text asserts.
@covers ::responseContains @covers ::responseNotContains
File
-
core/
tests/ Drupal/ FunctionalTests/ WebAssertTest.php, line 298
Class
- WebAssertTest
- Tests WebAssert functionality.
Namespace
Drupal\FunctionalTestsCode
public function testTextAsserts() : void {
$this->drupalGet('test-encoded');
$dangerous = 'Bad html <script>alert(123);</script>';
$sanitized = Html::escape($dangerous);
$this->assertSession()
->responseNotContains($dangerous);
$this->assertSession()
->responseContains($sanitized);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.