Source
// TODO someday should check that interval is not shown for trapper items, trends not shown for non-numeric items etc
<?php
/*
** Zabbix
** Copyright (C) 2001-2025 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 testPageItems extends CLegacyWebTest {
public static function data() {
return CDBHelper::getDataProvider(
'SELECT hostid,status'.
' FROM hosts'.
' WHERE host LIKE \'%-layout-test%\''
);
}
/**
* @dataProvider data
*/
public function testPageItems_CheckLayout($data) {
$this->zbxTestLogin('items.php?filter_set=1&filter_hostids%5B0%5D='.$data['hostid'].'&context=host');
$this->zbxTestCheckTitle('Configuration of items');
$this->zbxTestCheckHeader('Items');
$this->zbxTestTextPresent('Displaying');
if ($data['status'] == HOST_STATUS_MONITORED || $data['status'] == HOST_STATUS_NOT_MONITORED) {
$this->zbxTestTextPresent('All hosts');
$this->zbxTestTextPresent(
[
'Name',
'Triggers',
'Key',
'Interval',
'History',
'Trends',
'Type',
'Status',
'Info'
]
);
}
elseif ($data['status'] == HOST_STATUS_TEMPLATE) {
$this->zbxTestTextPresent('All templates');
$this->zbxTestTextPresent(
[
'Name',
'Triggers',