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 2 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, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #ifndef __TORTURE_UI_H__
23 #define __TORTURE_UI_H__
26 struct torture_context;
38 * These callbacks should be implemented by any backend that wishes
39 * to listen to reports from the torture tests.
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);
55 void torture_ui_test_start(struct torture_context *context,
56 struct torture_tcase *tcase,
57 struct torture_test *test);
59 void torture_ui_test_result(struct torture_context *context,
60 enum torture_result result,
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.
69 * Torture tests should instead call the torture_*() macros and functions
73 struct torture_context
75 const struct torture_ui_ops *ui_ops;
78 struct torture_test *active_test;
79 struct torture_tcase *active_tcase;
86 bool quiet; /* Whether tests should avoid writing output to stdout */
88 enum torture_result last_result;
96 * Describes a particular torture test
100 const char *description;
102 /* Function to call to run this test */
103 bool (*run) (struct torture_context *torture_ctx,
104 struct torture_tcase *tcase,
105 struct torture_test *test);
107 struct torture_test *prev, *next;
109 /* Pointer to the actual test function. This is run by the
110 * run() function above. */
116 * Describes a particular test case.
118 struct torture_tcase {
120 const char *description;
121 bool (*setup) (struct torture_context *tcase, void **data);
122 bool (*teardown) (struct torture_context *tcase, void *data);
123 bool fixture_persistent;
125 struct torture_test *tests;
126 struct torture_tcase *prev, *next;
132 const char *path; /* Used by subunit tests only */
133 const char *description;
134 struct torture_tcase *testcases;
135 struct torture_suite *children;
137 /* Pointers to siblings of this torture suite */
138 struct torture_suite *prev, *next;
141 /** Create a new torture suite */
142 struct torture_suite *torture_suite_create(TALLOC_CTX *mem_ctx,
145 /** Change the setup and teardown functions for a testcase */
146 void torture_tcase_set_fixture(struct torture_tcase *tcase,
147 bool (*setup) (struct torture_context *, void **),
148 bool (*teardown) (struct torture_context *, void *));
150 /* Add another test to run for a particular testcase */
151 struct torture_test *torture_tcase_add_test(struct torture_tcase *tcase,
153 bool (*run) (struct torture_context *test, const void *tcase_data,
154 const void *test_data),
155 const void *test_data);
157 /* Add a testcase to a testsuite */
158 struct torture_tcase *torture_suite_add_tcase(struct torture_suite *suite,
161 /* Convenience wrapper that adds a testcase against only one
162 * test will be run */
163 struct torture_tcase *torture_suite_add_simple_tcase(
164 struct torture_suite *suite,
166 bool (*run) (struct torture_context *test, const void *test_data),
169 /* Convenience wrapper that adds a test that doesn't need any
171 struct torture_tcase *torture_suite_add_simple_test(
172 struct torture_suite *suite,
174 bool (*run) (struct torture_context *test));
176 /* Add a child testsuite to an existing testsuite */
177 bool torture_suite_add_suite(struct torture_suite *suite,
178 struct torture_suite *child);
180 /* Run the specified testsuite recursively */
181 bool torture_run_suite(struct torture_context *context,
182 struct torture_suite *suite);
184 /* Run the specified testcase */
185 bool torture_run_tcase(struct torture_context *context,
186 struct torture_tcase *tcase);
188 /* Run the specified test */
189 bool torture_run_test(struct torture_context *context,
190 struct torture_tcase *tcase,
191 struct torture_test *test);
193 void _torture_fail_ext(struct torture_context *test, const char *reason, ...) PRINTF_ATTRIBUTE(2,3);
194 void torture_comment(struct torture_context *test, const char *comment, ...) PRINTF_ATTRIBUTE(2,3);
195 void _torture_skip_ext(struct torture_context *test, const char *reason, ...) PRINTF_ATTRIBUTE(2,3);
197 #define torture_assert(torture_ctx,expr,cmt) \
199 torture_comment(torture_ctx, __location__": Expression `%s' failed\n", __STRING(expr)); \
200 _torture_fail_ext(torture_ctx, __location__": %s", cmt); \
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_comment(torture_ctx, __location__": "#got" was %s, expected %s\n", \
208 win_errstr(__got), win_errstr(__expected)); \
209 _torture_fail_ext(torture_ctx, __location__": %s", cmt); \
214 #define torture_assert_ntstatus_equal(torture_ctx,got,expected,cmt) \
215 do { NTSTATUS __got = got, __expected = expected; \
216 if (!NT_STATUS_EQUAL(__got, __expected)) { \
217 torture_comment(torture_ctx, __location__": "#got" was %s, expected %s\n", \
218 nt_errstr(__got), nt_errstr(__expected)); \
219 _torture_fail_ext(torture_ctx, __location__": %s", cmt); \
225 #define torture_assert_casestr_equal(torture_ctx,got,expected,cmt) \
226 do { const char *__got = (got), *__expected = (expected); \
227 if (!strequal(__got, __expected)) { \
228 torture_comment(torture_ctx, __location__": "#got" was %s, expected %s\n", __got, __expected); \
229 _torture_fail_ext(torture_ctx, __location__": %s", cmt); \
234 #define torture_assert_str_equal(torture_ctx,got,expected,cmt)\
235 do { const char *__got = (got), *__expected = (expected); \
236 if (strcmp_safe(__got, __expected) != 0) { \
237 torture_comment(torture_ctx, __location__": "#got" was %s, expected %s\n", __got, __expected); \
238 _torture_fail_ext(torture_ctx, __location__": %s", cmt); \
243 #define torture_assert_int_equal(torture_ctx,got,expected,cmt)\
244 do { int __got = (got), __expected = (expected); \
245 if (__got != __expected) { \
246 torture_comment(torture_ctx, __location__": "#got" was %d, expected %d\n", __got, __expected); \
247 _torture_fail_ext(torture_ctx, __location__": %s", cmt); \
252 #define torture_assert_errno_equal(torture_ctx,expected,cmt)\
253 do { int __expected = (expected); \
254 if (errno != __expected) { \
255 torture_comment(torture_ctx, __location__": errno was %d, expected %s\n", errno, strerror(__expected)); \
256 _torture_fail_ext(torture_ctx, __location__": %s", cmt); \
263 #define torture_skip(torture_ctx,cmt) do {\
264 _torture_skip_ext(torture_ctx, __location__": %s", cmt);\
267 #define torture_fail(torture_ctx,cmt) do {\
268 _torture_fail_ext(torture_ctx, __location__": %s", cmt);\
272 #define torture_out stderr
274 /* Convenience macros */
275 #define torture_assert_ntstatus_ok(torture_ctx,expr,cmt) \
276 torture_assert_ntstatus_equal(torture_ctx,expr,NT_STATUS_OK,cmt)
278 #define torture_assert_werr_ok(torture_ctx,expr,cmt) \
279 torture_assert_werr_equal(torture_ctx,expr,WERR_OK,cmt)
281 /* Getting settings */
282 const char *torture_setting_string(struct torture_context *test, \
284 const char *default_value);
286 int torture_setting_int(struct torture_context *test,
290 bool torture_setting_bool(struct torture_context *test,
294 /* Helper function commonly used */
295 bool torture_teardown_free(struct torture_context *torture, void *data);
297 struct torture_suite *torture_find_suite(struct torture_suite *parent,
301 #endif /* __TORTURE_UI_H__ */