Source
<?php
/*
** Zabbix
** Copyright (C) 2001-2022 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';
require_once dirname(__FILE__).'/traits/FilterTrait.php';
require_once dirname(__FILE__).'/traits/TableTrait.php';
use Facebook\WebDriver\WebDriverBy;
class testPageTriggers extends CLegacyWebTest {
public $hostid = 99050;
use FilterTrait;
use TableTrait;
public static function data() {
return CDBHelper::getDataProvider(
'SELECT hostid,status'.
' FROM hosts'.
' WHERE host LIKE \'%-layout-test%\''
);
}
/**
* @dataProvider data
*/
public function testPageTriggers_CheckLayout($data) {
$this->zbxTestLogin('triggers.php?filter_set=1&filter_hostids[0]='.$data['hostid']);
$this->zbxTestCheckTitle('Configuration of triggers');
$this->zbxTestCheckHeader('Triggers');
$this->zbxTestTextPresent('Displaying');
// Get table headers.
$result = [];
$elements = $this->webDriver->findElements(WebDriverBy::xpath("//thead/tr/th"));
foreach ($elements as $element) {
$result[] = $element->getText();
}
if ($data['status'] == HOST_STATUS_MONITORED || $data['status'] == HOST_STATUS_NOT_MONITORED) {
$this->zbxTestTextPresent('All hosts');
// Check table headers.
$this->assertEquals(['', 'Severity', 'Value', 'Name', 'Operational data', 'Expression', 'Status', 'Info', 'Tags'], $result);
// Check the filter options text.