Skip to content
Snippets Groups Projects
Commit fb1b1770 authored by Patryk Miedziaszczyk's avatar Patryk Miedziaszczyk Committed by Oliver Bartsch
Browse files

[TASK] Acceptance tests for the Indexed Search

Basic test for Indexed Search backend module checking
main modes are loading properly.

Releases: master
Resolves: #94467
Change-Id: I6a0276ba0b881e57ee256793e584f60312406b5b
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/69763


Tested-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: default avatarTymoteusz Motylewski <t.motylewski@gmail.com>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Reviewed-by: default avatarTymoteusz Motylewski <t.motylewski@gmail.com>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
parent a34d067a
Branches
Tags
No related merge requests found
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Core\Tests\Acceptance\Backend\IndexedSearch;
use TYPO3\CMS\Core\Tests\Acceptance\Support\BackendTester;
/**
* Tests for the Indexed Search module
*/
class IndexedSearchModuleCest
{
/**
* @param BackendTester $I
*/
public function _before(BackendTester $I)
{
$I->useExistingSession('admin');
}
/**
* @param BackendTester $I
*/
public function checkExpectedTextOnIndexedSearchPages(BackendTester $I)
{
$I->click('#web_IndexedSearchIsearch');
$I->switchToContentFrame();
$I->seeElement('.t3-js-jumpMenuBox');
$I->selectOption('.t3-js-jumpMenuBox', 'General statistics');
$I->see('Indexing Engine Statistics', '.t3js-module-body');
$I->see('General statistics', '.t3js-module-body');
$I->see('Row count by database table', '.t3js-module-body');
$rowCount = $I->grabMultiple('table > tbody >tr > td:nth-child(2)');
foreach ($rowCount as $count) {
$I->assertEquals('0', $count);
}
$I->selectOption('.t3-js-jumpMenuBox', 'List: Pages');
$I->see('Indexing Engine Statistics', '.t3js-module-body');
$I->see('Pages', '.t3js-module-body');
$I->selectOption('.t3-js-jumpMenuBox', 'List: External documents');
$I->see('Indexing Engine Statistics', '.t3js-module-body');
$I->see('External documents', '.t3js-module-body');
$I->selectOption('.t3-js-jumpMenuBox', 'Detailed statistics');
$I->see('Indexing Engine Statistics', '.t3js-module-body');
$I->see('Please select a page from the page tree.', '.t3js-module-body');
}
}
......@@ -55,7 +55,8 @@ class BackendCoreEnvironment extends BackendEnvironment
'lowlevel',
'dashboard',
'workspaces',
'info'
'info',
'indexed_search'
],
'testExtensionsToLoad' => [
'typo3conf/ext/styleguide'
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment