Source
xxxxxxxxxx
$this->assertTrue($table->query('xpath:.//a[text()='.CXPathHelper::escapeQuotes($headers[0]).']')->one()->isClickable());
<?php
/*
** 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 Affero General Public License as published by the Free Software Foundation, version 3.
**
** 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 Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
require_once dirname(__FILE__) . '/../../include/CWebTest.php';
require_once dirname(__FILE__).'/../../include/helpers/CDataHelper.php';
require_once dirname(__FILE__).'/../behaviors/CTableBehavior.php';
/**
* @backup dashboard
*
* @onBefore prepareTemplateDashboardsData
*/
class testDashboardsTemplatedDashboardPage extends CWebTest {
/**
* Attach TableBehavior to the test.
*
* @return array
*/
public function getBehaviors() {
return [CTableBehavior::class];
}
const TEMPLATEID = 99022; // ID of the template for with a list of dashboards.
const DASHBOARDS = ['1st dashboard', '2nd dashboard', 'middle dashboard', 'z last dashboard'];
const DASHBOARDS_2_DELETE = ['1st dashboard', 'middle dashboard'];
public static function prepareTemplateDashboardsData() {
foreach (self::DASHBOARDS as $dashboard) {
CDataHelper::call('templatedashboard.create', [
[
'templateid' => self::TEMPLATEID,
'name' => $dashboard,
'pages' => [
[
'widgets' => [
[
'type' => 'clock',
'name' => '1st Dashboard clock'
]
]
]
]
]
]);
}
}
public function testDashboardsTemplatedDashboardPage_Layout() {
$this->page->login()->open('zabbix.php?action=template.dashboard.list&templateid='.self::TEMPLATEID);
$this->page->assertHeader('Dashboards');
$this->page->assertTitle('Configuration of dashboards');
// Check status of buttons on the template dashboards page.
foreach (['Create dashboard' => true, 'Delete' => false] as $button => $enabled) {
$this->assertTrue($this->query('button', $button)->one()->isEnabled($enabled));
}
// Check the count of returned dashboards and the count of selected dashboards.
$dashboards_count = count(self::DASHBOARDS);
$this->assertTableStats($dashboards_count);
$all_dashboards = $this->query('id:all_dashboards')->asCheckbox()->one();
foreach ([false, true, false] as $checkbox_state) {
$expected_count = ($checkbox_state) ? $dashboards_count : 0;
if ($all_dashboards->isChecked() !== $checkbox_state) {
$all_dashboards->set($checkbox_state);
}
$this->assertEquals($expected_count.' selected', $this->query('id:selected_count')->one()->getText());
}
// Check tokens table headers.
$table = $this->query('class:list-table')->asTable()->one();
$headers = $table->getHeadersText();
// Check content of table headers.
array_shift($headers);