Source
$rootcause = '/Host: "' . self::HOSTNAME . '" Problem name: "' . self::TRIGGER_DESC .'" Severity: "' .
<?php
/*
** Zabbix
** 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 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 for alerting for services.
*
* @required-components server
* @configurationDataProvider serverConfigurationProvider
* @hosts test_services_alerting
* @backup history,items,triggers,alerts,services
*/
class testAlertingForServices extends CIntegrationTest {
const HOSTNAME = 'test_services_alerting';
const TRAPPER_KEY = 'test_trapper';
const SERVICENAME = 'Service 1';
const TRIGGER_DESC = 'Sample trigger';
private static $hostid;
private static $serviceid;
private static $actionid;
private static $triggerid;
private static $problem_tags;
private function createServiceWithProblemTags($name, $problem_tags) {
$response = $this->call('service.create', [
'name' => $name,
'algorithm' => ZBX_SERVICE_STATUS_CALC_MOST_CRITICAL_ALL,
'sortorder' => 1,
'problem_tags' => $problem_tags
]);
$this->assertArrayHasKey('serviceids', $response['result']);
$this->assertArrayHasKey(0, $response['result']['serviceids']);
return $response['result']['serviceids'][0];
}
/**
* @inheritdoc
*/
public function prepareData() {
// Create host "test_services_alerting"
$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']);
self::$hostid = $response['result']['hostids'][0];
// Create trapper item
$response = $this->call('item.create', [
[
'name' => self::TRAPPER_KEY,
'key_' => self::TRAPPER_KEY,
'type' => ITEM_TYPE_TRAPPER,
'hostid' => self::$hostid,
'value_type' => ITEM_VALUE_TYPE_UINT64
]
]);
$this->assertArrayHasKey('itemids', $response['result']);