function FilterUnitTestCase::assertNormalized

Asserts that a text transformed to lowercase with HTML entities decoded does contains 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

$haystack: Text to look in.

$needle: Lowercase, plain text to look for.

$message: (optional) Message to display if failed. Defaults to an empty string.

$group: (optional) The group this message belongs to. Defaults to 'Other'.

Return value

TRUE on pass, FALSE on fail.

3 calls to FilterUnitTestCase::assertNormalized()
FilterUnitTestCase::testFilterXSS in modules/filter/filter.test
Tests limiting allowed tags and XSS prevention.
FilterUnitTestCase::testHtmlFilter in modules/filter/filter.test
Tests filter settings, defaults, access restrictions and similar.
FilterUnitTestCase::testNoFollowFilter in modules/filter/filter.test
Tests the spam deterrent.

File

modules/filter/filter.test, line 1863

Class

FilterUnitTestCase
Unit tests for core filters.

Code

function assertNormalized($haystack, $needle, $message = '', $group = 'Other') {
    return $this->assertTrue(strpos(strtolower(decode_entities($haystack)), $needle) !== FALSE, $message, $group);
}

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