<?php
require_once dirname(__FILE__).'/../include/CIntegrationTest.php';
class testComplexServiceStatus extends CIntegrationTest {
const HOSTNAME = 'test_complex_services';
const ITEM_KEY = 'test_trapper';
const SERVICENAME = 'Service 1';
private static $hostid;
private static $parent_serviceid;
private static $itemid;
private static $triggerid;
public function prepareData() {
$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];
$response = $this->call('item.create', [
'name' => self::ITEM_KEY,
'key_' => self::ITEM_KEY,
'type' => ITEM_TYPE_CALCULATED,
'params' => '1',
'hostid' => self::$hostid,
'delay' => '1s',
'value_type' => ITEM_VALUE_TYPE_UINT64
]);
$this->assertArrayHasKey('itemids', $response['result']);
$this->assertEquals(1, count($response['result']['itemids']));
self::$itemid = $response['result']['itemids'][0];
$response = $this->call('service.create', [
'name' => 'Parent',
'algorithm' => 1,
'weight' => 0,
'sortorder' => 0
]);
$this->assertArrayHasKey('serviceids', $response['result']);
$this->assertArrayHasKey(0, $response['result']['serviceids']);
self::$parent_serviceid = $response['result']['serviceids'][0];
$triggers_services = [
'average1' => TRIGGER_SEVERITY_AVERAGE,
'average2' => TRIGGER_SEVERITY_AVERAGE,
'high1' => TRIGGER_SEVERITY_HIGH,
'high2' => TRIGGER_SEVERITY_HIGH,
'high3' => TRIGGER_SEVERITY_HIGH,
'warning1' => TRIGGER_SEVERITY_WARNING,
'ok1' => TRIGGER_SEVERITY_WARNING,