You are here

function SearchExactTest::testExactQuery in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/search/src/Tests/SearchExactTest.php \Drupal\search\Tests\SearchExactTest::testExactQuery()

Tests that the correct number of pager links are found for both keywords and phrases.

File

core/modules/search/src/Tests/SearchExactTest.php, line 19
Contains \Drupal\search\Tests\SearchExactTest.

Class

SearchExactTest
Tests that searching for a phrase gets the correct page count.

Namespace

Drupal\search\Tests

Code

function testExactQuery() {

  // Login with sufficient privileges.
  $user = $this
    ->drupalCreateUser(array(
    'create page content',
    'search content',
  ));
  $this
    ->drupalLogin($user);
  $settings = array(
    'type' => 'page',
    'title' => 'Simple Node',
  );

  // Create nodes with exact phrase.
  for ($i = 0; $i <= 17; $i++) {
    $settings['body'] = array(
      array(
        'value' => 'love pizza',
      ),
    );
    $this
      ->drupalCreateNode($settings);
  }

  // Create nodes containing keywords.
  for ($i = 0; $i <= 17; $i++) {
    $settings['body'] = array(
      array(
        'value' => 'love cheesy pizza',
      ),
    );
    $this
      ->drupalCreateNode($settings);
  }

  // Create another node and save it for later.
  $settings['body'] = array(
    array(
      'value' => 'Druplicon',
    ),
  );
  $node = $this
    ->drupalCreateNode($settings);

  // Update the search index.
  $this->container
    ->get('plugin.manager.search')
    ->createInstance('node_search')
    ->updateIndex();
  search_update_totals();

  // Refresh variables after the treatment.
  $this
    ->refreshVariables();

  // Test that the correct number of pager links are found for keyword search.
  $edit = array(
    'keys' => 'love pizza',
  );
  $this
    ->drupalPostForm('search/node', $edit, t('Search'));
  $this
    ->assertLinkByHref('page=1', 0, '2nd page link is found for keyword search.');
  $this
    ->assertLinkByHref('page=2', 0, '3rd page link is found for keyword search.');
  $this
    ->assertLinkByHref('page=3', 0, '4th page link is found for keyword search.');
  $this
    ->assertNoLinkByHref('page=4', '5th page link is not found for keyword search.');

  // Test that the correct number of pager links are found for exact phrase search.
  $edit = array(
    'keys' => '"love pizza"',
  );
  $this
    ->drupalPostForm('search/node', $edit, t('Search'));
  $this
    ->assertLinkByHref('page=1', 0, '2nd page link is found for exact phrase search.');
  $this
    ->assertNoLinkByHref('page=2', '3rd page link is not found for exact phrase search.');

  // Check that with post settings turned on the post information is displayed.
  $node_type_config = \Drupal::configFactory()
    ->getEditable('node.type.page');
  $node_type_config
    ->set('display_submitted', TRUE);
  $node_type_config
    ->save();
  $edit = array(
    'keys' => 'Druplicon',
  );
  $this
    ->drupalPostForm('search/node', $edit, t('Search'));
  $this
    ->assertText($user
    ->getUsername(), 'Basic page node displays author name when post settings are on.');
  $this
    ->assertText(format_date($node
    ->getChangedTime(), 'short'), 'Basic page node displays post date when post settings are on.');

  // Check that with post settings turned off the user and changed date
  // information is not displayed.
  $node_type_config
    ->set('display_submitted', FALSE);
  $node_type_config
    ->save();
  $edit = array(
    'keys' => 'Druplicon',
  );
  $this
    ->drupalPostForm('search/node', $edit, t('Search'));
  $this
    ->assertNoText($user
    ->getUsername(), 'Basic page node does not display author name when post settings are off.');
  $this
    ->assertNoText(format_date($node
    ->getChangedTime(), 'short'), 'Basic page node does not display post date when post settings are off.');
}