Definition of Drupal\search\Tests\SearchPreprocessLangcodeTest.
<?php
/**
* @file
* Definition of Drupal\search\Tests\SearchPreprocessLangcodeTest.
*/
namespace Drupal\search\Tests;
/**
* Test search_simplify() on every Unicode character, and some other cases.
*/
class SearchPreprocessLangcodeTest extends SearchTestBase {
/**
* Modules to enable.
*
* @var array
*/
public static $modules = array(
'search_langcode_test',
);
public static function getInfo() {
return array(
'name' => 'Search preprocess langcode',
'description' => 'Check that the hook_search_preprocess passes the correct langcode from the entity.',
'group' => 'Search',
);
}
function setUp() {
parent::setUp();
$web_user = $this
->drupalCreateUser(array(
'create page content',
'edit own page content',
'search content',
'use advanced search',
));
$this
->drupalLogin($web_user);
}
/**
* Tests that hook_search_preprocess() returns the correct langcode.
*/
function testPreprocessLangcode() {
// Create a node.
$node = $this
->drupalCreateNode(array(
'body' => array(
array(),
),
'langcode' => 'en',
));
// First update the index. This does the initial processing.
node_update_index();
// 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();
// Search for the title of the node with a POST query.
$edit = array(
'or' => $node
->label(),
);
$this
->drupalPost('search/node', $edit, t('Advanced search'));
// Checks if the langcode has been passed by hook_search_preprocess().
$this
->assertText('Langcode Preprocess Test: en');
}
/**
* Tests stemming for hook_search_preprocess().
*/
function testPreprocessStemming() {
// Create a node.
$node = $this
->drupalCreateNode(array(
'title' => 'we are testing',
'body' => array(
array(),
),
'langcode' => 'en',
));
// First update the index. This does the initial processing.
node_update_index();
// 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();
// Search for the title of the node with a POST query.
$edit = array(
'or' => 'testing',
);
$this
->drupalPost('search/node', $edit, t('Advanced search'));
// Check if the node has been found.
$this
->assertText('Search results');
$this
->assertText('we are testing');
// Search for the same node using a different query.
$edit = array(
'or' => 'test',
);
$this
->drupalPost('search/node', $edit, t('Advanced search'));
// Check if the node has been found.
$this
->assertText('Search results');
$this
->assertText('we are testing');
}
}
Name | Description |
---|---|
SearchPreprocessLangcodeTest | Test search_simplify() on every Unicode character, and some other cases. |