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.
58 lines
1.8 KiB
58 lines
1.8 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"
|
|
|
|
static void mock_accept(zbx_socket_t *s)
|
|
{
|
|
const char *peer;
|
|
|
|
if (AF_INET != (s->peer_info.sin_family = zbx_mock_str_to_family(zbx_mock_get_parameter_string("in.family"))))
|
|
fail_msg("Unexpected family");
|
|
|
|
if (1 != inet_pton(AF_INET, (peer = zbx_mock_get_parameter_string("in.peer")),
|
|
&((struct sockaddr_in *)&s->peer_info)->sin_addr.s_addr))
|
|
{
|
|
fail_msg("failed converting address '%s' from textual to binary",
|
|
zbx_mock_get_parameter_string("in.peer"));
|
|
}
|
|
|
|
zbx_strlcpy(s->peer, peer, sizeof(s->peer));
|
|
}
|
|
|
|
void zbx_mock_test_entry(void **state)
|
|
{
|
|
zbx_socket_t s;
|
|
|
|
ZBX_UNUSED(state);
|
|
|
|
mock_accept(&s);
|
|
|
|
zbx_mock_assert_result_eq("zbx_tcp_check_allowed_peers() return code",
|
|
zbx_mock_str_to_return_code(zbx_mock_get_parameter_string("out.return")),
|
|
zbx_tcp_check_allowed_peers(&s, zbx_mock_get_parameter_string("in.allowed_peers")));
|
|
}
|