summaryrefslogtreecommitdiffstats
path: root/tests/TestHelpers.h
blob: 2e43e1e0d53d6b789bcb47bba6b3ffbcce664c60 (plain) (blame)
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
// Helper macros for writing exception-based tests




/** The exception that is thrown if a test fails.
It doesn't inherit from any type so that it is not possible to catch it by a mistake,
it needs to be caught explicitly (used in the TEST_THROWS).
It bears a single message that is to be displayed to stderr. */
class TestException
{
public:
	TestException(const AString & aMessage):
		mMessage(aMessage)
	{
	}

	AString mMessage;
};





/** Checks that the two values are equal; if not, throws a TestException. */
#define TEST_EQUAL(VAL1, VAL2) \
	if (VAL1 != VAL2) \
	{ \
		throw TestException(Printf("%s (line %d): Equality test failed: %s != %s", \
			__FUNCTION__, __LINE__, \
			#VAL1, #VAL2 \
		)); \
	}



/** Checks that the two values are not equal; if they are, throws a TestException. */
#define TEST_NOTEQUAL(VAL1, VAL2) \
	if (VAL1 == VAL2) \
	{ \
		throw TestException(Printf("%s (line %d): Inequality test failed: %s == %s", \
			__FUNCTION__, __LINE__, \
			#VAL1, #VAL2 \
		)); \
	}



/** Checks that the statement throws an exception of the specified class. */
#define TEST_THROWS(Stmt, ExcClass) \
	try \
	{ \
		Stmt; \
		throw TestException(Printf("%s (line %d): Failed to throw an exception of type %s", \
			__FUNCTION__, __LINE__, \
			#ExcClass \
		)); \
	} \
	catch (const ExcClass &) \
	{ \
		/* This is the expected case. */ \
	} \
	catch (const std::exception & exc) \
	{ \
		throw TestException(Printf("%s (line %d): An unexpected std::exception descendant was thrown, was expecting type %s. Message is: %s", \
			__FUNCTION__, __LINE__, \
			#ExcClass, exc.what() \
		)); \
	} \
	catch (...) \
	{ \
		throw TestException(Printf("%s (line %d): An unexpected exception object was thrown, was expecting type %s", \
			__FUNCTION__, __LINE__, \
			#ExcClass \
		)); \
	}