Source
$this->assertMessage(TEST_BAD, null, 'Cannot save widget "'.self::$default_widget.'". Invalid parameter "URL": unacceptable URL.');
<?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';
/**
* The ignore browser errors annotation is required due to the errors coming from the URL opened in the URL widget.
* @ignoreBrowserErrors
*
* @backup dashboard
*
* @dataSource DynamicItemWidgets
*
* @onBefore prepareData
*/
class testDashboardURLWidget extends CWebTest {
/**
* Attach MessageBehavior to the test.
*
* @return array
*/
public function getBehaviors() {
return [
'class' => CMessageBehavior::class
];
}
private static $dashboardid;
private static $dashboard_create;
private static $default_widget = 'Default URL Widget';
private static $update_widget = 'Update URL Widget';
private static $delete_widget = 'Widget for delete';
private static $frame_widget = 'Widget for iframe and xframe testing';
/**
* SQL query to get widget and widget_field tables to compare hash values, but without widget_fieldid
* because it can change.
*/
private $sql = 'SELECT wf.widgetid, wf.type, wf.name, wf.value_int, wf.value_str, wf.value_groupid, wf.value_hostid,'.
' wf.value_itemid, wf.value_graphid, wf.value_sysmapid, w.widgetid, w.dashboard_pageid, w.type, w.name, w.x, w.y,'.
' w.width, w.height'.
' FROM widget_field wf'.
' INNER JOIN widget w'.
' ON w.widgetid=wf.widgetid ORDER BY wf.widgetid, wf.name, wf.value_int, wf.value_str, wf.value_groupid,'.
' wf.value_itemid, wf.value_graphid';
public static function prepareData() {
$response = CDataHelper::call('dashboard.create', [
[
'name' => 'Dashboard for URL Widget test',
'pages' => [
[
'name' => 'Page with default widgets',
'widgets' => [
[
'type' => 'url',
'name' => self::$default_widget,
'x' => 0,
'y' => 0,
'width' => 36,
'height' => 5,
'fields' => [
[
'type' => ZBX_WIDGET_FIELD_TYPE_STR,
'name' => 'url',
'value' => 'http://zabbix.com'
],
[
'type' => ZBX_WIDGET_FIELD_TYPE_STR,
'name' => 'override_hostid._reference',
'value' => 'DASHBOARD._hostid'
]
]
],
[
'type' => 'url',
'name' => self::$frame_widget,