You are here

solr_index_and_search.test in Apache Solr Search 6.2

Tests for the apachsolr module: index and search.

File

tests/solr_index_and_search.test
View source
<?php

/**
 * @file
 *   Tests for the apachsolr module: index and search.
 */
class DrupalSolrMatchTestCase extends DrupalWebTestCase {
  public static function getInfo() {
    return array(
      'name' => 'Solr Index Queries',
      'description' => 'Indexes content and queries it.',
      'group' => 'ApacheSolr',
    );
  }

  /**
   * Implementation setUp().
   */
  function setUp() {

    //We run this pre-setup in case the user wants to use a different solr location for testing than the default
    $this->solr = apachesolr_get_solr(variable_get('apachesolr_host', 'localhost'), variable_get('apachesolr_port', 8983), variable_get('apachesolr_path', '/solr'));
    parent::setUp('apachesolr', 'apachesolr_search');
  }

  /**
   * Test search indexing.
   */
  function testMatching() {
    $this
      ->_setup();
    $this
      ->_testQueries();
  }

  /**
   * Set up a small index of items to test against.
   */
  function _setup() {
    $ping = $this->solr
      ->ping(10);
    $this
      ->assertNotEqual(FALSE, $ping, "The Server could be Pinged");
    $response = $this->solr
      ->search("*:*");
    $response = $response->response;
    $total = $response->numFound;
    $this
      ->assertEqual($total, 0, "There should not be any documents in the index");
    variable_set('minimum_word_size', 3);
    for ($i = 1; $i <= 7; ++$i) {
      $documents[] = $this
        ->_solr_build_document($i, array(
        'nid' => $i,
        'body' => $this
          ->getText($i),
      ));
    }
    $this
      ->_solr_index($documents);
  }
  function _solr_index($documents) {
    $batch = 0;
    $batches = count($documents) / 20;
    while ($batch < $batches) {
      $batch++;
      $docs = array_splice($documents, 0, 20);
      try {
        $this->solr
          ->addDocuments($docs);
        $this->solr
          ->commit();
      } catch (Exception $e) {
        drupal_set_message($e
          ->getMessage());
      }
    }
  }
  function _solr_build_document($nid, $values = array()) {
    $document = new Apache_Solr_Document();
    $document->id = apachesolr_document_id($nid);
    foreach ($values as $key => $value) {
      $document->{$key} = $value;
    }
    return $document;
  }

  /**
   * Helper method for generating snippets of content.
   *
   * Generated items to test against:
   *   1  ipsum
   *   2  dolore sit
   *   3  sit am ut
   *   4  am ut enim am
   *   5  ut enim am minim veniam
   *   6  enim am minim veniam es cillum
   *   7  am minim veniam es cillum dolore eu
   */
  function getText($n) {
    $words = explode(' ', "Ipsum dolore sit am. Ut enim am minim veniam. Es cillum dolore eu.");
    return implode(' ', array_slice($words, $n - 1, $n));
  }

  /**
   * Run predefine queries looking for indexed terms.
   */
  function _testQueries() {

    /*
      Note: OR queries that include short words in OR groups are only accepted
      if the ORed terms are ANDed with at least one long word in the rest of the query.

      e.g. enim dolore OR ut = enim (dolore OR ut) = (enim dolor) OR (enim ut) -> good
      e.g. dolore OR ut = (dolore) OR (ut) -> bad

      This is a design limitation to avoid full table scans.

      APACHESOLR NOTE: These are not all in lucene syntax... @TODO.  Still works for text searching
    */
    $queries = array(
      // Simple AND queries.
      'ipsum' => array(
        1,
      ),
      'enim' => array(
        4,
        5,
        6,
      ),
      'xxxxx' => array(),
      'enim minim' => array(
        5,
        6,
      ),
      'enim xxxxx' => array(),
      'dolore eu' => array(
        7,
      ),
      'dolore xx' => array(),
      'ut minim' => array(
        5,
      ),
      'xx minim' => array(),
      'enim veniam am minim ut' => array(
        5,
      ),
      // Simple OR queries.
      'dolore OR ipsum' => array(
        1,
        2,
        7,
      ),
      'dolore OR xxxxx' => array(
        2,
        7,
      ),
      'dolore OR ipsum OR enim' => array(
        1,
        2,
        4,
        5,
        6,
        7,
      ),
      'minim dolore OR ipsum OR enim' => array(
        5,
        6,
        7,
      ),
      'xxxxx dolore OR ipsum' => array(),
      // Negative queries.
      'dolore -sit' => array(
        7,
      ),
      'dolore -eu' => array(
        2,
      ),
      'dolore -xxxxx' => array(
        2,
        7,
      ),
      'dolore -xx' => array(
        2,
        7,
      ),
      // Phrase queries.
      '"dolore sit"' => array(
        2,
      ),
      '"sit dolore"' => array(),
      '"am minim veniam es"' => array(
        6,
        7,
      ),
      '"minim am veniam es"' => array(),
      // Mixed queries.
      '"am minim veniam es" OR dolore' => array(
        2,
        6,
        7,
      ),
      '"minim am veniam es" OR "dolore sit"' => array(
        2,
      ),
      '"minim am veniam es" OR "sit dolore"' => array(),
      '"am minim veniam es" -eu' => array(
        6,
      ),
      '"am minim veniam" -"cillum dolore"' => array(
        5,
        6,
      ),
      '"am minim veniam" -"dolore cillum"' => array(
        5,
        6,
        7,
      ),
      'xxxxx "minim am veniam es" OR dolore' => array(),
      'xx "minim am veniam es" OR dolore' => array(),
    );
    foreach ($queries as $query => $results) {
      $response = $this->solr
        ->search($query);
      $this
        ->_testQueryMatching($query, $response->response->docs, $results);

      //@TODO: We might get to this later

      #$this->_testQueryScores($query, $response->responses->docs, $results);
    }
  }

  /**
   * Test the matching abilities of the engine.
   *
   * Verify if a query produces the correct results.
   */
  function _testQueryMatching($query, $set, $results) {

    // Get result IDs.
    $found = array();
    foreach ($set as $item) {
      $found[] = $item->nid;
    }

    // Compare $results and $found.
    sort($found);
    sort($results);
    $this
      ->assertEqual($found, $results, "Query matching '{$query}'");
  }

  /**
   * Test the scoring abilities of the engine.
   *
   * Verify if a query produces normalized, monotonous scores.
   */
  function _testQueryScores($query, $set, $results) {

    // Get result scores.
    $scores = array();
    foreach ($set as $item) {
      $scores[] = $item->score;
    }

    // Check order.
    $sorted = $scores;
    sort($sorted);
    $this
      ->assertEqual($scores, array_reverse($sorted), "Query order '{$query}'");

    // Check range.
    $this
      ->assertEqual(!count($scores) || min($scores) > 0.0 && max($scores) <= 1.0001, TRUE, "Query scoring '{$query}'");
  }
  function tearDown() {
    try {
      $this->solr
        ->deleteByQuery('*:*');
      $this->solr
        ->optimize();
    } catch (Exception $e) {

      //I know this is wrong, but I don't feel like learning how to throw my own failure right now
      $this
        ->assertTrue(1, 0, $e
        ->getMessage());
    }
    parent::tearDown();
  }

}

Classes

Namesort descending Description
DrupalSolrMatchTestCase @file Tests for the apachsolr module: index and search.