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/zbxsysinfo/process_http.c')
-rw-r--r--tests/libs/zbxsysinfo/process_http.c99
1 files changed, 99 insertions, 0 deletions
diff --git a/tests/libs/zbxsysinfo/process_http.c b/tests/libs/zbxsysinfo/process_http.c
new file mode 100644
index 00000000000..f29e35544af
--- /dev/null
+++ b/tests/libs/zbxsysinfo/process_http.c
@@ -0,0 +1,99 @@
+/*
+** Zabbix
+** Copyright (C) 2001-2021 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 "db.h"
+#include "sysinfo.h"
+
+static char *called_key = NULL;
+
+int __wrap_WEB_PAGE_GET(const char *command, AGENT_RESULT *result);
+int __wrap_WEB_PAGE_PERF(const char *command, AGENT_RESULT *result);
+int __wrap_WEB_PAGE_REGEXP(const char *command, AGENT_RESULT *result);
+
+void zbx_mock_test_entry(void **state)
+{
+ zbx_mock_error_t error;
+ zbx_mock_handle_t in_command, in_flags;
+ const char *in_command_string, *flags_string, *p;
+ char key[ITEM_KEY_LEN];
+ unsigned flags_uint32;
+ AGENT_RESULT result;
+
+ ZBX_UNUSED(state);
+
+ if (ZBX_MOCK_SUCCESS != (error = zbx_mock_in_parameter("in_command", &in_command)) ||
+ ZBX_MOCK_SUCCESS != (error = zbx_mock_string(in_command, &in_command_string)))
+ {
+ fail_msg("Cannot get in_command from test case data: %s", zbx_mock_error_string(error));
+ }
+
+ if (ZBX_MOCK_SUCCESS != (error = zbx_mock_in_parameter("flags", &in_flags)) ||
+ ZBX_MOCK_SUCCESS != (error = zbx_mock_string(in_flags, &flags_string)))
+ {
+ fail_msg("Cannot get flags from test case data: %s", zbx_mock_error_string(error));
+ }
+ if (SUCCEED != is_uint32(flags_string, &flags_uint32))
+ fail_msg("Cannot convert flags to unsigned 32 bit integer.");
+
+ init_metrics();
+
+ process(in_command_string, flags_uint32, &result);
+
+ if (NULL != (p = strchr(in_command_string, '[')))
+ zbx_strlcpy(key, in_command_string, p - in_command_string + 1);
+
+ if (called_key == NULL || 0 != strcmp((NULL == p ? in_command_string : key), called_key))
+ {
+ fail_msg("Unexpected called item '%s' instead of '%s' as a key.",
+ ZBX_NULL2STR(called_key), in_command_string);
+ }
+}
+
+int __wrap_WEB_PAGE_GET(const char *command, AGENT_RESULT *result)
+{
+ ZBX_UNUSED(command);
+ ZBX_UNUSED(result);
+
+ called_key = "web.page.get";
+
+ return SUCCEED;
+}
+
+int __wrap_WEB_PAGE_PERF(const char *command, AGENT_RESULT *result)
+{
+ ZBX_UNUSED(command);
+ ZBX_UNUSED(result);
+
+ called_key = "web.page.perf";
+
+ return SUCCEED;
+}
+
+int __wrap_WEB_PAGE_REGEXP(const char *command, AGENT_RESULT *result)
+{
+ ZBX_UNUSED(command);
+ ZBX_UNUSED(result);
+
+ called_key = "web.page.regexp";
+
+ return SUCCEED;
+}