Source
$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.