/* ** 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 "zbxcommon.h" #include "zbxmodules.h" #include "zbxalgo.h" #include "zbxsysinfo.h" #include "zbxmocktest.h" #include "zbxmockassert.h" #include "zbxmockutil.h" void zbx_mock_test_entry(void **state) { int r; const char *path; zbx_mock_handle_t in_files, file; zbx_vector_str_t files; ZBX_UNUSED(state); zbx_vector_str_create(&files); zbx_init_metrics(); path = zbx_mock_get_parameter_string("in.path"); in_files = zbx_mock_get_parameter_handle("in.files"); while (ZBX_MOCK_SUCCESS == zbx_mock_vector_element(in_files, &file)) { const char *name; r = zbx_mock_string(file, &name); zbx_mock_assert_int_eq("file list", ZBX_MOCK_SUCCESS, r); zbx_vector_str_append(&files, (char *)name); } zbx_vector_str_append(&files, NULL); r = zbx_load_modules(path, files.values, 1, 1); zbx_mock_assert_int_eq("modules loaded", SUCCEED, r); zbx_unload_modules(); zbx_vector_str_destroy(&files); }