aboutsummaryrefslogtreecommitdiff
path: root/src/testsuite.cpp
blob: 07fe296bef32926f472dd399aa868bc9b38709ed (about) (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
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/*	   +------------------------------------+
 *	   | Inspire Internet Relay Chat Daemon |
 *	   +------------------------------------+
 *
 *  InspIRCd: (C) 2002-2011 InspIRCd Development Team
 * See: http://wiki.inspircd.org/Credits
 *
 * This program is free but copyrighted software; see
 *		  the file COPYING for details.
 *
 * ---------------------------------------------------
 */

/* $Core */

#include "inspircd.h"
#include "cull_list.h"
#include "testsuite.h"
#include <iostream>

#define COUTFAILED() std::cout << std::endl << (failed ? "FAILURE" : "SUCCESS") << std::endl << std::endl

/* Test that x matches y with match() */
#define WCTEST(x, y) do { std::cout << "match(\"" << x << "\",\"" << y "\") " << ((testpassed = (InspIRCd::Match(x, y, NULL))) ? "SUCCESS" : "FAILURE") << std::endl; failed = !testpassed || failed; } while(0)
/* Test that x does not match y with match() */
#define WCTESTNOT(x, y) do { std::cout << "!match(\"" << x << "\",\"" << y "\") " << ((testpassed = ((!InspIRCd::Match(x, y, NULL)))) ? "SUCCESS" : "FAILURE") << std::endl; failed = !testpassed || failed; } while(0)

/* Test that x matches y with match() and cidr enabled */
#define CIDRTEST(x, y) do { std::cout << "match(\"" << x << "\",\"" << y "\", true) " << ((testpassed = (InspIRCd::MatchCIDR(x, y, NULL))) ? "SUCCESS" : "FAILURE") << std::endl; failed = !testpassed || failed; } while(0)
/* Test that x does not match y with match() and cidr enabled */
#define CIDRTESTNOT(x, y) do { std::cout << "!match(\"" << x << "\",\"" << y "\", true) " << ((testpassed = ((!InspIRCd::MatchCIDR(x, y, NULL)))) ? "SUCCESS" : "FAILURE") << std::endl; failed = !testpassed || failed; } while(0)

static bool DoWildTests()
{
	std::cout << "Wildcard and CIDR tests" << std::endl << std::endl;
	bool testpassed = false, failed = false;

	WCTEST("foobar", "*");
	WCTEST("foobar", "foo*");
	WCTEST("foobar", "*bar");
	WCTEST("foobar", "foo??r");
	WCTEST("foobar.test", "fo?bar.*t");
	WCTEST("foobar.test", "fo?bar.t*t");
	WCTEST("foobar.tttt", "fo?bar.**t");
	WCTEST("foobar", "foobar");
	WCTEST("foobar", "foo***bar");
	WCTEST("foobar", "*foo***bar");
	WCTEST("foobar", "**foo***bar");
	WCTEST("foobar", "**foobar*");
	WCTEST("foobar", "**foobar**");
	WCTEST("foobar", "**foobar");
	WCTEST("foobar", "**f?*?ar");
	WCTEST("foobar", "**f?*b?r");
	WCTEST("foofar", "**f?*f*r");
	WCTEST("foofar", "**f?*f*?");
	WCTEST("r", "*");
	WCTEST("", "");
	WCTEST("test@foo.bar.test", "*@*.bar.test");
	WCTEST("test@foo.bar.test", "*test*@*.bar.test");
	WCTEST("test@foo.bar.test", "*@*test");

	WCTEST("a", "*a");
	WCTEST("aa", "*a");
	WCTEST("aaa", "*a");
	WCTEST("aaaa", "*a");
	WCTEST("aaaaa", "*a");
	WCTEST("aaaaaa", "*a");
	WCTEST("aaaaaaa", "*a");
	WCTEST("aaaaaaaa", "*a");
	WCTEST("aaaaaaaaa", "*a");
	WCTEST("aaaaaaaaaa", "*a");
	WCTEST("aaaaaaaaaaa", "*a");

	WCTESTNOT("foobar", "bazqux");
	WCTESTNOT("foobar", "*qux");
	WCTESTNOT("foobar", "foo*x");
	WCTESTNOT("foobar", "baz*");
	WCTESTNOT("foobar", "foo???r");
	WCTESTNOT("foobar", "foobars");
	WCTESTNOT("foobar", "**foobar**h");
	WCTESTNOT("foobar", "**foobar**h*");
	WCTESTNOT("foobar", "**f??*bar?");
	WCTESTNOT("foobar", "");
	WCTESTNOT("", "foobar");
	WCTESTNOT("OperServ", "O");
	WCTESTNOT("O", "OperServ");
	WCTESTNOT("foobar.tst", "fo?bar.*g");
	WCTESTNOT("foobar.test", "fo?bar.*tt");

	CIDRTEST("brain@1.2.3.4", "*@1.2.0.0/16");
	CIDRTEST("brain@1.2.3.4", "*@1.2.3.0/24");
	CIDRTEST("192.168.3.97", "192.168.3.0/24");
	CIDRTEST("2001:db8::1", "2001:db8::/32");

	CIDRTESTNOT("brain@1.2.3.4", "x*@1.2.0.0/16");
	CIDRTESTNOT("brain@1.2.3.4", "*@1.3.4.0/24");
	CIDRTESTNOT("1.2.3.4", "1.2.4.0/24");
	CIDRTESTNOT("brain@1.2.3.4", "*@/24");
	CIDRTESTNOT("brain@1.2.3.4", "@1.2.3.4/9");
	CIDRTESTNOT("brain@1.2.3.4", "@");
	CIDRTESTNOT("brain@1.2.3.4", "");
	CIDRTESTNOT("2001:db8:aaaa::1", "2001:db8:bbbb::/48");

	std::cout << std::endl << "Result of wildcard and CIDR tests:";
	COUTFAILED();
	return !failed;
}

#define STREQUALTEST(x, y) std::cout << "==(\"" << x << "\",\"" << y << "\") " << ((testpassed = (x == y)) ? "SUCCESS" : "FAILURE") << std::endl

template<typename T>
static bool DoStreamTest(const char* expected[], T& stream)
{
	std::string token;
	bool tooMany = false, failed = false, testpassed;
	size_t i;
	for(i = 0; stream.GetToken(token); ++i)
	{
		if(tooMany || !expected[i])
		{
			tooMany = failed = true;
			std::cout << "FAILURE: Received extra token \"" << token << "\"" << std::endl;
		}
		else
		{
			STREQUALTEST(token, expected[i]);
			failed = !testpassed || failed;
		}
	}
	if(!tooMany)
		while(expected[i])
		{
			failed = true;
			std::cout << "FAILURE: Did not receive expected token \"" << expected[i++] << "\"" << std::endl;
		}
	return !failed;
}

#define STREAMTEST(a,b,...) \
do { \
	a stream b; \
	static const char* expected[] = __VA_ARGS__; \
	failed = !DoStreamTest(expected, stream) || failed; \
	std::cout << std::endl; \
} while(0)

static bool DoCommaSepStreamTests()
{
	std::cout << "Comma sepstream tests" << std::endl << std::endl;
	bool failed = false;

	STREAMTEST(irc::commasepstream, ("this,is,a,comma,stream", false), { "this", "is", "a", "comma", "stream", NULL });
	STREAMTEST(irc::commasepstream, ("with,lots,,of,,,commas", false), { "with", "lots", "", "of", "", "", "commas", NULL });
	STREAMTEST(irc::commasepstream, (",comma,at,the,beginning", false), { "", "comma", "at", "the", "beginning", NULL });
	STREAMTEST(irc::commasepstream, ("commas,at,the,end,,", false), { "commas", "at", "the", "end", "", "", NULL });
	STREAMTEST(irc::commasepstream, (",", false), { "", "", NULL });
	STREAMTEST(irc::commasepstream, ("", false), { "", NULL });

	std::cout << "Result of comma sepstream tests:";
	COUTFAILED();
	return !failed;
}

static bool DoSpaceSepStreamTests()
{
	std::cout << "Space sepstream tests" << std::endl << std::endl;
	bool failed = false;

	STREAMTEST(irc::spacesepstream, ("this is a space stream", true), { "this", "is", "a", "space", "stream", NULL });
	STREAMTEST(irc::spacesepstream, ("with lots  of   spaces", true), { "with", "lots", "of", "spaces", NULL });
	STREAMTEST(irc::spacesepstream, (" space at the beginning", true), { "space", "at", "the", "beginning", NULL });
	STREAMTEST(irc::spacesepstream, ("spaces at the end  ", true), { "spaces", "at", "the", "end", NULL });
	STREAMTEST(irc::spacesepstream, (" ", true), { NULL });
	STREAMTEST(irc::spacesepstream, ("", true), { NULL });

	std::cout << "Result of space sepstream tests:";
	COUTFAILED();
	return !failed;
}

static bool DoTokenStreamTests()
{
	std::cout << "Token stream tests" << std::endl << std::endl;
	bool failed = false;

	STREAMTEST(irc::tokenstream, ("just some words and spaces"), { "just", "some", "words", "and", "spaces", NULL });
	STREAMTEST(irc::tokenstream, (":not actually all one token"), { ":not", "actually", "all", "one", "token", NULL });
	STREAMTEST(irc::tokenstream, ("several small tokens :and one large one"), { "several", "small", "tokens", "and one large one", NULL });
	STREAMTEST(irc::tokenstream, ("with 3 tokens "), { "with", "3", "tokens", NULL });
	STREAMTEST(irc::tokenstream, ("with a blank token at the end :"), { "with", "a", "blank", "token", "at", "the", "end", "", NULL });
	STREAMTEST(irc::tokenstream, ("with a space at the end : "), { "with", "a", "space", "at", "the", "end", " ", NULL });
	STREAMTEST(irc::tokenstream, ("a :large token ending in a colon:"), { "a", "large token ending in a colon:", NULL });
	STREAMTEST(irc::tokenstream, ("several tokens with the last ending in a colon:"), { "several", "tokens", "with", "the", "last", "ending", "in", "a", "colon:", NULL });

	std::cout << "Result of token stream tests:";
	COUTFAILED();
	return !failed;
}

TestSuite::TestSuite()
{
	std::cout << std::endl << "*** STARTING TESTSUITE ***" << std::endl;

	std::string modname;
	char choice;
	bool failed;

	while (1)
	{
		std::cout << "(1) Call all module RunTestSuite() methods" << std::endl;
		std::cout << "(2) Run all core tests" << std::endl;

		std::cout << std::endl << "(3) Run wildcard and CIDR tests" << std::endl;
		std::cout << "(4) Run comma sepstream tests" << std::endl;
		std::cout << "(5) Run space sepstream tests" << std::endl;
		std::cout << "(6) Run token stream tests" << std::endl;

		std::cout << std::endl << "(L) Load a module" << std::endl;
		std::cout << "(U) Unload a module" << std::endl;
		std::cout << "(X) Exit test suite" << std::endl;

		std::cout << std::endl << "Choices (Enter one or more options as a list then press enter, e.g. 15X): ";
		std::cin >> choice;

		std::cout << std::endl;

		switch (choice)
		{
			case '1':
				for(std::map<std::string, Module*>::const_iterator i = ServerInstance->Modules->GetModules().begin(); i != ServerInstance->Modules->GetModules().end(); i++)
				{
					Module* m = i->second;
					try
					{
						m->RunTestSuite();
					}
					catch (CoreException& e)
					{
						std::cout << "Module " << m->ModuleSourceFile << " failed: " << e.err;
					}
				}
				break;

			case '2':
				failed = false;
				failed = !DoWildTests() || failed;
				failed = !DoCommaSepStreamTests() || failed;
				failed = !DoSpaceSepStreamTests() || failed;
				failed = !DoTokenStreamTests() || failed;
				std::cout << "Final result of all tests:";
				COUTFAILED();
				break;

			case '3':
				DoWildTests();
				break;

			case '4':
				DoCommaSepStreamTests();
				break;

			case '5':
				DoSpaceSepStreamTests();
				break;

			case '6':
				DoTokenStreamTests();
				break;

			case 'L':
				std::cout << "Enter module filename to load: ";
				std::cin >> modname;
				std::cout << std::endl << (ServerInstance->Modules->Load(modname.c_str()) ? "SUCCESS" : "FAILURE") << std::endl;
				break;

			case 'U':
				std::cout << "Enter module filename to unload: ";
				std::cin >> modname;
				{
					Module* m = ServerInstance->Modules->Find(modname);
					std::cout << std::endl << (ServerInstance->Modules->Unload(m) ? "SUCCESS" : "FAILURE") << std::endl;
					ServerInstance->AtomicActions->Run();
				}
				break;

			case 'X':
				return;

			default:
				std::cout << "Invalid option" << std::endl;
				break;
		}
	}
}

TestSuite::~TestSuite()
{
	std::cout << std::endl << "*** END OF TEST SUITE ***" << std::endl;
}