1 backdrop_web_test_case.php protected BackdropWebTestCase::assertUniqueTextHelper($text, $message, $group, $be_unique)

Helper for assertUniqueText and assertNoUniqueText.

It is not recommended to call this function directly.

Parameters

$text: Plain text to look for.

$message: Message to display.

$group: The group this message belongs to.

$be_unique: TRUE if this text should be found only once, FALSE if it should be found more than once.

Return value

TRUE on pass, FALSE on fail.:

File

core/modules/simpletest/backdrop_web_test_case.php, line 3362

Class

BackdropWebTestCase
Test case for typical Backdrop tests.

Code

protected function assertUniqueTextHelper($text, $message, $group, $be_unique) {
  if ($this->plainTextContent === FALSE) {
    $this->plainTextContent = filter_xss($this->backdropGetContent(), array());
  }
  if (!$message) {
    $message = '"' . $text . '"' . ($be_unique ? ' found only once' : ' found more than once');
  }
  $first_occurrence = strpos($this->plainTextContent, $text);
  if ($first_occurrence === FALSE) {
    return $this->assert(FALSE, $message, $group);
  }
  $offset = $first_occurrence + strlen($text);
  $second_occurrence = strpos($this->plainTextContent, $text, $offset);
  return $this->assert($be_unique == ($second_occurrence === FALSE), $message, $group);
}