Source
xxxxxxxxxx
$first_check = $this->getLogLineTimestamp(self::COMPONENT_SERVER, ["In get_value() key:'".$key."'"], $wait);
<?php
/*
** Zabbix
** Copyright (C) 2001-2022 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 items state change verification.
*
* @required-components server, agent
* @configurationDataProvider serverConfigurationProvider
* @hosts test_host
* @backup history
*/
class testItemState extends CIntegrationTest {
const REFRESH_ACT_CHKS_INTERVAL = 60;
const PROCESS_ACT_CHKS_DELAY = 60;
const LOG_LINE_WAIT_TIME = 30;
const PSV_FILE_NAME = '/tmp/some_temp_file_psv';
const ACT_FILE_NAME = '/tmp/some_temp_file_act';
private static $hostid;
private static $interfaceid;
private static $items = [
'zbx_psv_01' => [
'key' => 'vfs.file.contents['.self::PSV_FILE_NAME.']',
'type' => ITEM_TYPE_ZABBIX
],
'zbx_act_01' => [
'key' => 'vfs.file.contents['.self::ACT_FILE_NAME.']',
'type' => ITEM_TYPE_ZABBIX_ACTIVE
]
];
private static $scenarios = [
[
'name' => 'zbx_psv_01',
'delay_s' => 5
],
[
'name' => 'zbx_act_01',
'delay_s' => 5
]
];
/**
* @inheritdoc
*/
public function prepareData() {
// Create host "test_host"
$response = $this->call('host.create', [
[
'host' => 'test_host',
'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_NOT_MONITORED
]
]);
$this->assertArrayHasKey('hostids', $response['result']);
$this->assertArrayHasKey(0, $response['result']['hostids']);
self::$hostid = $response['result']['hostids'][0];
// Get host interface ids.
$response = $this->call('host.get', [
'output' => ['host'],