Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libs/zbxeval/mock_eval.c')
-rw-r--r--tests/libs/zbxeval/mock_eval.c120
1 files changed, 120 insertions, 0 deletions
diff --git a/tests/libs/zbxeval/mock_eval.c b/tests/libs/zbxeval/mock_eval.c
new file mode 100644
index 00000000000..7372bc482f9
--- /dev/null
+++ b/tests/libs/zbxeval/mock_eval.c
@@ -0,0 +1,120 @@
+/*
+** Zabbix
+** Copyright (C) 2001-2020 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 "common.h"
+#include "zbxserver.h"
+
+zbx_uint64_t mock_eval_read_rules(const char *path)
+{
+ zbx_uint64_t rules = 0;
+ zbx_mock_handle_t hrules, hflag;
+ zbx_mock_error_t err;
+ int rules_num;
+
+ hrules = zbx_mock_get_parameter_handle(path);
+ while (ZBX_MOCK_END_OF_VECTOR != (err = (zbx_mock_vector_element(hrules, &hflag))))
+ {
+ const char *flag;
+
+ if (ZBX_MOCK_SUCCESS != err || ZBX_MOCK_SUCCESS != (err = zbx_mock_string(hflag, &flag)))
+ fail_msg("Cannot read flag #%d: %s", rules_num, zbx_mock_error_string(err));
+
+ if (0 == strcmp(flag, "ZBX_EVAL_PARSE_FUNCTIONID"))
+ rules |= ZBX_EVAL_PARSE_FUNCTIONID;
+ else if (0 == strcmp(flag, "ZBX_EVAL_PARSE_FUNCTION"))
+ rules |= ZBX_EVAL_PARSE_FUNCTION;
+ else if (0 == strcmp(flag, "ZBX_EVAL_PARSE_ITEM_QUERY"))
+ rules |= ZBX_EVAL_PARSE_ITEM_QUERY;
+ else if (0 == strcmp(flag, "ZBX_EVAL_PARSE_MACRO"))
+ rules |= ZBX_EVAL_PARSE_MACRO;
+ else if (0 == strcmp(flag, "ZBX_EVAL_PARSE_USERMACRO"))
+ rules |= ZBX_EVAL_PARSE_USERMACRO;
+ else if (0 == strcmp(flag, "ZBX_EVAL_PARSE_LLDMACRO"))
+ rules |= ZBX_EVAL_PARSE_LLDMACRO;
+ else if (0 == strcmp(flag, "ZBX_EVAL_PARSE_CONST_INDEX"))
+ rules |= ZBX_EVAL_PARSE_CONST_INDEX;
+ else if (0 == strcmp(flag, "ZBX_EVAL_COMPOSE_TRIGGER_EXPRESSION"))
+ rules |= ZBX_EVAL_COMPOSE_TRIGGER_EXPRESSION;
+ else if (0 == strcmp(flag, "ZBX_EVAL_COMPOSE_LLD_EXPRESSION"))
+ rules |= ZBX_EVAL_COMPOSE_LLD_EXPRESSION;
+ else if (0 == strcmp(flag, "ZBX_EVAL_PROCESS_ERROR"))
+ rules |= ZBX_EVAL_PROCESS_ERROR;
+ else
+ fail_msg("Unsupported flag: %s", flag);
+
+ rules_num++;
+ }
+
+ return rules;
+}
+
+void mock_eval_read_values(zbx_eval_context_t *ctx, const char *path)
+{
+ zbx_mock_handle_t htokens, htoken, hdata;
+ zbx_mock_error_t err;
+
+ if (ZBX_MOCK_SUCCESS != zbx_mock_parameter(path, &htokens))
+ return;
+
+ while (ZBX_MOCK_END_OF_VECTOR != (err = (zbx_mock_vector_element(htokens, &htoken))))
+ {
+ const char *data, *value = NULL, *error = NULL;
+ int i;
+ size_t data_len;
+
+ if (ZBX_MOCK_SUCCESS != err)
+ fail_msg("cannot read token contents");
+
+ data = zbx_mock_get_object_member_string(htoken, "token");
+ if (ZBX_MOCK_SUCCESS == zbx_mock_object_member(htoken, "value", &hdata))
+ {
+ if (ZBX_MOCK_SUCCESS != zbx_mock_string(hdata, &value))
+ fail_msg("invalid token value");
+ }
+ else if (ZBX_MOCK_SUCCESS == zbx_mock_object_member(htoken, "error", &hdata))
+ {
+ if (ZBX_MOCK_SUCCESS != zbx_mock_string(hdata, &error))
+ fail_msg("invalid token error");
+ }
+ else
+ fail_msg("invalid token contents");
+
+ data_len = strlen(data);
+
+ for (i = 0; i < ctx->stack.values_num; i++)
+ {
+ zbx_eval_token_t *token = &ctx->stack.values[i];
+
+ if (data_len == token->loc.r - token->loc.l + 1 &&
+ 0 == memcmp(data, ctx->expression + token->loc.l, data_len))
+ {
+ if (NULL != value)
+ zbx_variant_set_str(&token->value, zbx_strdup(NULL, value));
+ else
+ zbx_variant_set_error(&token->value, zbx_strdup(NULL, error));
+ break;
+ }
+ }
+ }
+}