Source
$this->assertEquals(self::SUBJECT_PREFIX_RECOVERY.self::VALUE_TO_RECOVER_TRIGGER, self::$alert_response['result'][2]['subject']);
<?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 for expression macros
*
* @required-components server
* @configurationDataProvider serverConfigurationProvider
* @backup items,actions,triggers
* @hosts test_macros
*/
class testExpressionMacros extends CIntegrationTest {
private static $hostid;
private static $triggerid;
private static $trigger_actionid;
private static $alert_response;
private static $event_response;
const TRAPPER_ITEM_NAME = 'trap';
const HOST_NAME = 'test_macros';
const MESSAGE_PREFIX = 'message with expression macro: ';
const SUBJECT_PREFIX = 'subject with expression macro: ';
const MESSAGE_PREFIX_RECOVERY = 'recovery message with expression macro: ';
const SUBJECT_PREFIX_RECOVERY = 'recovery subject with expression macro: ';
const EVENT_PREFIX = 'event name with expression macro: ';
const VALUE_TO_FIRE_TRIGGER = 3;
const VALUE_TO_RECOVER_TRIGGER = 2;
/**
* @inheritdoc
*/
public function prepareData() {
// Create host "test_macros".
$response = $this->call('host.create', [
'host' => self::HOST_NAME,
'interfaces' => [
[
'type' => 1,
'main' => 1,
'useip' => 1,
'ip' => '127.0.0.1',
'dns' => '',
'port' => $this->getConfigurationValue(self::COMPONENT_AGENT, 'ListenPort')