Source
xxxxxxxxxx
$this->assertSame(['Host group', 'Without problems', 'With problems', 'Total'], $table->getHeadersText());
<?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/CWebTest.php';
/**
* @backup dashboard
* @backup profiles
*/
class testPageDashboardWidgets extends CWebTest {
/**
* Default selected widget type.
* The widget type should not be changed in frontend and in DB.
*/
public function testPageDashboardWidgets_checkUnchangedWidgetType() {
// Opening widget configuration form for new widget first time.
$this->page->login()->open('zabbix.php?action=dashboard.view&dashboardid=1');
$dashboard = CDashboardElement::find()->one()->edit();
// Check that widget type isn't changed in frontend and in DB.
$this->checkLastSelectedWidgetType();
// Opening edit widget form.
$form = $dashboard->getWidget('System information')->edit();
$this->assertEquals('System information', $form->getField('Type')->getValue());
$form->submit();
// Check that widget type isn't changed in frontend and in DB.
$this->checkLastSelectedWidgetType();
// Making changes in widget form that are not "Widget type".
$form = $dashboard->getWidget('Problems')->edit();
$this->assertEquals('Problems', $form->getField('Type')->getValue());
$data =[
'Name' => 'check widget type',
'Refresh interval' => 'No refresh',
'Show' => 'Recent problems',
'Show tags' => 'None'
];
$form->fill($data);
$form->submit();
$this->checkLastSelectedWidgetType();
// Add widget with current default type "Action log".
$form = $dashboard->addWidget()->asForm();
$form->submit();
// Check if widget was added.
$dashboard->getWidget('Action log');
$this->checkLastSelectedWidgetType();
$dashboard->cancelEditing();
}
/**
* Check last selected widget type in frontend and in DB.
* By default is 'Action log' type and without record in DB.
*
* @param string $type widget type name
* @param string $db_type widget type name stored in DB
*/
private function checkLastSelectedWidgetType($type = 'Action log', $db_type = null) {
$dashboard = CDashboardElement::find()->one();
COverlayDialogElement::ensureNotPresent();
$overlay = $dashboard->addWidget();
$form = $overlay->asForm();
$this->assertEquals($type, $form->getField('Type')->getValue());
if ($db_type) {
$this->assertEquals($db_type, CDBHelper::getValue("SELECT value_str FROM profiles".
" WHERE userid=1 AND idx='web.dashbrd.last_widget_type'"));
}
else {
$this->assertEquals(0, CDBHelper::getCount("SELECT * FROM profiles".
" WHERE userid=1 AND idx='web.dashbrd.last_widget_type'"));
}