1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-20 07:30:16 +01:00

[ticket/16902] Add search index created assertion to test

PHPBB3-16902
This commit is contained in:
rxu 2021-11-26 12:42:50 +07:00
parent b602b57b02
commit 6846eeaa48
No known key found for this signature in database
GPG Key ID: 955F0567380E586A

@ -141,18 +141,24 @@ abstract class phpbb_functional_search_base extends phpbb_functional_test_case
protected function create_search_index($backend = null)
{
$this->add_lang('acp/search');
$search_type = $backend ?? $this->search_backend;
$crawler = self::request('GET', 'adm/index.php?i=acp_search&mode=index&sid=' . $this->sid);
$form = $crawler->selectButton($this->lang('CREATE_INDEX'))->form();
$form_values = $form->getValues();
$form_values = array_merge($form_values,
[
'search_type' => ( ($backend === null) ? $this->search_backend : $backend ),
'search_type' => $search_type,
'action' => 'create',
]
);
$form->setValues($form_values);
$crawler = self::submit($form);
$this->assertContainsLang('SEARCH_INDEX_CREATED', $crawler->text());
// Ensure search index has been actually created
$crawler = self::request('GET', 'adm/index.php?i=acp_search&mode=index&sid=' . $this->sid);
$posts_indexed = (int) $crawler->filter('#acp_search_index_' . $search_type . ' td')->eq(1)->text();
$this->assertTrue($posts_indexed > 0);
}
protected function delete_search_index()