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

zbxmockassert.c « tests - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4796f8a99703584e99a14b133a4b0b507c4ed2a9 (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
/*
** Zabbix
** Copyright (C) 2001-2017 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 "common.h"

void cm_print_error(const char * const format, ...);

#define _FAIL(file, line, prefix, message, ...)	\
	do 				\
	{				\
		cm_print_error("%s%s" message, (NULL != prefix_msg ? prefix_msg : ""),	\
				(NULL != prefix_msg && '\0' != *prefix_msg ? ": " : ""),	\
				__VA_ARGS__);	\
		_fail(file, line);	\
	} while(0);

void	__zbx_mock_assert_streq(const char *file, int line, const char *prefix_msg, const char *expected_value,
		const char *return_value)
{
	if (0 != strcmp(return_value, expected_value))
	{
		_FAIL(file, line, prefix_msg, "Expected \"%s\" while got \"%s\"\n", expected_value, return_value);
	}
}

void	__zbx_mock_assert_strne(const char *file, int line, const char *prefix_msg, const char *expected_value,
		const char *return_value)
{
	if (0 == strcmp(return_value, expected_value))
	{
		_FAIL(file, line, prefix_msg, "Expected not \"%s\" while got \"%s\"\n", expected_value, return_value);
	}
}

void	__zbx_mock_assert_uint64eq(const char *file, int line, const char *prefix_msg, zbx_uint64_t expected_value,
		zbx_uint64_t return_value)
{
	if (return_value != expected_value)
	{
		_FAIL(file, line, prefix_msg, "Expected \"" ZBX_FS_UI64 "\" while got \"" ZBX_FS_UI64 "\"\n",
				expected_value, return_value);
	}
}