Welcome to mirror list, hosted at ThFree Co, Russian Federation.

zbx_execute_agent_check.c « zbxsysinfo « libs « tests - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffa097313f2fd5daa1cb4d3794456bc66baee749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/*
** Zabbix
** Copyright (C) 2001-2022 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 "module.h"
#include "zbxsysinfo.h"
#include "zbxstr.h"
#include "zbxnum.h"
#include "zbxalgo.h"
#include "zbxdbhigh.h"

static char	*called_key = NULL;

int	__wrap_system_localtime(const char *command, AGENT_RESULT *result);
int	__wrap_vfs_file_size(const char *command, AGENT_RESULT *result);
int	__wrap_vfs_file_time(const char *command, AGENT_RESULT *result);
int	__wrap_vfs_file_exists(const char *command, AGENT_RESULT *result);
int	__wrap_vfs_file_contents(const char *command, AGENT_RESULT *result);
int	__wrap_vfs_file_regexp(const char *command, AGENT_RESULT *result);
int	__wrap_vfs_file_regmatch(const char *command, AGENT_RESULT *result);
int	__wrap_vfs_file_md5sum(const char *command, AGENT_RESULT *result);
int	__wrap_vfs_file_cksum(const char *command, AGENT_RESULT *result);
int	__wrap_vfs_dir_size(const char *command, AGENT_RESULT *result);
int	__wrap_net_dns(const char *command, AGENT_RESULT *result);
int	__wrap_net_dns_record(const char *command, AGENT_RESULT *result);
int	__wrap_net_tcp_port(const char *command, AGENT_RESULT *result);
int	__wrap_system_users_num(const char *command, AGENT_RESULT *result);

void	zbx_mock_test_entry(void **state)
{
	zbx_mock_error_t	error;
	zbx_mock_handle_t	in_command, in_flags;
	const char		*in_command_string, *flags_string, *p;
	char			key[ZBX_ITEM_KEY_LEN];
	unsigned		flags_uint32;
	AGENT_RESULT		result;

	ZBX_UNUSED(state);

	if (ZBX_MOCK_SUCCESS != (error = zbx_mock_in_parameter("in_command", &in_command)) ||
			ZBX_MOCK_SUCCESS != (error = zbx_mock_string(in_command, &in_command_string)))
	{
		fail_msg("Cannot get in_command from test case data: %s", zbx_mock_error_string(error));
	}

	if (ZBX_MOCK_SUCCESS != (error = zbx_mock_in_parameter("flags", &in_flags)) ||
			ZBX_MOCK_SUCCESS != (error = zbx_mock_string(in_flags, &flags_string)))
	{
		fail_msg("Cannot get flags from test case data: %s", zbx_mock_error_string(error));
	}
	if (SUCCEED != zbx_is_uint32(flags_string, &flags_uint32))
		fail_msg("Cannot convert flags to unsigned 32 bit integer.");

	zbx_init_metrics();

	zbx_execute_agent_check(in_command_string, flags_uint32, &result);

	if (NULL != (p = strchr(in_command_string, '[')))
		zbx_strlcpy(key, in_command_string, p - in_command_string + 1);

	if (called_key == NULL || 0 != strcmp((NULL == p ? in_command_string : key), called_key))
	{
		fail_msg("Unexpected called item '%s' instead of '%s' as a key.",
				ZBX_NULL2STR(called_key), in_command_string);
	}
}

int	__wrap_system_localtime(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "system.localtime";

	return SUCCEED;
}

int	__wrap_vfs_file_size(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "vfs.file.size";

	return SUCCEED;
}

int	__wrap_vfs_file_time(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "vfs.file.time";

	return SUCCEED;
}

int	__wrap_vfs_file_exists(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "vfs.file.exists";

	return SUCCEED;
}

int	__wrap_vfs_file_contents(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "vfs.file.contents";

	return SUCCEED;
}

int	__wrap_vfs_file_regexp(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "vfs.file.regexp";

	return SUCCEED;
}

int	__wrap_vfs_file_regmatch(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "vfs.file.regmatch";

	return SUCCEED;
}

int	__wrap_vfs_file_md5sum(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "vfs.file.md5sum";

	return SUCCEED;
}

int	__wrap_vfs_file_cksum(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "vfs.file.cksum";

	return SUCCEED;
}

int	__wrap_vfs_dir_size(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "vfs.dir.size";

	return SUCCEED;
}

int	__wrap_net_dns(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "net.dns";

	return SUCCEED;
}

int	__wrap_net_dns_record(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "net.dns.record";

	return SUCCEED;
}

int	__wrap_net_tcp_port(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "net.tcp.port";

	return SUCCEED;
}

int	__wrap_system_users_num(const char *command, AGENT_RESULT *result)
{
	ZBX_UNUSED(command);
	ZBX_UNUSED(result);

	called_key = "system.users.num";

	return SUCCEED;
}