function FilterNoFormatTest::testCheckMarkupNoFormat

Same name and namespace in other branches
  1. 8.9.x core/modules/filter/tests/src/Kernel/FilterNoFormatTest.php \Drupal\Tests\filter\Kernel\FilterNoFormatTest::testCheckMarkupNoFormat()
  2. 10 core/modules/filter/tests/src/Kernel/FilterNoFormatTest.php \Drupal\Tests\filter\Kernel\FilterNoFormatTest::testCheckMarkupNoFormat()
  3. 11.x core/modules/filter/tests/src/Kernel/FilterNoFormatTest.php \Drupal\Tests\filter\Kernel\FilterNoFormatTest::testCheckMarkupNoFormat()

Tests text without format.

Tests if text with no format is filtered the same way as text in the fallback format.

File

core/modules/filter/tests/src/Kernel/FilterNoFormatTest.php, line 25

Class

FilterNoFormatTest
Tests the behavior of <a href="/api/drupal/core%21modules%21filter%21filter.module/function/check_markup/9" title="Runs all the enabled filters on a piece of text." class="local">check_markup</a>() when it is called without text format.

Namespace

Drupal\Tests\filter\Kernel

Code

public function testCheckMarkupNoFormat() {
    $this->installConfig([
        'filter',
    ]);
    // Create some text. Include some HTML and line breaks, so we get a good
    // test of the filtering that is applied to it.
    $text = "<strong>" . $this->randomMachineName(32) . "</strong>\n\n<div>" . $this->randomMachineName(32) . "</div>";
    // Make sure that when this text is run through check_markup() with no text
    // format, it is filtered as though it is in the fallback format.
    $this->assertEquals(check_markup($text), check_markup($text, filter_fallback_format()));
}

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