Source
xxxxxxxxxx
$data['fields']['Default time zone'] = CDateTimeHelper::getTimeZoneFormat($data['fields']['Default time zone']);
<?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__).'/../behaviors/CMessageBehavior.php';
/**
* Base class for Administration General configuration function tests.
*/
class testFormAdministrationGeneral extends CWebTest {
/**
* Attach MessageBehavior to the test.
*
* @return array
*/
public function getBehaviors() {
return [
CMessageBehavior::class
];
}
public $config_link;
public $form_selector;
public $default_values;
public $db_default_values;
public $custom_values;
/**
* Test for checking form update without changing any data.
*
* @param boolean $trigger_disp If it is Trigger displaying options form
*/
public function executeSimpleUpdate($trigger_disp = false) {
$config = CDBHelper::getRow('SELECT * FROM config ORDER BY configid');
$this->page->login()->open($this->config_link);
$form = $this->query($this->form_selector)->waitUntilVisible()->asForm()->one();
$values = $form->getFields()->asValues();
$form->submit();
$this->page->waitUntilReady();
$this->assertMessage(TEST_GOOD, 'Configuration updated');
$this->page->refresh();
$this->page->waitUntilReady();
$form->invalidate();
// Check that DBdata is not changed.
$this->assertEquals($config, CDBHelper::getRow('SELECT * FROM config ORDER BY configid'));
// Check that Frontend form is not changed.
$this->assertEquals($values, $form->getFields()->asValues());
// Check that Frontend colors are not changed.
if ($trigger_disp) {
$form->checkValue($this->default_values);
}
}
/**
* Test for checking 'Reset defaults' button.
*
* @param boolean $other If it is Other configuration parameters form
*/
public function executeResetButtonTest($other = false) {
$this->page->login()->open($this->config_link);
$form = $this->query($this->form_selector)->waitUntilVisible()->asForm()->one();
// Reset form in case of some previous scenario.
$this->resetConfiguration($form, $this->default_values, 'Reset defaults', $other);
$default_config = CDBHelper::getRow('SELECT * FROM config');
// Reset form after customly filled data and check that values are reset to default or reset is cancelled.
foreach (['Cancel', 'Reset defaults'] as $action) {
// Fill form with custom data.
$form->fill($this->custom_values);
$form->submit();
$this->assertMessage(TEST_GOOD, 'Configuration updated');
$custom_config = CDBHelper::getRow('SELECT * FROM config');
// Check custom data in form.
$this->page->refresh()->waitUntilReady();
$form->invalidate();
$form->checkValue($this->custom_values);