You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.8 KiB
69 lines
2.8 KiB
<?php
|
|
/*
|
|
** Zabbix
|
|
** Copyright (C) 2001-2023 Zabbix SIA
|
|
**
|
|
** This program is free software; you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation; either version 2 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program; if not, write to the Free Software
|
|
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
**/
|
|
|
|
require_once dirname(__FILE__).'/../include/CLegacyWebTest.php';
|
|
|
|
class testPageSearch extends CLegacyWebTest {
|
|
public function testPageSearch_FindZabbixServer() {
|
|
$this->zbxTestLogin('zabbix.php?action=dashboard.view');
|
|
$this->zbxTestInputTypeWait('search', 'ЗАББИКС Сервер');
|
|
$this->query('class:form-search')->asForm()->one()->submit();
|
|
$this->zbxTestCheckTitle('Search');
|
|
$this->zbxTestCheckHeader('Search: ЗАББИКС Сервер');
|
|
$this->zbxTestTextPresent(['Hosts', 'Host groups', 'Templates']);
|
|
$this->zbxTestTextPresent('Displaying 1 of 1 found');
|
|
$this->zbxTestTextPresent('No data found.');
|
|
$this->zbxTestTextPresent('ЗАББИКС Сервер');
|
|
$this->zbxTestTextNotPresent('Zabbix server');
|
|
$this->zbxTestTextPresent('127.0.0.1');
|
|
$this->zbxTestTextPresent(['Latest data', 'Triggers', 'Items', 'Triggers', 'Graphs', 'Problems']);
|
|
}
|
|
|
|
public function testPageSearch_FindNotExistingHost() {
|
|
$this->zbxTestLogin('zabbix.php?action=dashboard.view');
|
|
$this->zbxTestInputTypeWait('search', 'Not existing host');
|
|
$this->query('class:form-search')->asForm()->one()->submit();
|
|
$this->zbxTestCheckTitle('Search');
|
|
$this->zbxTestCheckHeader('Search: Not existing host');
|
|
$this->zbxTestTextPresent('Displaying 0 of 0 found');
|
|
$this->zbxTestTextPresent('No data found.');
|
|
$this->zbxTestTextNotPresent('Zabbix server');
|
|
}
|
|
|
|
/**
|
|
* Test if the global search form is not being submitted with empty search string.
|
|
*/
|
|
public function testPageSearch_FindEmptyString() {
|
|
$this->zbxTestLogin('zabbix.php?action=dashboard.view');
|
|
|
|
// Do not search if the search field is empty.
|
|
$this->zbxTestInputTypeWait('search', '');
|
|
$this->query('class:form-search')->asForm()->one()->submit();
|
|
$this->zbxTestCheckTitle('Dashboard');
|
|
$this->zbxTestCheckHeader('Global view');
|
|
|
|
// Do not search if search string consists only of whitespace characters.
|
|
$this->zbxTestInputTypeWait('search', ' ');
|
|
$this->query('class:form-search')->asForm()->one()->submit();
|
|
$this->zbxTestCheckTitle('Dashboard');
|
|
$this->zbxTestCheckHeader('Global view');
|
|
}
|
|
}
|