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.
133 lines
3.0 KiB
133 lines
3.0 KiB
/*
|
|
** 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 "zbxmockdata.h"
|
|
#include "zbxmockassert.h"
|
|
#include "zbxmockutil.h"
|
|
|
|
#include "zbxnum.h"
|
|
#include "zbxvariant.h"
|
|
|
|
static unsigned int hex2num(char c)
|
|
{
|
|
int res;
|
|
|
|
if (c >= 'a')
|
|
res = c - 'a' + 10; /* a-f */
|
|
else if (c >= 'A')
|
|
res = c - 'A' + 10; /* A-F */
|
|
else
|
|
res = c - '0'; /* 0-9 */
|
|
|
|
return (unsigned int)res;
|
|
}
|
|
|
|
static void mock_read_variant(const char *path, zbx_variant_t *variant)
|
|
{
|
|
zbx_mock_handle_t hvalue;
|
|
const char *type;
|
|
const char *value;
|
|
|
|
hvalue = zbx_mock_get_parameter_handle(path);
|
|
type = zbx_mock_get_object_member_string(hvalue, "type");
|
|
|
|
if (0 == strcmp(type, "ZBX_VARIANT_NONE"))
|
|
{
|
|
zbx_variant_set_none(variant);
|
|
return;
|
|
}
|
|
|
|
value = zbx_mock_get_object_member_string(hvalue, "value");
|
|
|
|
if (0 == strcmp(type, "ZBX_VARIANT_STR"))
|
|
{
|
|
zbx_variant_set_str(variant, zbx_strdup(NULL, value));
|
|
return;
|
|
}
|
|
|
|
if (0 == strcmp(type, "ZBX_VARIANT_DBL"))
|
|
{
|
|
zbx_variant_set_dbl(variant, atof(value));
|
|
return;
|
|
}
|
|
|
|
if (0 == strcmp(type, "ZBX_VARIANT_UI64"))
|
|
{
|
|
zbx_uint64_t value_ui64;
|
|
|
|
if (SUCCEED != zbx_is_uint64(value, &value_ui64))
|
|
fail_msg("Cannot convert value %s to uint64", value);
|
|
|
|
zbx_variant_set_ui64(variant, value_ui64);
|
|
return;
|
|
}
|
|
|
|
if (0 == strcmp(type, "ZBX_VARIANT_BIN"))
|
|
{
|
|
zbx_uint32_t i, size;
|
|
char *data;
|
|
const char *ptr = value;
|
|
|
|
size = (strlen(value) + 1) / 3;
|
|
data = (0 != size ? zbx_malloc(NULL, size) : NULL);
|
|
|
|
for (i = 0; i < size; i++)
|
|
{
|
|
data[i] = hex2num(*ptr++) << 4;
|
|
data[i] |= hex2num(*ptr++);
|
|
ptr++;
|
|
}
|
|
zbx_variant_set_bin(variant, zbx_variant_data_bin_create(data, size));
|
|
zbx_free(data);
|
|
return;
|
|
}
|
|
|
|
fail_msg("Invalid variant type: %s", type);
|
|
}
|
|
|
|
void zbx_mock_test_entry(void **state)
|
|
{
|
|
zbx_variant_t value1, value2;
|
|
int ret;
|
|
const char *returned_result;
|
|
|
|
ZBX_UNUSED(state);
|
|
|
|
zbx_update_epsilon_to_float_precision();
|
|
|
|
mock_read_variant("in.value1", &value1);
|
|
mock_read_variant("in.value2", &value2);
|
|
|
|
ret = zbx_variant_compare(&value1, &value2);
|
|
|
|
if (ret < 0)
|
|
returned_result = "less";
|
|
else if (ret > 0)
|
|
returned_result = "greater";
|
|
else
|
|
returned_result = "equal";
|
|
|
|
zbx_mock_assert_str_eq("zbx_variant_compare() return", zbx_mock_get_parameter_string("out.return"),
|
|
returned_result);
|
|
|
|
zbx_variant_clear(&value1);
|
|
zbx_variant_clear(&value2);
|
|
}
|