SearchNumberMatchingTest.php

Definition of Drupal\search\Tests\SearchNumberMatchingTest.

Namespace

Drupal\search\Tests

File

drupal/core/modules/search/lib/Drupal/search/Tests/SearchNumberMatchingTest.php
View source
<?php

/**
 * @file
 * Definition of Drupal\search\Tests\SearchNumberMatchingTest.
 */
namespace Drupal\search\Tests;


/**
 * Tests that numbers can be searched, with more complex matching.
 */
class SearchNumberMatchingTest extends SearchTestBase {
  protected $test_user;
  protected $numbers;
  protected $nodes;
  public static function getInfo() {
    return array(
      'name' => 'Search number matching',
      'description' => 'Check that numbers can be searched with more complex matching',
      'group' => 'Search',
    );
  }
  function setUp() {
    parent::setUp();
    $this->test_user = $this
      ->drupalCreateUser(array(
      'search content',
      'access content',
      'administer nodes',
      'access site reports',
    ));
    $this
      ->drupalLogin($this->test_user);

    // Define a group of numbers that should all match each other --
    // numbers with internal punctuation should match each other, as well
    // as numbers with and without leading zeros and leading/trailing
    // . and -.
    $this->numbers = array(
      '123456789',
      '12/34/56789',
      '12.3456789',
      '12-34-56789',
      '123,456,789',
      '-123456789',
      '0123456789',
    );
    foreach ($this->numbers as $num) {
      $info = array(
        'body' => array(
          LANGUAGE_NOT_SPECIFIED => array(
            array(
              'value' => $num,
            ),
          ),
        ),
        'type' => 'page',
        'language' => LANGUAGE_NOT_SPECIFIED,
      );
      $this->nodes[] = $this
        ->drupalCreateNode($info);
    }

    // Run cron to ensure the content is indexed.
    $this
      ->cronRun();
    $this
      ->drupalGet('admin/reports/dblog');
    $this
      ->assertText(t('Cron run completed'), 'Log shows cron run completed');
  }

  /**
   * Tests that all the numbers can be searched.
   */
  function testNumberSearching() {
    for ($i = 0; $i < count($this->numbers); $i++) {
      $node = $this->nodes[$i];

      // Verify that the node title does not appear on the search page
      // with a dummy search.
      $this
        ->drupalPost('search/node', array(
        'keys' => 'foo',
      ), t('Search'));
      $this
        ->assertNoText($node
        ->label(), format_string('%number: node title not shown in dummy search', array(
        '%number' => $i,
      )));

      // Now verify that we can find node i by searching for any of the
      // numbers.
      for ($j = 0; $j < count($this->numbers); $j++) {
        $number = $this->numbers[$j];

        // If the number is negative, remove the - sign, because - indicates
        // "not keyword" when searching.
        $number = ltrim($number, '-');
        $this
          ->drupalPost('search/node', array(
          'keys' => $number,
        ), t('Search'));
        $this
          ->assertText($node
          ->label(), format_string('%i: node title shown (search found the node) in search for number %number', array(
          '%i' => $i,
          '%number' => $number,
        )));
      }
    }
  }

}

Classes

Namesort descending Description
SearchNumberMatchingTest Tests that numbers can be searched, with more complex matching.