You are here

SearchAdvancedSearchFormTest.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/search/src/Tests/SearchAdvancedSearchFormTest.php

File

core/modules/search/src/Tests/SearchAdvancedSearchFormTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\search\Tests\SearchAdvancedSearchFormTest.
 */
namespace Drupal\search\Tests;


/**
 * Indexes content and tests the advanced search form.
 *
 * @group search
 */
class SearchAdvancedSearchFormTest extends SearchTestBase {

  /**
   * A node to use for testing.
   *
   * @var \Drupal\node\NodeInterface
   */
  protected $node;
  protected function setUp() {
    parent::setUp();

    // Create and login user.
    $test_user = $this
      ->drupalCreateUser(array(
      'access content',
      'search content',
      'use advanced search',
      'administer nodes',
    ));
    $this
      ->drupalLogin($test_user);

    // Create initial node.
    $this->node = $this
      ->drupalCreateNode();

    // First update the index. This does the initial processing.
    $this->container
      ->get('plugin.manager.search')
      ->createInstance('node_search')
      ->updateIndex();

    // Then, run the shutdown function. Testing is a unique case where indexing
    // and searching has to happen in the same request, so running the shutdown
    // function manually is needed to finish the indexing process.
    search_update_totals();
  }

  /**
   * Tests advanced search by node type.
   */
  function testNodeType() {

    // Verify some properties of the node that was created.
    $this
      ->assertTrue($this->node
      ->getType() == 'page', 'Node type is Basic page.');
    $dummy_title = 'Lorem ipsum';
    $this
      ->assertNotEqual($dummy_title, $this->node
      ->label(), "Dummy title doesn't equal node title.");

    // Search for the dummy title with a GET query.
    $this
      ->drupalGet('search/node', array(
      'query' => array(
        'keys' => $dummy_title,
      ),
    ));
    $this
      ->assertNoText($this->node
      ->label(), 'Basic page node is not found with dummy title.');

    // Search for the title of the node with a GET query.
    $this
      ->drupalGet('search/node', array(
      'query' => array(
        'keys' => $this->node
          ->label(),
      ),
    ));
    $this
      ->assertText($this->node
      ->label(), 'Basic page node is found with GET query.');

    // Search for the title of the node with a POST query.
    $edit = array(
      'or' => $this->node
        ->label(),
    );
    $this
      ->drupalPostForm('search/node', $edit, t('Advanced search'));
    $this
      ->assertText($this->node
      ->label(), 'Basic page node is found with POST query.');

    // Search by node type.
    $this
      ->drupalPostForm('search/node', array_merge($edit, array(
      'type[page]' => 'page',
    )), t('Advanced search'));
    $this
      ->assertText($this->node
      ->label(), 'Basic page node is found with POST query and type:page.');
    $this
      ->drupalPostForm('search/node', array_merge($edit, array(
      'type[article]' => 'article',
    )), t('Advanced search'));
    $this
      ->assertText('search yielded no results', 'Article node is not found with POST query and type:article.');
  }

  /**
   * Tests that after submitting the advanced search form, the form is refilled.
   */
  function testFormRefill() {
    $edit = array(
      'keys' => 'cat',
      'or' => 'dog gerbil',
      'phrase' => 'pets are nice',
      'negative' => 'fish snake',
      'type[page]' => 'page',
    );
    $this
      ->drupalPostForm('search/node', $edit, t('Advanced search'));

    // Test that the encoded query appears in the page title. Only test the
    // part not including the quote, because assertText() cannot seem to find
    // the quote marks successfully.
    $this
      ->assertText('Search for cat dog OR gerbil -fish -snake');

    // Verify that all of the form fields are filled out.
    foreach ($edit as $key => $value) {
      if ($key != 'type[page]') {
        $elements = $this
          ->xpath('//input[@name=:name]', array(
          ':name' => $key,
        ));
        $this
          ->assertTrue(isset($elements[0]) && $elements[0]['value'] == $value, "Field {$key} is set to {$value}");
      }
      else {
        $elements = $this
          ->xpath('//input[@name=:name]', array(
          ':name' => $key,
        ));
        $this
          ->assertTrue(isset($elements[0]) && !empty($elements[0]['checked']), "Field {$key} is checked");
      }
    }

    // Now test by submitting the or/not part of the query in the main
    // search box, and verify that the advanced form is not filled out.
    // (It shouldn't be filled out unless you submit values in those fields.)
    $edit2 = array(
      'keys' => 'cat dog OR gerbil -fish -snake',
    );
    $this
      ->drupalPostForm('search/node', $edit2, t('Advanced search'));
    $this
      ->assertText('Search for cat dog OR gerbil -fish -snake');
    foreach ($edit as $key => $value) {
      if ($key != 'type[page]') {
        $elements = $this
          ->xpath('//input[@name=:name]', array(
          ':name' => $key,
        ));
        $this
          ->assertFalse(isset($elements[0]) && $elements[0]['value'] == $value, "Field {$key} is not set to {$value}");
      }
    }
  }

}

Classes

Namesort descending Description
SearchAdvancedSearchFormTest Indexes content and tests the advanced search form.