Source
$this->waitForLogLineToBePresent(self::COMPONENT_SERVER, 'End of escalation_execute()', true, 30, 3);
<?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 for alerting for services.
*
* @required-components server
* @configurationDataProvider serverConfigurationProvider
* @hosts test_service_roles
* @backup history,users,role_rule,role,triggers,alerts,actions
*/
class testServiceRoles extends CIntegrationTest {
const HOSTNAME = 'test_service_roles';
const TRAPPER_ITEM_NAME = 'test_service_trapper';
private static $hostid;
private static $parent_serviceid;
private static $actionid;
private static $child1_serviceid;
private static $child2_serviceid;
private static $child1_1_serviceid;
private static $itemid;
private static $triggerid;
private static $roleid;
private static $userid;
/**
* @inheritdoc
*/
public function prepareData() {
// Create host "test_service_roles"
$response = $this->call('host.create', [
[
'host' => self::HOSTNAME,
'interfaces' => [
'type' => 1,
'main' => 1,
'useip' => 1,
'ip' => '127.0.0.1',
'dns' => '',
'port' => $this->getConfigurationValue(self::COMPONENT_AGENT, 'ListenPort')
],
'groups' => [['groupid' => 4]],
'status' => HOST_STATUS_MONITORED
]
]);
$this->assertArrayHasKey('hostids', $response['result']);
$this->assertArrayHasKey(0, $response['result']['hostids']);