You are here

public function AddFeedTest::testFeedIconEscaping in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Kernel/Common/AddFeedTest.php \Drupal\Tests\system\Kernel\Common\AddFeedTest::testFeedIconEscaping()

Checks that special characters are correctly escaped.

See also

https://www.drupal.org/node/1211668

File

core/modules/system/tests/src/Kernel/Common/AddFeedTest.php, line 90

Class

AddFeedTest
Make sure that attaching feeds works correctly with various constructs.

Namespace

Drupal\Tests\system\Kernel\Common

Code

public function testFeedIconEscaping() {
  $variables = [
    '#theme' => 'feed_icon',
    '#url' => 'node',
    '#title' => '<>&"\'',
  ];
  $text = \Drupal::service('renderer')
    ->renderRoot($variables);
  $this
    ->assertEqual(trim(strip_tags($text)), 'Subscribe to &lt;&gt;&amp;&quot;&#039;', 'feed_icon template escapes reserved HTML characters.');
}