public function XssTest::testAttribute in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Component/Utility/XssTest.php \Drupal\Tests\Component\Utility\XssTest::testAttribute()
Check that strings in HTML attributes are correctly processed.
@covers ::attributes @dataProvider providerTestAttributes
File
- core/
tests/ Drupal/ Tests/ Component/ Utility/ XssTest.php, line 496
Class
- XssTest
- XSS Filtering tests.
Namespace
Drupal\Tests\Component\UtilityCode
public function testAttribute($value, $expected, $message, $allowed_tags = NULL) {
$value = Xss::filter($value, $allowed_tags);
$this
->assertEquals($expected, $value, $message);
}