function WebAssertTest::testTextAsserts

Same name in this branch
  1. 10 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testTextAsserts()
Same name in other branches
  1. 11.x core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testTextAsserts()
  2. 11.x 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/Tests/Core/Test/WebAssertTest.php, line 344

Class

WebAssertTest
Tests WebAssert functionality.

Namespace

Drupal\Tests\Core\Test

Code

public function testTextAsserts() : void {
    $this->visit('', 'Bad html <script>alert(123);</script>');
    $dangerous = 'Bad html <script>alert(123);</script>';
    $sanitized = Html::escape($dangerous);
    $this->assertSession()
        ->responseNotContains($dangerous);
    $this->assertSession()
        ->responseContains($sanitized);
    $this->addToAssertionCount(2);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.