You are here

UtilitiesTest.php in Search API Solr 4.x

File

tests/src/Kernel/UtilitiesTest.php
View source
<?php

namespace Drupal\Tests\search_api_solr\Kernel;

use Drupal\KernelTests\KernelTestBase;
use Drupal\search_api_solr\Utility\Utility;

/**
 * Provides tests for various utility functions.
 *
 * @group search_api_solr
 */
class UtilitiesTest extends KernelTestBase {

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'search_api',
    'search_api_solr',
    'user',
  ];

  /**
   * Tests encoding and decoding of Solr field names.
   */
  public function testFieldNameEncoder() {
    $allowed_characters_pattern = '/[a-zA-Z\\d_]/';
    $forbidden_field_name = 'forbidden$field_nameÜöÄ*:/;#last_XMas';
    $expected_encoded_field_name = 'forbidden_X24_field_name_Xc39c__Xc3b6__Xc384__X2a__X3a__X2f__X3b__X23_last_X5f58_Mas';
    $encoded_field_name = Utility::encodeSolrName($forbidden_field_name);
    $this
      ->assertEquals($encoded_field_name, $expected_encoded_field_name);
    preg_match_all($allowed_characters_pattern, $encoded_field_name, $matches);
    $this
      ->assertEquals(count($matches[0]), strlen($encoded_field_name), 'Solr field name consists of allowed characters.');
    $decoded_field_name = Utility::decodeSolrName($encoded_field_name);
    $this
      ->assertEquals($decoded_field_name, $forbidden_field_name);
    $this
      ->assertEquals('ss_field_foo', Utility::encodeSolrName('ss_field_foo'));
  }

  /**
   * Tests language-specific Solr field names.
   */
  public function testLanguageSpecificFieldTypeNames() {
    $this
      ->assertEquals('text_de', Utility::encodeSolrName('text_de'));

    // Drupal-like locale for Austria.
    $encoded = Utility::encodeSolrName('text_de-at');
    $this
      ->assertEquals('text_de_X2d_at', $encoded);
    $this
      ->assertEquals('text_de-at', Utility::decodeSolrName($encoded));

    // Traditional Chinese as used in Hong Kong.
    $encoded = Utility::encodeSolrName('text_zh-Hant-HK');
    $this
      ->assertEquals('text_zh_X2d_Hant_X2d_HK', $encoded);
    $this
      ->assertEquals('text_zh-Hant-HK', Utility::decodeSolrName($encoded));

    // The variant of German orthography dating from the 1901 reforms, as seen
    // in Switzerland.
    $encoded = Utility::encodeSolrName('text_de-CH-1901');
    $this
      ->assertEquals('text_de_X2d_CH_X2d_1901', $encoded);
    $this
      ->assertEquals('text_de-CH-1901', Utility::decodeSolrName($encoded));
  }

  /**
   *
   */
  public function testMergeDefaultIndexThirdPartySettings() {
    $third_party_settings = [
      'finalize' => TRUE,
      'commit_before_finalize' => FALSE,
      'highlighter' => [
        'maxAnalyzedChars' => 51200,
        'fragmenter' => 'gap',
        'usePhraseHighlighter' => TRUE,
        'highlightMultiTerm' => TRUE,
        'preserveMulti' => FALSE,
        'regex' => [
          'slop' => 0.9,
          'maxAnalyzedChars' => 2,
        ],
      ],
      'advanced' => [
        'index_prefix' => 'dummy',
      ],
      'multilingual' => [
        'limit_to_content_language' => TRUE,
        'include_language_independent' => TRUE,
      ],
    ];
    $this
      ->assertEquals([
      'finalize' => TRUE,
      'commit_before_finalize' => FALSE,
      'commit_after_finalize' => FALSE,
      'highlighter' => [
        'maxAnalyzedChars' => 51200,
        'fragmenter' => 'gap',
        'usePhraseHighlighter' => TRUE,
        'highlightMultiTerm' => TRUE,
        'preserveMulti' => FALSE,
        'regex' => [
          'slop' => 0.9,
          'pattern' => 'blank',
          'maxAnalyzedChars' => 2,
        ],
        'highlight' => [
          'mergeContiguous' => FALSE,
          'requireFieldMatch' => FALSE,
          'snippets' => 3,
          'fragsize' => 0,
        ],
      ],
      'mlt' => [
        'mintf' => 1,
        'mindf' => 1,
        'maxdf' => 0,
        'maxdfpct' => 0,
        'minwl' => 0,
        'maxwl' => 0,
        'maxqt' => 100,
        'maxntp' => 2000,
        'boost' => FALSE,
        'interestingTerms' => 'none',
      ],
      'advanced' => [
        'index_prefix' => 'dummy',
        'collection' => '',
        'timezone' => '',
      ],
      'multilingual' => [
        'limit_to_content_language' => TRUE,
        'include_language_independent' => TRUE,
      ],
      'term_modifiers' => [
        'slop' => 3,
        'fuzzy' => 1,
      ],
    ], search_api_solr_merge_default_index_third_party_settings($third_party_settings));
  }

  /**
   * Tests extracting of highlighted keys.
   */
  public function testHighlightedKeys() {
    $snippet = '';
    $highlighted_keys = Utility::getHighlightedKeys($snippet);
    $this
      ->assertEquals([], $highlighted_keys);
  }

}

Classes

Namesort descending Description
UtilitiesTest Provides tests for various utility functions.