You are here

public function XssTest::testAttribute in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Utility/XssTest.php \Drupal\Tests\Component\Utility\XssTest::testAttribute()
  2. 10 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 492

Class

XssTest
XSS Filtering tests.

Namespace

Drupal\Tests\Component\Utility

Code

public function testAttribute($value, $expected, $message, $allowed_tags = NULL) {
  $value = Xss::filter($value, $allowed_tags);
  $this
    ->assertEquals($expected, $value, $message);
}