Source
xxxxxxxxxx
public function testValuemaps_checkProblemName($inputData, $inputType, $valuemap, $outputData) {
<?php
/*
** Zabbix
** Copyright (C) 2001-2024 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';
require_once dirname(__FILE__).'/../include/helpers/CDataHelper.php';
/**
* Test suite for value mapping.
*
* @required-components server
* @hosts test_valuemaps
* @backup history
*/
class testValuemaps extends CIntegrationTest {
const VALUEMAP_NAME = 'valuemap';
const HOST_NAME = 'test_valuemaps';
const ITEM_NAME = 'trap';
private static $hostid;
private static $itemid;
/**
* @inheritdoc
*/
public function prepareData() {
// Create host HOST_NAME.
$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')
]
],
'groups' => [
[
'groupid' => 4
]
]
]);
$this->assertArrayHasKey('hostids', $response['result']);
$this->assertArrayHasKey(0, $response['result']['hostids']);
self::$hostid = $response['result']['hostids'][0];
// create trapper
$response = $this->call('item.create', [
'hostid' => self::$hostid,
'name' => self::ITEM_NAME,
'key_' => self::ITEM_NAME,
'type' => ITEM_TYPE_TRAPPER,
'value_type' => ITEM_VALUE_TYPE_FLOAT
]);
$this->assertArrayHasKey('itemids', $response['result']);
$this->assertEquals(1, count($response['result']['itemids']));
self::$itemid = $response['result']['itemids'];
return true;
}
/**
* Data provider (valuemaps).
*
* @return array
*/
public function getValuemaps() {
$valuemap_patterns = [
'exactMatch' => [
'name' => self::VALUEMAP_NAME,
'hostid' => null,
'mappings' => [