c8a8d09a24aab6b46575fa386b333eb67c6aff09
[kai/samba-autobuild/.git] / source4 / torture / ui.h
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB torture UI functions
4
5    Copyright (C) Jelmer Vernooij 2006
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #ifndef __TORTURE_UI_H__
23 #define __TORTURE_UI_H__
24
25 struct torture_test;
26 struct torture_context;
27 struct torture_suite;
28 struct torture_tcase;
29
30 enum torture_result { 
31         TORTURE_OK=0, 
32         TORTURE_FAIL=1, 
33         TORTURE_SKIP=2
34 };
35
36 /* 
37  * These callbacks should be implemented by any backend that wishes 
38  * to listen to reports from the torture tests.
39  */
40 struct torture_ui_ops
41 {
42         void (*comment) (struct torture_context *, const char *);
43         void (*suite_start) (struct torture_context *, struct torture_suite *);
44         void (*suite_finish) (struct torture_context *, struct torture_suite *);
45         void (*tcase_start) (struct torture_context *, struct torture_tcase *); 
46         void (*tcase_finish) (struct torture_context *, struct torture_tcase *);
47         void (*test_start) (struct torture_context *, 
48                                                 struct torture_tcase *,
49                                                 struct torture_test *);
50         void (*test_result) (struct torture_context *, 
51                                                  enum torture_result, const char *reason);
52 };
53
54 void torture_ui_test_start(struct torture_context *context,
55                                                            struct torture_tcase *tcase,
56                                                            struct torture_test *test);
57
58 void torture_ui_test_result(struct torture_context *context,
59                                                                 enum torture_result result,
60                                                                 const char *comment);
61
62 /*
63  * Holds information about a specific run of the testsuite. 
64  * The data in this structure should be considered private to 
65  * the torture tests and should only be used directly by the torture 
66  * code and the ui backends.
67  *
68  * Torture tests should instead call the torture_*() macros and functions 
69  * specified below.
70  */
71
72 struct torture_context
73 {
74         const struct torture_ui_ops *ui_ops;
75         void *ui_data;
76
77         struct torture_test *active_test;
78         struct torture_tcase *active_tcase;
79
80         int skipped;
81         int todo;
82         int success;
83         int failed;
84
85         bool quiet; /* Whether tests should avoid writing output to stdout */
86
87         enum torture_result last_result;
88         char *last_reason;
89
90         char *outputdir;
91         int level;
92 };
93
94 /* 
95  * Describes a particular torture test
96  */
97 struct torture_test {
98         const char *name;
99         const char *description;
100         bool dangerous;
101         /* Function to call to run this test */
102         bool (*run) (struct torture_context *torture_ctx, 
103                                  struct torture_tcase *tcase,
104                                  struct torture_test *test);
105
106         struct torture_test *prev, *next;
107
108         /* Pointer to the actual test function. This is run by the 
109          * run() function above. */
110         void *fn;
111         const void *data;
112 };
113
114 /* 
115  * Describes a particular test case.
116  */
117 struct torture_tcase {
118     const char *name;
119         const char *description;
120         bool (*setup) (struct torture_context *tcase, void **data);
121         bool (*teardown) (struct torture_context *tcase, void *data); 
122         bool fixture_persistent;
123         void *data;
124         struct torture_test *tests;
125         struct torture_tcase *prev, *next;
126 };
127
128 struct torture_suite
129 {
130         const char *name;
131         const char *path; /* Used by subunit tests only */
132         const char *description;
133         struct torture_tcase *testcases;
134         struct torture_suite *children;
135
136         /* Pointers to siblings of this torture suite */
137         struct torture_suite *prev, *next;
138 };
139
140 /** Create a new torture suite */
141 struct torture_suite *torture_suite_create(TALLOC_CTX *mem_ctx, 
142                                                                                    const char *name);
143
144 /** Change the setup and teardown functions for a testcase */
145 void torture_tcase_set_fixture(struct torture_tcase *tcase, 
146                 bool (*setup) (struct torture_context *, void **),
147                 bool (*teardown) (struct torture_context *, void *));
148
149 /* Add another test to run for a particular testcase */
150 struct torture_test *torture_tcase_add_test(struct torture_tcase *tcase, 
151                 const char *name, 
152                 bool (*run) (struct torture_context *test, const void *tcase_data,
153                                          const void *test_data),
154                 const void *test_data);
155
156 /* Add a testcase to a testsuite */
157 struct torture_tcase *torture_suite_add_tcase(struct torture_suite *suite, 
158                                                          const char *name);
159
160 /* Convenience wrapper that adds a testcase against only one 
161  * test will be run */
162 struct torture_tcase *torture_suite_add_simple_tcase(
163                 struct torture_suite *suite, 
164                 const char *name,
165                 bool (*run) (struct torture_context *test, const void *test_data),
166                 const void *data);
167
168 /* Convenience wrapper that adds a test that doesn't need any 
169  * testcase data */
170 struct torture_tcase *torture_suite_add_simple_test(
171                 struct torture_suite *suite, 
172                 const char *name,
173                 bool (*run) (struct torture_context *test));
174
175 /* Add a child testsuite to an existing testsuite */
176 bool torture_suite_add_suite(struct torture_suite *suite,
177                                                          struct torture_suite *child);
178
179 /* Run the specified testsuite recursively */
180 bool torture_run_suite(struct torture_context *context, 
181                                            struct torture_suite *suite);
182
183 /* Run the specified testcase */
184 bool torture_run_tcase(struct torture_context *context, 
185                                            struct torture_tcase *tcase);
186
187 /* Run the specified test */
188 bool torture_run_test(struct torture_context *context, 
189                                           struct torture_tcase *tcase,
190                                           struct torture_test *test);
191
192 void torture_comment(struct torture_context *test, const char *comment, ...) PRINTF_ATTRIBUTE(2,3);
193 void torture_result(struct torture_context *test, 
194                         enum torture_result, const char *reason, ...) PRINTF_ATTRIBUTE(3,4);
195
196 #define torture_assert(torture_ctx,expr,cmt) \
197         if (!(expr)) { \
198                 torture_result(torture_ctx, TORTURE_FAIL, __location__": Expression `%s' failed: %s", __STRING(expr), cmt); \
199                 return false; \
200         }
201
202 #define torture_assert_werr_equal(torture_ctx, got, expected, cmt) \
203         do { WERROR __got = got, __expected = expected; \
204         if (!W_ERROR_EQUAL(__got, __expected)) { \
205                 torture_result(torture_ctx, TORTURE_FAIL, __location__": "#got" was %s, expected %s: %s", win_errstr(__got), win_errstr(__expected), cmt); \
206                 return false; \
207         } \
208         } while (0)
209
210 #define torture_assert_ntstatus_equal(torture_ctx,got,expected,cmt) \
211         do { NTSTATUS __got = got, __expected = expected; \
212         if (!NT_STATUS_EQUAL(__got, __expected)) { \
213                 torture_result(torture_ctx, TORTURE_FAIL, __location__": "#got" was %s, expected %s: %s", nt_errstr(__got), nt_errstr(__expected), cmt); \
214                 return false; \
215         }\
216         } while(0)
217
218
219 #define torture_assert_casestr_equal(torture_ctx,got,expected,cmt) \
220         do { const char *__got = (got), *__expected = (expected); \
221         if (!strequal(__got, __expected)) { \
222                 torture_result(torture_ctx, TORTURE_FAIL, __location__": "#got" was %s, expected %s: %s", __got, __expected, cmt); \
223                 return false; \
224         } \
225         } while(0)
226
227 #define torture_assert_str_equal(torture_ctx,got,expected,cmt)\
228         do { const char *__got = (got), *__expected = (expected); \
229         if (strcmp_safe(__got, __expected) != 0) { \
230                 torture_result(torture_ctx, TORTURE_FAIL, \
231                                            __location__": "#got" was %s, expected %s: %s", \
232                                            __got, __expected, cmt); \
233                 return false; \
234         } \
235         } while(0)
236
237 #define torture_assert_int_equal(torture_ctx,got,expected,cmt)\
238         do { int __got = (got), __expected = (expected); \
239         if (__got != __expected) { \
240                 torture_result(torture_ctx, TORTURE_FAIL, \
241                                          __location__": "#got" was %d, expected %d: %s", \
242                                            __got, __expected, cmt); \
243                 return false; \
244         } \
245         } while(0)
246
247 #define torture_assert_errno_equal(torture_ctx,expected,cmt)\
248         do { int __expected = (expected); \
249         if (errno != __expected) { \
250                 torture_result(torture_ctx, TORTURE_FAIL, \
251                         __location__": errno was %d (%s), expected %d: %s: %s", \
252                                            errno, strerror(errno), __expected, \
253                                            strerror(__expected), cmt); \
254                 return false; \
255         } \
256         } while(0)
257
258
259
260 #define torture_skip(torture_ctx,cmt) do {\
261                 torture_result(torture_ctx, TORTURE_SKIP, __location__": %s", cmt);\
262                 return true; \
263         } while(0)
264 #define torture_fail(torture_ctx,cmt) do {\
265                 torture_result(torture_ctx, TORTURE_FAIL, __location__": %s", cmt);\
266                 return false; \
267         } while (0)
268
269 #define torture_out stderr
270
271 /* Convenience macros */
272 #define torture_assert_ntstatus_ok(torture_ctx,expr,cmt) \
273                 torture_assert_ntstatus_equal(torture_ctx,expr,NT_STATUS_OK,cmt)
274
275 #define torture_assert_werr_ok(torture_ctx,expr,cmt) \
276                 torture_assert_werr_equal(torture_ctx,expr,WERR_OK,cmt)
277
278 /* Getting settings */
279 const char *torture_setting_string(struct torture_context *test, \
280                                                                    const char *name, 
281                                                                    const char *default_value);
282
283 int torture_setting_int(struct torture_context *test, 
284                                                 const char *name, 
285                                                 int default_value);
286
287 bool torture_setting_bool(struct torture_context *test, 
288                                                   const char *name, 
289                                                   bool default_value);
290
291 struct torture_suite *torture_find_suite(struct torture_suite *parent, 
292                                                                                  const char *name);
293
294
295 #endif /* __TORTURE_UI_H__ */