public function SolrBackendTestBase::setUp in Search API Solr 8.3
Same name and namespace in other branches
- 8.2 tests/src/Kernel/SolrBackendTestBase.php \Drupal\Tests\search_api_solr\Kernel\SolrBackendTestBase::setUp()
- 4.x tests/src/Kernel/SolrBackendTestBase.php \Drupal\Tests\search_api_solr\Kernel\SolrBackendTestBase::setUp()
Overrides BackendTestBase::setUp
File
- tests/
src/ Kernel/ SolrBackendTestBase.php, line 66
Class
- SolrBackendTestBase
- Tests location searches and distance facets using the Solr search backend.
Namespace
Drupal\Tests\search_api_solr\KernelCode
public function setUp() {
if ('true' === SOLR_CLOUD) {
$this->serverId .= '_cloud';
$this->indexId .= '_cloud';
}
parent::setUp();
$this
->installConfigs();
$this
->commonSolrBackendSetUp();
$this->logger = new InMemoryLogger();
\Drupal::service('logger.factory')
->addLogger($this->logger);
$this->travisLogger = new Logger('search_api_solr');
$this->travisLogger
->pushHandler(new StreamHandler(TRAVIS_BUILD_DIR . '/solr_query.log', Logger::DEBUG));
\Drupal::service('search_api_solr_devel.solarium_request_logger')
->setLogger($this->travisLogger);
}