You are here

protected function SearchApiSolrTest::checkBackendSpecificFeatures in Search API Solr 4.x

Same name and namespace in other branches
  1. 8.3 tests/src/Kernel/SearchApiSolrTest.php \Drupal\Tests\search_api_solr\Kernel\SearchApiSolrTest::checkBackendSpecificFeatures()
  2. 8 tests/src/Kernel/SearchApiSolrTest.php \Drupal\Tests\search_api_solr\Kernel\SearchApiSolrTest::checkBackendSpecificFeatures()

Checks backend specific features.

File

tests/src/Kernel/SearchApiSolrTest.php, line 257

Class

SearchApiSolrTest
Tests index and search capabilities using the Solr search backend.

Namespace

Drupal\Tests\search_api_solr\Kernel

Code

protected function checkBackendSpecificFeatures() {
  $this
    ->checkSchemaLanguages();
  $this
    ->checkBasicAuth();
  $this
    ->checkQueryParsers();
  $this
    ->checkQueryConditions();
  $this
    ->checkHighlight();
  $this
    ->checkSearchResultGrouping();
  $this
    ->clearIndex();
  $this
    ->checkDatasourceAdditionAndDeletion();
  $this
    ->clearIndex();
  $this
    ->checkRetrieveData();
  $this
    ->clearIndex();
  $this
    ->checkIndexFallback();
  $this
    ->clearIndex();
  $this
    ->checkSearchResultSorts();
}