Source
<?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';
require_once dirname(__FILE__).'/../behaviors/CTableBehavior.php';
class testTriggerDependencies extends CWebTest {
/**
* SQL to check trigger dependencies hash.
*/
const SQL = 'SELECT * FROM trigger_depends ORDER by triggerdepid';
/**
* Attach Behaviors to the test.
*
* @return array
*/
public function getBehaviors() {
return [
CMessageBehavior::class,
CTableBehavior::class
];
}
/**
* Create or update trigger with dependencies.
*
* @param array $data data provider.
* @param string $success_title success message title.
* @param string $expression trigger expression used in create scenarios.
* @param string $error_title error message title.
* @param string $name_check trigger name that should be checked in update scenarios.
*/
public function triggerCreateUpdate($data, $success_title, $expression = null, $error_title = null, $name_check = null) {
// If scenarios is TEST_BAD, hash should be checked.
if (CTestArrayHelper::get($data, 'expected', TEST_GOOD) === TEST_BAD) {
$old_hash = CDBHelper::getHash(self::SQL);
}
$form = COverlayDialogElement::find()->asForm()->one()->waitUntilReady();
if ($expression) {
$form->fill(['Name' => $data['name'], 'Expression' => $expression]);
}
// Add trigger/host trigger dependency.
$form->selectTab('Dependencies');