forked from libcheck/check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_check_selective.c
362 lines (304 loc) · 9.38 KB
/
check_check_selective.c
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
/*
* Check: a unit test framework for C
* Copyright (C) 2001, 2002 Arien Malec
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
#include "../lib/libcompat.h"
#include <stdio.h>
#include <stdlib.h>
#include <check.h>
#include "check_check.h"
static SRunner *sr;
static int test_tc11_executed;
static int test_tc12_executed;
static int test_tc21_executed;
static void reset_executed (void)
{
test_tc11_executed = 0;
test_tc12_executed = 0;
test_tc21_executed = 0;
}
START_TEST(test_tc11)
{
test_tc11_executed = 1;
}
END_TEST
START_TEST(test_tc12)
{
test_tc12_executed = 1;
}
END_TEST
START_TEST(test_tc21)
{
test_tc21_executed = 1;
}
END_TEST
static void selective_setup (void)
{
Suite *s1, *s2;
TCase *tc11, *tc12, *tc21;
/*
* Create a test suite 'suite1' with two test cases 'tcase11' and
* 'tcase12' containing a single test each.
*/
s1 = suite_create ("suite1");
tc11 = tcase_create ("tcase11");
tcase_add_test (tc11, test_tc11);
tc12 = tcase_create ("tcase12");
tcase_add_test (tc12, test_tc12);
suite_add_tcase (s1, tc11);
suite_add_tcase (s1, tc12);
/* This line intentionally attempts to add an already
* added test case twice, to ensure it is not added
* again. If it was added again, when the test cases
* are freed a double-free failure will occur. */
suite_add_tcase (s1, tc12);
/*
* Create a test suite 'suite2' with one test case 'test21'
* containing two tests.
*/
s2 = suite_create ("suite2");
tc21 = tcase_create ("tcase21");
tcase_add_test (tc21, test_tc21);
suite_add_tcase (s2, tc21);
sr = srunner_create (s1);
srunner_add_suite (sr, s2);
srunner_set_fork_status (sr, CK_NOFORK);
}
static void selective_teardown (void)
{
srunner_free (sr);
}
START_TEST(test_srunner_run_run_all)
{
/* This test exercises the srunner_run function for the case where
both sname and tcname are NULL. That means to run all the test
cases in all the defined suites. */
srunner_run (sr,
NULL, /* NULL tsuite name. */
NULL, /* NULL tcase name. */
CK_VERBOSE);
ck_assert_msg (srunner_ntests_run(sr) == 3,
"Not all tests were executed.");
reset_executed ();
}
END_TEST
START_TEST(test_srunner_run_suite)
{
/* This test makes the srunner_run function to run all the test
cases of a existing suite. */
srunner_run (sr,
"suite1",
NULL, /* NULL tcase name. */
CK_VERBOSE);
ck_assert_msg (test_tc11_executed
&& test_tc12_executed
&& !test_tc21_executed,
"Expected tests were not executed.");
reset_executed ();
}
END_TEST
START_TEST(test_srunner_run_no_suite)
{
/* This test makes the srunner_run function to run all the test
cases of a non-existing suite. */
srunner_run (sr,
"non-existing-suite",
NULL, /* NULL tcase name. */
CK_VERBOSE);
ck_assert_msg (!(test_tc11_executed
|| test_tc12_executed
|| test_tc21_executed),
"An unexpected test was executed.");
reset_executed ();
}
END_TEST
START_TEST(test_srunner_run_tcase)
{
/* This test makes the srunner_run function to run an specific
existing test case. */
srunner_run (sr,
NULL, /* NULL suite name. */
"tcase12",
CK_VERBOSE);
ck_assert_msg (!test_tc11_executed
&& test_tc12_executed
&& !test_tc21_executed,
"Expected tests were not executed.");
reset_executed ();
}
END_TEST
START_TEST(test_srunner_no_tcase)
{
/* This test makes the srunner_run function to run a non-existant
test case. */
srunner_run (sr,
NULL, /* NULL suite name. */
"non-existant-test-case",
CK_VERBOSE);
ck_assert_msg (!(test_tc11_executed
|| test_tc12_executed
|| test_tc21_executed),
"An unexpected test was executed.");
reset_executed ();
}
END_TEST
START_TEST(test_srunner_suite_tcase)
{
/* This test makes the srunner_run function to run a specific test
case of a specific test suite. */
srunner_run (sr,
"suite2",
"tcase21",
CK_VERBOSE);
ck_assert_msg (!test_tc11_executed
&& !test_tc12_executed
&& test_tc21_executed,
"Expected tests were not executed.");
reset_executed ();
}
END_TEST
START_TEST(test_srunner_suite_no_tcase)
{
/* This test makes the srunner_run function to run a non existant
test case of a specific test suite. */
srunner_run (sr,
"suite1",
"non-existant-test-case",
CK_VERBOSE);
ck_assert_msg (!(test_tc11_executed
|| test_tc12_executed
|| test_tc21_executed),
"An unexpected test was executed.");
reset_executed ();
}
END_TEST
#if HAVE_DECL_SETENV
START_TEST(test_srunner_run_suite_env)
{
/* This test makes the srunner_run_all function to run all the test
cases of a existing suite. */
setenv ("CK_RUN_SUITE", "suite1", 1);
srunner_run_all (sr, CK_VERBOSE);
ck_assert_msg (test_tc11_executed
&& test_tc12_executed
&& !test_tc21_executed,
"Expected tests were not executed.");
reset_executed ();
unsetenv ("CK_RUN_SUITE");
}
END_TEST
START_TEST(test_srunner_run_no_suite_env)
{
/* This test makes the srunner_run_all function to run all the test
cases of a non-existing suite. */
setenv ("CK_RUN_SUITE", "non-existing-suite", 1);
srunner_run_all (sr, CK_VERBOSE);
ck_assert_msg (!(test_tc11_executed
|| test_tc12_executed
|| test_tc21_executed),
"An unexpected test was executed.");
reset_executed ();
unsetenv ("CK_RUN_SUITE");
}
END_TEST
START_TEST(test_srunner_run_tcase_env)
{
/* This test makes the srunner_run_all function to run an specific
existing test case. */
setenv ("CK_RUN_CASE", "tcase12", 1);
srunner_run_all (sr, CK_VERBOSE);
ck_assert_msg (!test_tc11_executed
&& test_tc12_executed
&& !test_tc21_executed,
"Expected tests were not executed.");
reset_executed ();
unsetenv ("CK_RUN_CASE");
}
END_TEST
START_TEST(test_srunner_no_tcase_env)
{
/* This test makes the srunner_run_all function to run a
non-existant test case. */
setenv ("CK_RUN_CASE", "non-existant-test-case", 1);
srunner_run_all (sr, CK_VERBOSE);
ck_assert_msg (!(test_tc11_executed
|| test_tc12_executed
|| test_tc21_executed),
"An unexpected test was executed.");
reset_executed ();
unsetenv ("CK_RUN_CASE");
}
END_TEST
START_TEST(test_srunner_suite_tcase_env)
{
/* This test makes the srunner_run_all function to run a specific test
case of a specific test suite. */
setenv ("CK_RUN_SUITE", "suite2", 1);
setenv ("CK_RUN_CASE", "tcase21", 1);
srunner_run_all (sr, CK_VERBOSE);
ck_assert_msg (!test_tc11_executed
&& !test_tc12_executed
&& test_tc21_executed,
"Expected tests were not executed.");
reset_executed ();
unsetenv ("CK_RUN_SUITE");
unsetenv ("CK_RUN_CASE");
}
END_TEST
START_TEST(test_srunner_suite_no_tcase_env)
{
/* This test makes the srunner_run_all function to run a non
existant test case of a specific test suite. */
setenv ("CK_RUN_SUITE", "suite1", 1);
setenv ("CK_RUN_CASE", "non-existant-test-case", 1);
srunner_run_all (sr, CK_VERBOSE);
ck_assert_msg (!(test_tc11_executed
|| test_tc12_executed
|| test_tc21_executed),
"An unexpected test was executed.");
reset_executed ();
unsetenv ("CK_RUN_SUITE");
unsetenv ("CK_RUN_CASE");
}
END_TEST
#endif /* HAVE_DECL_SETENV */
Suite *make_selective_suite (void)
{
Suite *s = suite_create ("SelectiveTesting");
TCase *tc = tcase_create ("Core");
suite_add_tcase (s, tc);
tcase_add_test (tc, test_srunner_run_run_all);
tcase_add_test (tc, test_srunner_run_suite);
tcase_add_test (tc, test_srunner_run_no_suite);
tcase_add_test (tc, test_srunner_run_tcase);
tcase_add_test (tc, test_srunner_no_tcase);
tcase_add_test (tc, test_srunner_suite_tcase);
tcase_add_test (tc, test_srunner_suite_no_tcase);
#if HAVE_DECL_SETENV
tcase_add_test (tc, test_srunner_run_suite_env);
tcase_add_test (tc, test_srunner_run_no_suite_env);
tcase_add_test (tc, test_srunner_run_tcase_env);
tcase_add_test (tc, test_srunner_no_tcase_env);
tcase_add_test (tc, test_srunner_suite_tcase_env);
tcase_add_test (tc, test_srunner_suite_no_tcase_env);
#endif /* HAVE_DECL_SETENV */
tcase_add_unchecked_fixture (tc,
selective_setup,
selective_teardown);
return s;
}