public function AutocompleteTest::setUp in Search API 8
Overrides KernelTestBase::setUp
File
- modules/
search_api_db/ tests/ src/ Kernel/ AutocompleteTest.php, line 57
Class
- AutocompleteTest
- Tests autocomplete functionality of the Database backend.
Namespace
Drupal\Tests\search_api_db\KernelCode
public function setUp() {
parent::setUp();
$this
->installSchema('search_api', [
'search_api_item',
]);
$this
->installSchema('user', [
'users_data',
]);
$this
->installEntitySchema('entity_test_mulrev_changed');
$this
->installEntitySchema('search_api_task');
$this
->installConfig('search_api');
// Do not use a batch for tracking the initial items after creating an
// index when running the tests via the GUI. Otherwise, it seems Drupal's
// Batch API gets confused and the test fails.
if (!Utility::isRunningInCli()) {
\Drupal::state()
->set('search_api_use_tracking_batch', FALSE);
}
$this
->installConfig([
'search_api_db',
'search_api_test_example_content',
'search_api_test_db',
'search_api_db_test_autocomplete',
]);
$this
->setUpExampleStructure();
$this
->insertExampleContent();
$this
->indexItems($this->indexId);
}