You are here

protected function TaxonomyTermFilterDepthTest::assertTermWithDepthResult in Drupal 9

Same name in this branch
  1. 9 core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermFilterDepthTest.php \Drupal\Tests\taxonomy\Functional\Views\TaxonomyTermFilterDepthTest::assertTermWithDepthResult()
  2. 9 core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyTermFilterDepthTest.php \Drupal\Tests\taxonomy\Kernel\Views\TaxonomyTermFilterDepthTest::assertTermWithDepthResult()

Asserts the result of the view for the given filter configuration.

Parameters

array $expected: The expected views result.

int|int[] $tid: The term ID or IDs to filter on.

int $depth: The depth to search.

1 call to TaxonomyTermFilterDepthTest::assertTermWithDepthResult()
TaxonomyTermFilterDepthTest::testTermWithDepthFilter in core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyTermFilterDepthTest.php
Tests the terms with depth filter.

File

core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyTermFilterDepthTest.php, line 159

Class

TaxonomyTermFilterDepthTest
Test the taxonomy term with depth filter.

Namespace

Drupal\Tests\taxonomy\Kernel\Views

Code

protected function assertTermWithDepthResult(array $expected, $tid, int $depth) : void {
  $this->view
    ->destroy();
  $this->view
    ->initDisplay();
  $filters = $this->view->displayHandlers
    ->get('default')
    ->getOption('filters');
  $filters['tid_depth']['depth'] = $depth;
  $filters['tid_depth']['value'] = (array) $tid;
  $this->view->displayHandlers
    ->get('default')
    ->setOption('filters', $filters);
  $this
    ->executeView($this->view);
  $this
    ->assertIdenticalResultsetHelper($this->view, $expected, [
    'nid' => 'nid',
  ], 'assertIdentical');
}