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/CIntegrationTest.php';
/**
* Test suite to check if trigger state is updated properly
* when item state toggles between normal and unsupported
*
* @backup hosts, host_rtdata, proxy, proxy_rtdata, auditlog, changelog, settings, ha_node, expressions, globalmacro
* @backup interface, item_rtdata, items, regexps, task, task_data
* @hosts test
*/
class testActiveAvailability extends CIntegrationTest {
private static $hostid;
private static $interfaceid;
const HOST_NAME = 'test';
const ACT_FILE_NAME = '/tmp';
/**
* Component configuration provider for server.
*
* @return array
*/
public function serverConfigurationProvider() {
return [
self::COMPONENT_SERVER => [
'DebugLevel' => 4,
'LogFileSize' => 0
],
self::COMPONENT_AGENT => [
'Hostname' => self::HOST_NAME,
'ServerActive' => '127.0.0.1:'.self::getConfigurationValue(self::COMPONENT_SERVER, 'ListenPort'),
'HeartbeatFrequency' => 5
]
];
}
/**
* Component configuration provider for proxy.
*
* @return array
*/
public function activeProxyConfigurationProvider() {
return [
self::COMPONENT_SERVER => [
'DebugLevel' => 4,
'LogFileSize' => 20
],