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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
|
/* Copyright (c) 2007-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "test-common.h"
#include <stdio.h>
#include <setjmp.h> /* for fatal tests */
static bool test_deinit_lib;
/* To test the firing of i_assert, we need non-local jumps, i.e. setjmp */
static volatile bool expecting_fatal = FALSE;
static jmp_buf fatal_jmpbuf;
#define OUT_NAME_ALIGN 70
static char *test_prefix;
static bool test_success;
static unsigned int failure_count;
static unsigned int total_count;
static unsigned int expected_errors;
static char *expected_error_str, *expected_fatal_str;
static test_fatal_callback_t *test_fatal_callback;
static void *test_fatal_context;
void test_begin(const char *name)
{
test_success = TRUE;
expected_errors = 0;
if (!expecting_fatal)
i_assert(test_prefix == NULL);
else
test_assert((test_success = (test_prefix == NULL)));
test_prefix = i_strdup(name);
}
bool test_has_failed(void)
{
return !test_success;
}
void test_assert_failed(const char *code, const char *file, unsigned int line)
{
printf("%s:%u: Assert failed: %s\n", file, line, code);
fflush(stdout);
test_success = FALSE;
#ifdef STATIC_CHECKER
i_unreached();
#endif
}
void test_assert_failed_idx(const char *code, const char *file, unsigned int line, long long i)
{
printf("%s:%u: Assert(#%lld) failed: %s\n", file, line, i, code);
fflush(stdout);
test_success = FALSE;
#ifdef STATIC_CHECKER
i_unreached();
#endif
}
void test_assert_failed_strcmp_idx(const char *code, const char *file, unsigned int line,
const char * src, const char * dst, long long i)
{
printf("%s:%u: Assert", file, line);
if (i == LLONG_MIN)
printf(" failed: %s\n", code);
else
printf("(#%lld) failed: %s\n", i, code);
if (src != NULL)
printf(" \"%s\" != ", src);
else
printf(" NULL != ");
if (dst != NULL)
printf("\"%s\"\n", dst);
else
printf("NULL\n");
fflush(stdout);
test_success = FALSE;
#ifdef STATIC_CHECKER
i_unreached();
#endif
}
void test_assert_failed_cmp_intmax_idx(const char *code, const char *file,
unsigned int line,
intmax_t src, intmax_t dst,
const char *op, long long i)
{
printf("%s:%u: Assert", file, line);
if (i == LLONG_MIN)
printf(" failed: %s\n", code);
else
printf("(#%lld) failed: %s\n", i, code);
printf(" %jd %s %jd is not true\n", src, op, dst);
fflush(stdout);
test_success = FALSE;
#ifdef STATIC_CHECKER
i_unreached();
#endif
}
void test_assert_failed_ucmp_intmax_idx(const char *code, const char *file,
unsigned int line,
uintmax_t src, uintmax_t dst,
const char *op, long long i)
{
printf("%s:%u: Assert", file, line);
if (i == LLONG_MIN)
printf(" failed: %s\n", code);
else
printf("(#%lld) failed: %s\n", i, code);
printf(" %ju %s %ju is not true\n", src, op, dst);
fflush(stdout);
test_success = FALSE;
#ifdef STATIC_CHECKER
i_unreached();
#endif
}
#ifdef DEBUG
#include "randgen.h"
static void
test_dump_rand_state(void)
{
static int64_t seen_seed = -1;
unsigned int seed;
if (rand_get_last_seed(&seed) < 0) {
if (seen_seed == -1) {
printf("test: random sequence not reproduceable, use DOVECOT_SRAND=kiss\n");
seen_seed = -2;
}
return;
}
if (seed == seen_seed)
return;
seen_seed = seed;
printf("test: DOVECOT_SRAND random seed was %u\n", seed);
}
#else
static inline void test_dump_rand_state(void) { }
#endif
void test_end(void)
{
if (!expecting_fatal)
i_assert(test_prefix != NULL);
else
test_assert(test_prefix != NULL);
test_out("", test_success);
if (!test_success)
test_dump_rand_state();
i_free_and_null(test_prefix);
test_success = FALSE;
}
void test_out(const char *name, bool success)
{
test_out_reason(name, success, NULL);
}
void test_out_quiet(const char *name, bool success)
{
if (success) {
total_count++;
return;
}
test_out(name, success);
}
void test_out_reason(const char *name, bool success, const char *reason)
{
int i = 0;
if (test_prefix != NULL) {
fputs(test_prefix, stdout);
i += strlen(test_prefix);
if (*name != '\0') {
putchar(':');
i++;
}
putchar(' ');
i++;
}
if (*name != '\0') {
fputs(name, stdout);
putchar(' ');
i += strlen(name) + 1;
}
for (; i < OUT_NAME_ALIGN; i++)
putchar('.');
fputs(" : ", stdout);
if (success)
fputs("ok", stdout);
else {
fputs("FAILED", stdout);
test_success = FALSE;
failure_count++;
}
if (reason != NULL && *reason != '\0')
printf(": %s", reason);
putchar('\n');
fflush(stdout);
total_count++;
}
void
test_expect_error_string_n_times(const char *substr, unsigned int times)
{
i_assert(expected_errors == 0);
expected_errors = times;
expected_error_str = i_strdup(substr);
}
void
test_expect_error_string(const char *substr)
{
test_expect_error_string_n_times(substr, 1);
}
void
test_expect_errors(unsigned int expected)
{
i_assert(expected_errors == 0);
expected_errors = expected;
}
void
test_expect_no_more_errors(void)
{
test_assert(expected_errors == 0 && expected_error_str == NULL);
i_free_and_null(expected_error_str);
expected_errors = 0;
}
static bool ATTR_FORMAT(2, 0)
expect_error_check(char **error_strp, const char *format, va_list args)
{
if (*error_strp == NULL)
return TRUE;
bool suppress;
T_BEGIN {
/* test_assert() will reset test_success if need be. */
const char *str = t_strdup_vprintf(format, args);
suppress = strstr(str, *error_strp) != NULL;
test_assert(suppress == TRUE);
i_free_and_null(*error_strp);
} T_END;
return suppress;
}
static void ATTR_FORMAT(2, 0)
test_error_handler(const struct failure_context *ctx,
const char *format, va_list args)
{
bool suppress = FALSE;
if (expected_errors > 0) {
va_list args2;
VA_COPY(args2, args);
suppress = expect_error_check(&expected_error_str, format, args2);
expected_errors--;
va_end(args2);
} else {
test_success = FALSE;
}
if (!suppress) {
test_dump_rand_state();
default_error_handler(ctx, format, args);
}
}
void test_expect_fatal_string(const char *substr)
{
i_free(expected_fatal_str);
expected_fatal_str = i_strdup(substr);
}
#undef test_fatal_set_callback
void test_fatal_set_callback(test_fatal_callback_t *callback, void *context)
{
i_assert(test_fatal_callback == NULL);
test_fatal_callback = callback;
test_fatal_context = context;
}
static void ATTR_FORMAT(2, 0) ATTR_NORETURN
test_fatal_handler(const struct failure_context *ctx,
const char *format, va_list args)
{
/* Prevent recursion, we can't handle our own errors */
i_set_fatal_handler(default_fatal_handler);
i_assert(expecting_fatal); /* if not at the right time, bail */
va_list args2;
VA_COPY(args2, args);
bool suppress = expect_error_check(&expected_fatal_str, format, args2);
va_end(args);
if (suppress) {
if (test_fatal_callback != NULL) {
test_fatal_callback(test_fatal_context);
test_fatal_callback = NULL;
test_fatal_context = NULL;
}
i_set_fatal_handler(test_fatal_handler);
longjmp(fatal_jmpbuf, 1);
} else {
default_fatal_handler(ctx, format, args);
}
i_unreached(); /* we simply can't get here */
}
static void test_init(void)
{
test_prefix = NULL;
failure_count = 0;
total_count = 0;
if (!lib_is_initialized()) {
lib_init();
test_deinit_lib = TRUE;
} else
test_deinit_lib = FALSE;
i_set_error_handler(test_error_handler);
/* Don't set fatal handler until actually needed for fatal testing */
}
static int test_deinit(void)
{
i_assert(test_prefix == NULL);
printf("%u / %u tests failed\n", failure_count, total_count);
if (test_deinit_lib)
lib_deinit();
return failure_count == 0 ? 0 : 1;
}
static void test_run_funcs(void (*const test_functions[])(void))
{
unsigned int i;
for (i = 0; test_functions[i] != NULL; i++) {
T_BEGIN {
test_functions[i]();
} T_END;
}
}
static void test_run_named_funcs(const struct named_test tests[],
const char *match)
{
unsigned int i;
for (i = 0; tests[i].func != NULL; i++) {
if (strstr(tests[i].name, match) != NULL) T_BEGIN {
tests[i].func();
} T_END;
}
}
static void run_one_fatal(test_fatal_func_t *fatal_function)
{
static unsigned int index = 0;
for (;;) {
volatile int jumped = setjmp(fatal_jmpbuf);
if (jumped == 0) {
/* normal flow */
expecting_fatal = TRUE;
enum fatal_test_state ret = fatal_function(index);
expecting_fatal = FALSE;
if (ret == FATAL_TEST_FINISHED) {
/* ran out of tests - good */
index = 0;
break;
} else if (ret == FATAL_TEST_FAILURE) {
/* failed to fire assert - bad, but can continue */
test_success = FALSE;
i_error("Desired assert failed to fire at step %i", index);
index++;
} else { /* FATAL_TEST_ABORT or other value */
test_success = FALSE;
test_end();
index = 0;
break;
}
} else {
/* assert fired, continue with next test */
index++;
}
}
}
static void test_run_fatals(test_fatal_func_t *const fatal_functions[])
{
unsigned int i;
for (i = 0; fatal_functions[i] != NULL; i++) {
T_BEGIN {
run_one_fatal(fatal_functions[i]);
} T_END;
}
}
static void test_run_named_fatals(const struct named_fatal fatals[], const char *match)
{
unsigned int i;
for (i = 0; fatals[i].func != NULL; i++) {
if (strstr(fatals[i].name, match) != NULL) T_BEGIN {
run_one_fatal(fatals[i].func);
} T_END;
}
}
int test_run(void (*const test_functions[])(void))
{
test_init();
test_run_funcs(test_functions);
return test_deinit();
}
int test_run_named(const struct named_test tests[], const char *match)
{
test_init();
test_run_named_funcs(tests, match);
return test_deinit();
}
int test_run_with_fatals(void (*const test_functions[])(void),
test_fatal_func_t *const fatal_functions[])
{
test_init();
test_run_funcs(test_functions);
i_set_fatal_handler(test_fatal_handler);
test_run_fatals(fatal_functions);
return test_deinit();
}
int test_run_named_with_fatals(const char *match, const struct named_test tests[],
const struct named_fatal fatals[])
{
test_init();
test_run_named_funcs(tests, match);
i_set_fatal_handler(test_fatal_handler);
test_run_named_fatals(fatals, match);
return test_deinit();
}
void test_forked_end(void)
{
i_set_error_handler(default_error_handler);
i_set_fatal_handler(default_fatal_handler);
i_free_and_null(expected_error_str);
i_free_and_null(expected_fatal_str);
i_free_and_null(test_prefix);
t_pop_last_unsafe(); /* as we were within a T_BEGIN { tests[i].func(); } T_END */
}
void ATTR_NORETURN
test_exit(int status)
{
i_free_and_null(expected_error_str);
i_free_and_null(expected_fatal_str);
i_free_and_null(test_prefix);
t_pop_last_unsafe(); /* as we were within a T_BEGIN { tests[i].func(); } T_END */
lib_deinit();
lib_exit(status);
}
|