You are here

public function TaxonomyIndexTidUiTest::testExposedFilter in Drupal 10

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

Tests exposed taxonomy filters.

File

core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidUiTest.php, line 150

Class

TaxonomyIndexTidUiTest
Tests the taxonomy index filter handler UI.

Namespace

Drupal\Tests\taxonomy\Functional\Views

Code

public function testExposedFilter() {
  $node_type = $this
    ->drupalCreateContentType([
    'type' => 'page',
  ]);

  // Create the tag field itself.
  $field_name = 'taxonomy_tags';
  $this
    ->createEntityReferenceField('node', $node_type
    ->id(), $field_name, NULL, 'taxonomy_term');

  // Create 4 nodes: 1 without a term, 2 with the same term, and 1 with a
  // different term.
  $node1 = $this
    ->drupalCreateNode();
  $node2 = $this
    ->drupalCreateNode([
    $field_name => [
      [
        'target_id' => $this->terms[1][0]
          ->id(),
      ],
    ],
  ]);
  $node3 = $this
    ->drupalCreateNode([
    $field_name => [
      [
        'target_id' => $this->terms[1][0]
          ->id(),
      ],
    ],
  ]);
  $node4 = $this
    ->drupalCreateNode([
    $field_name => [
      [
        'target_id' => $this->terms[2][0]
          ->id(),
      ],
    ],
  ]);

  // Only the nodes with the selected term should be shown.
  $this
    ->drupalGet('test-filter-taxonomy-index-tid');
  $this
    ->assertSession()
    ->pageTextNotContains($node1
    ->getTitle());
  $this
    ->assertSession()
    ->linkByHrefNotExists($node1
    ->toUrl()
    ->toString());
  $xpath_node2_link = $this
    ->assertSession()
    ->buildXPathQuery('//div[@class="views-row"]//a[@href=:url and text()=:label]', [
    ':url' => $node2
      ->toUrl()
      ->toString(),
    ':label' => $node2
      ->label(),
  ]);
  $this
    ->assertSession()
    ->elementsCount('xpath', $xpath_node2_link, 1);
  $xpath_node3_link = $this
    ->assertSession()
    ->buildXPathQuery('//div[@class="views-row"]//a[@href=:url and text()=:label]', [
    ':url' => $node3
      ->toUrl()
      ->toString(),
    ':label' => $node3
      ->label(),
  ]);
  $this
    ->assertSession()
    ->elementsCount('xpath', $xpath_node3_link, 1);
  $this
    ->assertSession()
    ->pageTextNotContains($node4
    ->getTitle());
  $this
    ->assertSession()
    ->linkByHrefNotExists($node4
    ->toUrl()
    ->toString());

  // Expose the filter.
  $this
    ->drupalGet('admin/structure/views/nojs/handler/test_filter_taxonomy_index_tid/default/filter/tid');
  $this
    ->submitForm([], 'Expose filter');

  // Set the operator to 'empty' and remove the default term ID.
  $this
    ->submitForm([
    'options[operator]' => 'empty',
    'options[value][]' => [],
  ], 'Apply');

  // Save the view.
  $this
    ->submitForm([], 'Save');

  // After switching to 'empty' operator, the node without a term should be
  // shown.
  $this
    ->drupalGet('test-filter-taxonomy-index-tid');
  $xpath_node1_link = $this
    ->assertSession()
    ->buildXPathQuery('//div[@class="views-row"]//a[@href=:url and text()=:label]', [
    ':url' => $node1
      ->toUrl()
      ->toString(),
    ':label' => $node1
      ->label(),
  ]);
  $this
    ->assertSession()
    ->elementsCount('xpath', $xpath_node1_link, 1);
  $this
    ->assertSession()
    ->pageTextNotContains($node2
    ->getTitle());
  $this
    ->assertSession()
    ->linkByHrefNotExists($node2
    ->toUrl()
    ->toString());
  $this
    ->assertSession()
    ->pageTextNotContains($node3
    ->getTitle());
  $this
    ->assertSession()
    ->linkByHrefNotExists($node3
    ->toUrl()
    ->toString());
  $this
    ->assertSession()
    ->pageTextNotContains($node4
    ->getTitle());
  $this
    ->assertSession()
    ->linkByHrefNotExists($node4
    ->toUrl()
    ->toString());

  // Set the operator to 'not empty'.
  $this
    ->drupalGet('admin/structure/views/nojs/handler/test_filter_taxonomy_index_tid/default/filter/tid');
  $this
    ->submitForm([
    'options[operator]' => 'not empty',
  ], 'Apply');

  // Save the view.
  $this
    ->submitForm([], 'Save');

  // After switching to 'not empty' operator, all nodes with terms should be
  // shown.
  $this
    ->drupalGet('test-filter-taxonomy-index-tid');
  $this
    ->assertSession()
    ->pageTextNotContains($node1
    ->getTitle());
  $this
    ->assertSession()
    ->linkByHrefNotExists($node1
    ->toUrl()
    ->toString());
  $xpath_node2_link = $this
    ->assertSession()
    ->buildXPathQuery('//div[@class="views-row"]//a[@href=:url and text()=:label]', [
    ':url' => $node2
      ->toUrl()
      ->toString(),
    ':label' => $node2
      ->label(),
  ]);
  $this
    ->assertSession()
    ->elementsCount('xpath', $xpath_node2_link, 1);
  $xpath_node3_link = $this
    ->assertSession()
    ->buildXPathQuery('//div[@class="views-row"]//a[@href=:url and text()=:label]', [
    ':url' => $node3
      ->toUrl()
      ->toString(),
    ':label' => $node3
      ->label(),
  ]);
  $this
    ->assertSession()
    ->elementsCount('xpath', $xpath_node3_link, 1);
  $xpath_node4_link = $this
    ->assertSession()
    ->buildXPathQuery('//div[@class="views-row"]//a[@href=:url and text()=:label]', [
    ':url' => $node4
      ->toUrl()
      ->toString(),
    ':label' => $node4
      ->label(),
  ]);
  $this
    ->assertSession()
    ->elementsCount('xpath', $xpath_node4_link, 1);

  // Select 'Term ID' as the field to be displayed.
  $edit = [
    'name[taxonomy_term_field_data.tid]' => TRUE,
  ];
  $this
    ->drupalGet('admin/structure/views/nojs/add-handler/test_taxonomy_term_name/default/field');
  $this
    ->submitForm($edit, 'Add and configure fields');

  // Select 'Term' and 'Vocabulary' as filters.
  $edit = [
    'name[taxonomy_term_field_data.tid]' => TRUE,
    'name[taxonomy_term_field_data.vid]' => TRUE,
  ];
  $this
    ->drupalGet('admin/structure/views/nojs/add-handler/test_taxonomy_term_name/default/filter');
  $this
    ->submitForm($edit, 'Add and configure filter criteria');

  // Select 'Empty Vocabulary' and 'Autocomplete' from the list of options.
  $this
    ->drupalGet('admin/structure/views/nojs/handler-extra/test_taxonomy_term_name/default/filter/tid');
  $this
    ->submitForm([], 'Apply and continue');

  // Expose the filter.
  $edit = [
    'options[expose_button][checkbox][checkbox]' => TRUE,
  ];
  $this
    ->drupalGet('admin/structure/views/nojs/handler/test_taxonomy_term_name/default/filter/tid');
  $this
    ->submitForm($edit, 'Expose filter');
  $this
    ->drupalGet('admin/structure/views/nojs/handler/test_taxonomy_term_name/default/filter/tid');
  $this
    ->submitForm($edit, 'Apply');

  // Filter 'Taxonomy terms' belonging to 'Empty Vocabulary'.
  $edit = [
    'options[value][empty_vocabulary]' => TRUE,
  ];
  $this
    ->drupalGet('admin/structure/views/nojs/handler/test_taxonomy_term_name/default/filter/vid');
  $this
    ->submitForm($edit, 'Apply');
  $this
    ->drupalGet('admin/structure/views/view/test_taxonomy_term_name/edit/default');
  $this
    ->submitForm([], 'Save');
  $this
    ->submitForm([], 'Update preview');
  $this
    ->assertSession()
    ->pageTextNotContains($node1
    ->getTitle());
  $this
    ->assertSession()
    ->linkByHrefNotExists($node1
    ->toUrl()
    ->toString());
  $this
    ->assertSession()
    ->pageTextNotContains($node2
    ->getTitle());
  $this
    ->assertSession()
    ->linkByHrefNotExists($node2
    ->toUrl()
    ->toString());
  $this
    ->assertSession()
    ->pageTextNotContains($node3
    ->getTitle());
  $this
    ->assertSession()
    ->linkByHrefNotExists($node3
    ->toUrl()
    ->toString());
  $this
    ->assertSession()
    ->pageTextNotContains($node4
    ->getTitle());
  $this
    ->assertSession()
    ->linkByHrefNotExists($node4
    ->toUrl()
    ->toString());
  $this
    ->assertSession()
    ->elementNotExists('xpath', "//div[@class='views-row']");
}