mirror of
https://github.com/phpbb/phpbb.git
synced 2025-10-05 12:13:23 +02:00
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of the phpBB Forum Software package.
|
|
*
|
|
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
* @license GNU General Public License, version 2 (GPL-2.0)
|
|
*
|
|
* For full copyright and license information, please see
|
|
* the docs/CREDITS.txt file.
|
|
*
|
|
*/
|
|
|
|
require_once __DIR__ . '/base.php';
|
|
|
|
/**
|
|
* @group functional
|
|
*/
|
|
class phpbb_functional_search_sphinx_test extends phpbb_functional_search_base
|
|
{
|
|
protected $search_backend = 'phpbb\search\backend\fulltext_sphinx';
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$sql_layer = substr(self::$config['dbms'], strlen('phpbb\\db\\driver\\'));
|
|
if ($sql_layer !== 'mysqli') // Sphinx search backend runs on MySQL/MariaDB only so far
|
|
{
|
|
$this->markTestSkipped($sql_layer . ': Sphinx search is not supported');
|
|
}
|
|
|
|
parent::setUp();
|
|
}
|
|
|
|
protected function create_search_index($backend = null)
|
|
{
|
|
parent::create_search_index($backend);
|
|
$this->purge_cache();
|
|
|
|
if (!$backend || $this->search_backend == $backend)
|
|
{
|
|
$output = $retval = null;
|
|
|
|
// After creating phpBB search index, build Sphinx index
|
|
exec('sudo -S service sphinxsearch stop', $output, $retval); // Attempt to stop sphinxsearch service in case it's running
|
|
exec('sudo -S indexer --all', $output, $retval); // Run sphinxsearch indexer
|
|
exec('sudo -S service sphinxsearch start', $output, $retval); // Attempt to start sphinxsearch service again
|
|
}
|
|
}
|
|
}
|