You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.5 KiB
75 lines
2.5 KiB
1 year ago
|
/*
|
||
|
** 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.
|
||
|
**/
|
||
|
|
||
|
#include "zbxmocktest.h"
|
||
|
#include "zbxmockassert.h"
|
||
|
#include "zbxmockutil.h"
|
||
|
#include "zbxcommon.h"
|
||
|
|
||
|
#include "test_get_value_ssh.h"
|
||
|
#include "../../../src/zabbix_server/poller/checks_ssh.h"
|
||
|
|
||
|
#include "test_get_value_telnet.h"
|
||
|
#include "../../../src/zabbix_server/poller/checks_telnet.h"
|
||
|
|
||
|
void zbx_mock_test_entry(void **state)
|
||
|
{
|
||
|
zbx_dc_item_t item;
|
||
|
const char *test_type = NULL;
|
||
|
int returned_code, expected_code;
|
||
|
char *error = NULL;
|
||
|
|
||
|
ZBX_UNUSED(state);
|
||
|
test_type = zbx_mock_get_parameter_string("in.type");
|
||
|
expected_code = zbx_mock_str_to_return_code(zbx_mock_get_parameter_string("out.return"));
|
||
|
|
||
|
memset((void*)&item, 0, sizeof(item));
|
||
|
|
||
|
if (0 == zbx_strcmp_null("ZBX_TEST_GET_VALUE_SSH", test_type))
|
||
|
{
|
||
|
#if defined(HAVE_SSH2) || defined(HAVE_SSH)
|
||
|
memset((void*)&item, 0, sizeof(item));
|
||
|
item.interface.addr = (char *)zbx_mock_get_parameter_string("in.item.interface");
|
||
|
item.key = (char *)zbx_mock_get_parameter_string("in.item.key");
|
||
|
|
||
|
returned_code = zbx_get_value_ssh_test_run(&item, &error);
|
||
|
if (SUCCEED != returned_code && NULL != error)
|
||
|
printf("zbx_get_value_ssh_test_run error: %s\n", error);
|
||
|
|
||
|
zbx_mock_assert_result_eq("Return value", expected_code, returned_code);
|
||
|
|
||
|
zbx_free(error);
|
||
|
#endif /* defined(HAVE_SSH2) || defined(HAVE_SSH) */
|
||
|
}
|
||
|
else if (0 == zbx_strcmp_null("ZBX_TEST_GET_VALUE_TELNET", test_type))
|
||
|
{
|
||
|
item.interface.addr = (char *)zbx_mock_get_parameter_string("in.item.interface");
|
||
|
item.key = (char *)zbx_mock_get_parameter_string("in.item.key");
|
||
|
|
||
|
returned_code = zbx_get_value_telnet_test_run(&item, &error);
|
||
|
if (SUCCEED != returned_code && NULL != error)
|
||
|
printf("zbx_get_value_telnet_test_run error: %s\n", error);
|
||
|
|
||
|
zbx_mock_assert_result_eq("Return value", expected_code, returned_code);
|
||
|
|
||
|
zbx_free(error);
|
||
|
}
|
||
|
}
|
||
|
|