/* ** 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 "macrofunc.h" #include "log.h" #include "valuecache.h" #include "mocks/valuecache/valuecache_mock.h" void zbx_mock_test_entry(void **state) { const size_t macro_pos = 1, macro_pos_end = 6, func_pos = 8, func_param_pos = 15; int expected_ret, returned_ret, err; char *returned_value = NULL, macro_expr[MAX_STRING_LEN]; const char *expected_value; zbx_token_func_macro_t token; zbx_mock_handle_t handle; ZBX_UNUSED(state); handle = zbx_mock_get_parameter_handle("in"); zbx_vcmock_set_time(handle, "time"); zbx_snprintf(macro_expr, MAX_STRING_LEN, "{{TIME}.fmttime(%s, %s)}", zbx_mock_get_parameter_string("in.fmt"), zbx_mock_get_parameter_string("in.period")); token = (zbx_token_func_macro_t) { .macro = { macro_pos, macro_pos_end }, .func = { func_pos, strlen(macro_expr) - 2 }, .func_param = { func_param_pos, strlen(macro_expr) - 2 } }; returned_ret = zbx_calculate_macro_function(macro_expr, &token, &returned_value); expected_ret = zbx_mock_str_to_return_code(zbx_mock_get_parameter_string("out.return")); zbx_mock_assert_result_eq("return value", expected_ret, returned_ret); if (SUCCEED == expected_ret) { handle = zbx_mock_get_parameter_handle("out.value"); if (ZBX_MOCK_SUCCESS != (err = zbx_mock_string_ex(handle, &expected_value))) fail_msg("Cannot read output value: %s", zbx_mock_error_string(err)); zbx_mock_assert_str_eq("fmttime result", expected_value, returned_value); } zbx_free(returned_value); }