ldb: fix the standalone build
[Samba/ekacnet.git] / source4 / torture / ui.h
blob503a4f4decd6b65c73fc5de1ffd6ee4ff30a2839
1 /*
2 Unix SMB/CIFS implementation.
3 SMB torture UI functions
5 Copyright (C) Jelmer Vernooij 2006
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #ifndef __TORTURE_UI_H__
22 #define __TORTURE_UI_H__
24 struct torture_test;
25 struct torture_context;
26 struct torture_suite;
27 struct torture_tcase;
29 enum torture_result {
30 TORTURE_OK=0,
31 TORTURE_FAIL=1,
32 TORTURE_ERROR=2,
33 TORTURE_SKIP=3
36 /*
37 * These callbacks should be implemented by any backend that wishes
38 * to listen to reports from the torture tests.
40 struct torture_ui_ops
42 void (*init) (struct torture_context *);
43 void (*comment) (struct torture_context *, const char *);
44 void (*warning) (struct torture_context *, const char *);
45 void (*suite_start) (struct torture_context *, struct torture_suite *);
46 void (*suite_finish) (struct torture_context *, struct torture_suite *);
47 void (*tcase_start) (struct torture_context *, struct torture_tcase *);
48 void (*tcase_finish) (struct torture_context *, struct torture_tcase *);
49 void (*test_start) (struct torture_context *,
50 struct torture_tcase *,
51 struct torture_test *);
52 void (*test_result) (struct torture_context *,
53 enum torture_result, const char *reason);
56 void torture_ui_test_start(struct torture_context *context,
57 struct torture_tcase *tcase,
58 struct torture_test *test);
60 void torture_ui_test_result(struct torture_context *context,
61 enum torture_result result,
62 const char *comment);
65 * Holds information about a specific run of the testsuite.
66 * The data in this structure should be considered private to
67 * the torture tests and should only be used directly by the torture
68 * code and the ui backends.
70 * Torture tests should instead call the torture_*() macros and functions
71 * specified below.
74 struct torture_context
76 const struct torture_ui_ops *ui_ops;
77 void *ui_data;
79 char *active_testname;
80 struct torture_test *active_test;
81 struct torture_tcase *active_tcase;
83 bool quiet; /* Whether tests should avoid writing output to stdout */
85 enum torture_result last_result;
86 char *last_reason;
88 bool returncode;
90 const char *outputdir;
91 int level;
92 struct event_context *ev;
94 struct loadparm_context *lp_ctx;
97 /*
98 * Describes a particular torture test
100 struct torture_test {
101 const char *name;
102 const char *description;
103 bool dangerous;
104 /* Function to call to run this test */
105 bool (*run) (struct torture_context *torture_ctx,
106 struct torture_tcase *tcase,
107 struct torture_test *test);
109 struct torture_test *prev, *next;
111 /* Pointer to the actual test function. This is run by the
112 * run() function above. */
113 void *fn;
114 const void *data;
118 * Describes a particular test case.
120 struct torture_tcase {
121 const char *name;
122 const char *description;
123 bool (*setup) (struct torture_context *tcase, void **data);
124 bool (*teardown) (struct torture_context *tcase, void *data);
125 bool fixture_persistent;
126 void *data;
127 struct torture_test *tests;
128 struct torture_tcase *prev, *next;
131 struct torture_suite
133 const char *name;
134 const char *description;
135 struct torture_tcase *testcases;
136 struct torture_suite *children;
138 /* Pointers to siblings of this torture suite */
139 struct torture_suite *prev, *next;
142 /** Create a new torture suite */
143 struct torture_suite *torture_suite_create(TALLOC_CTX *mem_ctx,
144 const char *name);
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 *));
151 /* Add another test to run for a particular testcase */
152 struct torture_test *torture_tcase_add_test_const(struct torture_tcase *tcase,
153 const char *name,
154 bool (*run) (struct torture_context *test,
155 const void *tcase_data, const void *test_data),
156 const void *test_data);
158 /* Add a testcase to a testsuite */
159 struct torture_tcase *torture_suite_add_tcase(struct torture_suite *suite,
160 const char *name);
162 /* Convenience wrapper that adds a testcase against only one
163 * test will be run */
164 struct torture_tcase *torture_suite_add_simple_tcase_const(
165 struct torture_suite *suite,
166 const char *name,
167 bool (*run) (struct torture_context *test,
168 const void *test_data),
169 const void *data);
171 /* Convenience function that adds a test which only
172 * gets the test case data */
173 struct torture_test *torture_tcase_add_simple_test_const(
174 struct torture_tcase *tcase,
175 const char *name,
176 bool (*run) (struct torture_context *test,
177 const void *tcase_data));
179 /* Convenience wrapper that adds a test that doesn't need any
180 * testcase data */
181 struct torture_tcase *torture_suite_add_simple_test(
182 struct torture_suite *suite,
183 const char *name,
184 bool (*run) (struct torture_context *test));
186 /* Add a child testsuite to an existing testsuite */
187 bool torture_suite_add_suite(struct torture_suite *suite,
188 struct torture_suite *child);
190 /* Run the specified testsuite recursively */
191 bool torture_run_suite(struct torture_context *context,
192 struct torture_suite *suite);
194 /* Run the specified testcase */
195 bool torture_run_tcase(struct torture_context *context,
196 struct torture_tcase *tcase);
198 /* Run the specified test */
199 bool torture_run_test(struct torture_context *context,
200 struct torture_tcase *tcase,
201 struct torture_test *test);
203 void torture_comment(struct torture_context *test, const char *comment, ...) PRINTF_ATTRIBUTE(2,3);
204 void torture_warning(struct torture_context *test, const char *comment, ...) PRINTF_ATTRIBUTE(2,3);
205 void torture_result(struct torture_context *test,
206 enum torture_result, const char *reason, ...) PRINTF_ATTRIBUTE(3,4);
208 #define torture_assert(torture_ctx,expr,cmt) \
209 if (!(expr)) { \
210 torture_result(torture_ctx, TORTURE_FAIL, __location__": Expression `%s' failed: %s", __STRING(expr), cmt); \
211 return false; \
214 #define torture_assert_werr_equal(torture_ctx, got, expected, cmt) \
215 do { WERROR __got = got, __expected = expected; \
216 if (!W_ERROR_EQUAL(__got, __expected)) { \
217 torture_result(torture_ctx, TORTURE_FAIL, __location__": "#got" was %s, expected %s: %s", win_errstr(__got), win_errstr(__expected), cmt); \
218 return false; \
220 } while (0)
222 #define torture_assert_ntstatus_equal(torture_ctx,got,expected,cmt) \
223 do { NTSTATUS __got = got, __expected = expected; \
224 if (!NT_STATUS_EQUAL(__got, __expected)) { \
225 torture_result(torture_ctx, TORTURE_FAIL, __location__": "#got" was %s, expected %s: %s", nt_errstr(__got), nt_errstr(__expected), cmt); \
226 return false; \
228 } while(0)
230 #define torture_assert_ndr_err_equal(torture_ctx,got,expected,cmt) \
231 do { enum ndr_err_code __got = got, __expected = expected; \
232 if (__got != __expected) { \
233 torture_result(torture_ctx, TORTURE_FAIL, __location__": "#got" was %d, expected %d (%s): %s", __got, __expected, __STRING(expected), cmt); \
234 return false; \
236 } while(0)
238 #define torture_assert_casestr_equal(torture_ctx,got,expected,cmt) \
239 do { const char *__got = (got), *__expected = (expected); \
240 if (!strequal(__got, __expected)) { \
241 torture_result(torture_ctx, TORTURE_FAIL, __location__": "#got" was %s, expected %s: %s", __got, __expected, cmt); \
242 return false; \
244 } while(0)
246 #define torture_assert_str_equal(torture_ctx,got,expected,cmt)\
247 do { const char *__got = (got), *__expected = (expected); \
248 if (strcmp_safe(__got, __expected) != 0) { \
249 torture_result(torture_ctx, TORTURE_FAIL, \
250 __location__": "#got" was %s, expected %s: %s", \
251 __got, __expected, cmt); \
252 return false; \
254 } while(0)
256 #define torture_assert_file_contains_text(torture_ctx,filename,expected,cmt)\
257 do { \
258 char *__got; \
259 const char *__expected = (expected); \
260 size_t __size; \
261 __got = file_load(filename, &__size, torture_ctx); \
262 if (__got == NULL) { \
263 torture_result(torture_ctx, TORTURE_FAIL, \
264 __location__": unable to open %s: %s\n", \
265 filename, cmt); \
266 return false; \
269 if (strcmp_safe(__got, __expected) != 0) { \
270 torture_result(torture_ctx, TORTURE_FAIL, \
271 __location__": %s contained:\n%sExpected: %s%s\n", \
272 filename, __got, __expected, cmt); \
273 talloc_free(__got); \
274 return false; \
276 talloc_free(__got); \
277 } while(0)
279 #define torture_assert_file_contains(torture_ctx,filename,expected,cmt)\
280 do { const char *__got, *__expected = (expected); \
281 size_t __size; \
282 __got = file_load(filename, *size, torture_ctx); \
283 if (strcmp_safe(__got, __expected) != 0) { \
284 torture_result(torture_ctx, TORTURE_FAIL, \
285 __location__": %s contained:\n%sExpected: %s%s\n", \
286 __got, __expected, cmt); \
287 talloc_free(__got); \
288 return false; \
290 talloc_free(__got); \
291 } while(0)
293 #define torture_assert_int_equal(torture_ctx,got,expected,cmt)\
294 do { int __got = (got), __expected = (expected); \
295 if (__got != __expected) { \
296 torture_result(torture_ctx, TORTURE_FAIL, \
297 __location__": "#got" was %d, expected %d: %s", \
298 __got, __expected, cmt); \
299 return false; \
301 } while(0)
303 #define torture_assert_u64_equal(torture_ctx,got,expected,cmt)\
304 do { uint64_t __got = (got), __expected = (expected); \
305 if (__got != __expected) { \
306 torture_result(torture_ctx, TORTURE_FAIL, \
307 __location__": "#got" was %llu, expected %llu: %s", \
308 (unsigned long long)__got, (unsigned long long)__expected, cmt); \
309 return false; \
311 } while(0)
313 #define torture_assert_errno_equal(torture_ctx,expected,cmt)\
314 do { int __expected = (expected); \
315 if (errno != __expected) { \
316 torture_result(torture_ctx, TORTURE_FAIL, \
317 __location__": errno was %d (%s), expected %d: %s: %s", \
318 errno, strerror(errno), __expected, \
319 strerror(__expected), cmt); \
320 return false; \
322 } while(0)
326 #define torture_skip(torture_ctx,cmt) do {\
327 torture_result(torture_ctx, TORTURE_SKIP, __location__": %s", cmt);\
328 return true; \
329 } while(0)
330 #define torture_fail(torture_ctx,cmt) do {\
331 torture_result(torture_ctx, TORTURE_FAIL, __location__": %s", cmt);\
332 return false; \
333 } while (0)
334 #define torture_fail_goto(torture_ctx,label,cmt) do {\
335 torture_result(torture_ctx, TORTURE_FAIL, __location__": %s", cmt);\
336 goto label; \
337 } while (0)
339 #define torture_out stderr
341 /* Convenience macros */
342 #define torture_assert_ntstatus_ok(torture_ctx,expr,cmt) \
343 torture_assert_ntstatus_equal(torture_ctx,expr,NT_STATUS_OK,cmt)
345 #define torture_assert_werr_ok(torture_ctx,expr,cmt) \
346 torture_assert_werr_equal(torture_ctx,expr,WERR_OK,cmt)
348 #define torture_assert_ndr_success(torture_ctx,expr,cmt) \
349 torture_assert_ndr_err_equal(torture_ctx,expr,NDR_ERR_SUCCESS,cmt)
351 /* Getting settings */
352 const char *torture_setting_string(struct torture_context *test, \
353 const char *name,
354 const char *default_value);
356 int torture_setting_int(struct torture_context *test,
357 const char *name,
358 int default_value);
360 double torture_setting_double(struct torture_context *test,
361 const char *name,
362 double default_value);
364 bool torture_setting_bool(struct torture_context *test,
365 const char *name,
366 bool default_value);
368 struct torture_suite *torture_find_suite(struct torture_suite *parent,
369 const char *name);
372 #endif /* __TORTURE_UI_H__ */