#include "../../../../src/libs/zbxsysinfo/sysinfo.h"
#define FAIL_PARAM(NAME, MOCK_ERR) fail_msg("Cannot get \"%s\": %s", NAME, zbx_mock_error_string(MOCK_ERR))
static void get_out_parameter(const char *name, const char **value);
void zbx_mock_test_entry(void **state)
const char *expected_json, *expected_error, *expected_string, *actual_string;
int expected_ret, actual_ret;
get_out_parameter("json", &expected_json);
get_out_parameter("error", &expected_error);
if (NULL == expected_json)
if (NULL == expected_error)
fail_msg("Invalid test case data: expected \"json\" or \"error\" out parameter");
expected_ret = SYSINFO_RET_FAIL;
expected_string = expected_error;
if (NULL != expected_error)
fail_msg("Invalid test case data: expected only one of \"json\" and \"error\" out parameters");
expected_ret = SYSINFO_RET_OK;
expected_string = expected_json;
zbx_init_agent_request(&request);
zbx_init_agent_result(&result);
zbx_init_library_sysinfo(NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);