2 * Copyright (C) 2006-2009 Brian Aker
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
10 Structures for generic tests.
21 #if !defined(__cplusplus)
25 typedef struct world_st world_st
;
26 typedef struct collection_st collection_st
;
27 typedef struct test_st test_st
;
30 TEST_SUCCESS
= 0, /* Backwards compatibility */
32 TEST_MEMORY_ALLOCATION_FAILURE
,
34 TEST_MAXIMUM_RETURN
/* Always add new error code before */
37 typedef void *(*test_callback_create_fn
)(test_return_t
*error
);
38 typedef test_return_t (*test_callback_fn
)(void *);
39 typedef test_return_t (*test_callback_runner_fn
)(test_callback_fn
, void *);
40 typedef test_return_t (*test_callback_error_fn
)(test_return_t
, void *);
42 /* Help function for use with gettimeofday() */
43 long int timedif(struct timeval a
, struct timeval b
);
46 A structure describing the test case.
51 test_callback_fn test_fn
;
56 A structure which describes a collection of test cases.
58 struct collection_st
{
61 test_callback_fn post
;
67 Structure which houses the actual callers for the test cases contained in
71 test_callback_runner_fn pre
;
72 test_callback_runner_fn run
;
73 test_callback_runner_fn post
;
78 world_st is the structure which is passed to the test implementation to be filled.
79 This must be implemented in order for the test framework to load the tests. We call
80 get_world() in order to fill this structure.
84 collection_st
*collections
;
86 /* These methods are called outside of any collection call. */
87 test_callback_create_fn create
;
88 test_callback_fn destroy
;
91 /* This is called a the beginning of any test run. */
92 test_callback_fn startup
;
94 /* This called on a test if the test requires a flush call (the bool is from test_st) */
95 test_callback_fn flush
;
98 These are run before/after the test. If implemented. Their execution is not controlled
101 test_callback_fn pre_run
;
102 test_callback_fn post_run
;
105 If an error occurs during the test, this is called.
107 test_callback_error_fn on_error
;
111 /* This is called a the beginning of any collection run. */
112 test_callback_fn startup
;
114 /* This is called at the end of any collection run. */
115 test_callback_fn shutdown
;
120 Runner represents the callers for the tests. If not implemented we will use
121 a set of default implementations.
123 world_runner_st
*runner
;
129 @note world_stats_st is a simple structure for tracking test successes.
132 uint32_t collection_success
;
133 uint32_t collection_skipped
;
134 uint32_t collection_failed
;
135 uint32_t collection_total
;
142 /* How we make all of this work :) */
143 void get_world(world_st
*world
);
145 void create_core(void);
148 @note Friendly print function for errors.
150 const char *test_strerror(test_return_t code
);
152 #define test_fail(A) \
156 fprintf(stderr, "\nFailed in %s:%d: %s\n", __FILE__, __LINE__, #A);\
158 return TEST_FAILURE; \
162 #define test_true(A) \
166 fprintf(stderr, "\nAssertion failed in %s:%d: %s\n", __FILE__, __LINE__, #A);\
168 return TEST_FAILURE; \
172 #define test_false(A) \
176 fprintf(stderr, "\nAssertion failed in %s:%d: %s\n", __FILE__, __LINE__, #A);\
178 return TEST_FAILURE; \
182 #define test_strcmp(A,B) \
185 if (strcmp((A), (B))) \
187 fprintf(stderr, "\n%s:%d: %s -> %s\n", __FILE__, __LINE__, (A), (B)); \
189 return TEST_FAILURE; \