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