Source
<?php
/*
** Zabbix
** Copyright (C) 2001-2023 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/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, config, 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() {