Source
if (FAIL == expected_result && (ZBX_MOCK_SUCCESS != (error = zbx_mock_out_parameter("error", ¶m_handle)) ||
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** 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 Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
void zbx_mock_test_entry(void **state)
{
zbx_mock_error_t error;
const char *init_param;
zbx_mock_handle_t param_handle;
const char *expected_param_value_string, *tmp;
int expected_result = FAIL, actual_result = FAIL;
size_t func_pos, par_l, par_r;
size_t func_pos_exp, par_l_exp, par_r_exp;
const int max_error_len = MAX_STRING_LEN;
char error_text[MAX_STRING_LEN];
ZBX_UNUSED(state);
if (ZBX_MOCK_SUCCESS != (error = zbx_mock_in_parameter("param", ¶m_handle)) ||
ZBX_MOCK_SUCCESS != (error = zbx_mock_string(param_handle, &init_param)))
{
fail_msg("Cannot get input 'param' from test case data: %s", zbx_mock_error_string(error));
}
if (ZBX_MOCK_SUCCESS != (error = zbx_mock_out_parameter("return", ¶m_handle)) ||
ZBX_MOCK_SUCCESS != (error = zbx_mock_string(param_handle,&tmp)))
{
fail_msg("Cannot get expected 'return' parameter from test case data: %s",
zbx_mock_error_string(error));
}
else
{
if (0 == strcmp("SUCCEED", tmp))
expected_result = SUCCEED;
else if (0 == strcmp("FAIL", tmp))
expected_result = FAIL;
else
fail_msg("Get unexpected 'return' parameter from test case data: %s", tmp);
}
if (SUCCEED == expected_result)
{
zbx_uint32_t num;
if (ZBX_MOCK_SUCCESS != (error = zbx_mock_out_parameter("func_pos", ¶m_handle)) ||
ZBX_MOCK_SUCCESS != (error = zbx_mock_string(param_handle, &tmp)))