File: testutils.h

package info (click to toggle)
amanda 1%3A3.5.1-11%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 30,960 kB
  • sloc: ansic: 265,797; perl: 114,269; xml: 16,058; sh: 8,667; makefile: 2,793; awk: 502; lex: 407; yacc: 347; javascript: 135; tcl: 118; sql: 19; sed: 16; php: 2
file content (86 lines) | stat: -rw-r--r-- 2,319 bytes parent folder | download | duplicates (3)
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
/*
 * Copyright (c) 2008-2012 Zmanda, Inc.  All Rights Reserved.
 * Copyright (c) 2013-2016 Carbonite, Inc.  All Rights Reserved.
 *
 * 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.,
 * 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 * Contact information: Carbonite Inc., 756 N Pastoria Ave
 * Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
 */

#ifndef TESTUTILS_H
#define TESTUTILS_H

/*
 * A library of utilities for writing 'make check'-based tests.
 *
 * Use this module like this:
 *   int test_one(void) {
 *	...
 *	tu_dbg("yep, worked: %p", someptr);
 *	...
 *	return TRUE;
 *   }
 *
 *   int main(int argc, char **argv)
 *   {
 *	TestUtilsTest tests[] = {
 *	    TU_TEST(test_one, 5),
 *	    TU_TEST(test_two, 6),
 *	    ...
 *	    TU_END()
 *	}
 *
 *	return testutils_run_tests(argc, argv, tests);
 *   }
 */

/*
 * Defining tests
 */

/* A test function, returning a boolean */
typedef int (*TestFunction)(void);

/* A struct for test functions */
typedef struct TestUtilsTest {
    TestFunction fn;
    char *name;
    int timeout;
    int selected;
} TestUtilsTest;

/* Macro to define a test array element */
#define TU_TEST(fn, to) { fn, #fn, to, FALSE }
#define TU_END() { NULL, NULL, 0, FALSE }

/*
 * Debugging
 */

/* Debugging macro taking printf arguments.  This is only enabled if the '-d' flag
 * is given on the commandline.  You can use g_debug, too, if you'd prefer. */
#define tu_dbg(...) if (tu_debugging_enabled) { g_fprintf(stderr, __VA_ARGS__); }

/* Is debugging enabled for this test run? (set internally) */
extern gboolean tu_debugging_enabled;

/*
 * Main loop
 */

int testutils_run_tests(int argc, char **argv, TestUtilsTest *tests);

#endif /* TESTUTILS_H */