You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.9 KiB
62 lines
1.9 KiB
/*
|
|
** 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 "zbxmocktest.h"
|
|
#include "zbxmockdata.h"
|
|
#include "zbxmockassert.h"
|
|
#include "zbxmockutil.h"
|
|
#include "zbxmockhelper.h"
|
|
|
|
#include "zbxcommon.h"
|
|
#include "zbxcomms.h"
|
|
|
|
void zbx_mock_test_entry(void **state)
|
|
{
|
|
char *buffer;
|
|
zbx_socket_t s;
|
|
ssize_t received;
|
|
int expected_ret;
|
|
|
|
ZBX_UNUSED(state);
|
|
|
|
zbx_mock_assert_result_eq("zbx_tcp_connect() return code", SUCCEED,
|
|
zbx_tcp_connect(&s, NULL, "127.0.0.1", 10050, 0, ZBX_TCP_SEC_UNENCRYPTED, NULL, NULL));
|
|
|
|
expected_ret = zbx_mock_str_to_return_code(zbx_mock_get_parameter_string("out.return"));
|
|
received = zbx_tcp_recv_raw_ext(&s, 0);
|
|
|
|
if (FAIL == expected_ret)
|
|
{
|
|
zbx_mock_assert_result_eq("zbx_tcp_recv_raw_ext() return code", FAIL, received);
|
|
zbx_tcp_close(&s);
|
|
return;
|
|
}
|
|
|
|
zbx_mock_assert_result_eq("zbx_tcp_recv_raw_ext() return code", SUCCEED, SUCCEED_OR_FAIL(received));
|
|
zbx_mock_assert_uint64_eq("Received bytes", zbx_mock_get_parameter_uint64("out.bytes"), received);
|
|
|
|
buffer = zbx_yaml_assemble_binary_sequence("in.fragments", received);
|
|
|
|
if (0 != memcmp(buffer, s.buffer, received))
|
|
fail_msg("Received message mismatch expected");
|
|
|
|
zbx_tcp_close(&s);
|
|
zbx_free(buffer);
|
|
}
|