function XssTest::assertNormalized
Same name in other branches
- 9 core/tests/Drupal/Tests/Component/Utility/XssTest.php \Drupal\Tests\Component\Utility\XssTest::assertNormalized()
- 10 core/tests/Drupal/Tests/Component/Utility/XssTest.php \Drupal\Tests\Component\Utility\XssTest::assertNormalized()
- 11.x core/tests/Drupal/Tests/Component/Utility/XssTest.php \Drupal\Tests\Component\Utility\XssTest::assertNormalized()
Asserts that a text transformed to lowercase with HTML entities decoded does contain a given string.
Otherwise fails the test with a given message, similar to all the SimpleTest assert* functions.
Note that this does not remove nulls, new lines and other characters that could be used to obscure a tag or an attribute name.
Parameters
string $haystack: Text to look in.
string $needle: Lowercase, plain text to look for.
string $message: (optional) Message to display if failed. Defaults to an empty string.
string $group: (optional) The group this message belongs to. Defaults to 'Other'.
1 call to XssTest::assertNormalized()
- XssTest::testFilterXssNormalized in core/
tests/ Drupal/ Tests/ Component/ Utility/ XssTest.php - Tests limiting allowed tags and XSS prevention.
File
-
core/
tests/ Drupal/ Tests/ Component/ Utility/ XssTest.php, line 596
Class
- XssTest
- XSS Filtering tests.
Namespace
Drupal\Tests\Component\UtilityCode
protected function assertNormalized($haystack, $needle, $message = '', $group = 'Other') {
$this->assertTrue(strpos(strtolower(Html::decodeEntities($haystack)), $needle) !== FALSE, $message, $group);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.