You are here

protected function TaxonomyFieldFilterTest::assertPageCounts in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/taxonomy/tests/src/Functional/Views/TaxonomyFieldFilterTest.php \Drupal\Tests\taxonomy\Functional\Views\TaxonomyFieldFilterTest::assertPageCounts()

Asserts that the given taxonomy translation counts are correct.

Parameters

string $path: Path of the page to test.

array $counts: Array whose keys are languages, and values are the number of times that translation should be shown on the given page.

string $message: Message suffix to display.

1 call to TaxonomyFieldFilterTest::assertPageCounts()
TaxonomyFieldFilterTest::testFilters in core/modules/taxonomy/tests/src/Functional/Views/TaxonomyFieldFilterTest.php
Tests description and term name filters.

File

core/modules/taxonomy/tests/src/Functional/Views/TaxonomyFieldFilterTest.php, line 151

Class

TaxonomyFieldFilterTest
Tests taxonomy field filters with translations.

Namespace

Drupal\Tests\taxonomy\Functional\Views

Code

protected function assertPageCounts($path, $counts, $message) {

  // Get the text of the page.
  $this
    ->drupalGet($path);
  $text = $this
    ->getTextContent();

  // Check the counts. Note that the title and body are both shown on the
  // page, and they are the same. So the title/body string should appear on
  // the page twice as many times as the input count.
  foreach ($counts as $langcode => $count) {
    $this
      ->assertEqual(substr_count($text, $this->termNames[$langcode]), 2 * $count, 'Translation ' . $langcode . ' has count ' . $count . ' with ' . $message);
  }
}