2 * Definitions for Wine C unit tests.
4 * Copyright (C) 2002 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 extern int winetest_debug
;
30 /* running in interactive mode? */
31 extern int winetest_interactive
;
33 /* current platform */
34 extern const char *winetest_platform
;
36 extern void winetest_set_location( const char* file
, int line
);
37 extern void winetest_start_todo( const char* platform
);
38 extern int winetest_loop_todo(void);
39 extern void winetest_end_todo( const char* platform
);
40 extern int winetest_get_mainargs( char*** pargv
);
42 #define START_TEST(name) void func_##name(void)
46 extern int winetest_ok( int condition
, const char *msg
, ... ) __attribute__((format (printf
,2,3) ));
47 extern void winetest_trace( const char *msg
, ... ) __attribute__((format (printf
,1,2)));
51 extern int winetest_ok( int condition
, const char *msg
, ... );
52 extern void winetest_trace( const char *msg
, ... );
56 #define ok_(file, line) (winetest_set_location(file, line), 0) ? 0 : winetest_ok
57 #define trace_(file, line) (winetest_set_location(file, line), 0) ? (void)0 : winetest_trace
59 #define ok ok_(__FILE__, __LINE__)
60 #define trace trace_(__FILE__, __LINE__)
62 #define todo(platform) for (winetest_start_todo(platform); \
63 winetest_loop_todo(); \
64 winetest_end_todo(platform))
65 #define todo_wine todo("wine")
68 /************************************************************************/
69 /* Below is the implementation of the various functions, to be included
70 * directly into the generated testlist.c file.
71 * It is done that way so that the dlls can build the test routines with
72 * different includes or flags if needed.
75 #ifdef WINETEST_WANT_MAIN
78 int winetest_debug
= 1;
80 /* interactive mode? */
81 int winetest_interactive
= 0;
83 /* current platform */
84 const char *winetest_platform
= "windows";
86 /* report successful tests (BOOL) */
87 static int report_success
= 0;
89 /* passing arguments around */
90 static int winetest_argc
;
91 static char** winetest_argv
;
93 static const struct test
*current_test
; /* test currently being run */
95 static LONG successes
; /* number of successful tests */
96 static LONG failures
; /* number of failures */
97 static LONG todo_successes
; /* number of successful tests inside todo block */
98 static LONG todo_failures
; /* number of failures inside todo block */
100 /* The following data must be kept track of on a per-thread basis */
103 const char* current_file
; /* file of current check */
104 int current_line
; /* line of current check */
105 int todo_level
; /* current todo nesting level */
108 static DWORD tls_index
;
110 static tls_data
* get_tls_data(void)
115 last_error
=GetLastError();
116 data
=TlsGetValue(tls_index
);
119 data
=HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(tls_data
));
120 TlsSetValue(tls_index
,data
);
122 SetLastError(last_error
);
126 static void exit_process( int code
)
133 void winetest_set_location( const char* file
, int line
)
135 tls_data
* data
=get_tls_data();
136 data
->current_file
=strrchr(file
,'/');
137 if (data
->current_file
==NULL
)
138 data
->current_file
=strrchr(file
,'\\');
139 if (data
->current_file
==NULL
)
140 data
->current_file
=file
;
142 data
->current_file
++;
143 data
->current_line
=line
;
149 * - condition - condition to check;
150 * - msg test description;
151 * - file - test application source code file name of the check
152 * - line - test application source code file line number of the check
154 * 0 if condition does not have the expected value, 1 otherwise
156 int winetest_ok( int condition
, const char *msg
, ... )
159 tls_data
* data
=get_tls_data();
161 if (data
->todo_level
)
165 fprintf( stdout
, "%s:%d: Test succeeded inside todo block",
166 data
->current_file
, data
->current_line
);
169 va_start(valist
, msg
);
170 fprintf(stdout
,": ");
171 vfprintf(stdout
, msg
, valist
);
174 InterlockedIncrement(&todo_failures
);
177 else InterlockedIncrement(&todo_successes
);
183 fprintf( stdout
, "%s:%d: Test failed",
184 data
->current_file
, data
->current_line
);
187 va_start(valist
, msg
);
188 fprintf( stdout
,": ");
189 vfprintf(stdout
, msg
, valist
);
192 InterlockedIncrement(&failures
);
198 fprintf( stdout
, "%s:%d: Test succeeded\n",
199 data
->current_file
, data
->current_line
);
200 InterlockedIncrement(&successes
);
206 void winetest_trace( const char *msg
, ... )
209 tls_data
* data
=get_tls_data();
211 if (winetest_debug
> 0)
213 fprintf( stdout
, "%s:%d:", data
->current_file
, data
->current_line
);
214 va_start(valist
, msg
);
215 vfprintf(stdout
, msg
, valist
);
220 void winetest_start_todo( const char* platform
)
222 tls_data
* data
=get_tls_data();
223 if (strcmp(winetest_platform
,platform
)==0)
225 data
->todo_do_loop
=1;
228 int winetest_loop_todo(void)
230 tls_data
* data
=get_tls_data();
231 int do_loop
=data
->todo_do_loop
;
232 data
->todo_do_loop
=0;
236 void winetest_end_todo( const char* platform
)
238 if (strcmp(winetest_platform
,platform
)==0)
240 tls_data
* data
=get_tls_data();
245 int winetest_get_mainargs( char*** pargv
)
247 *pargv
= winetest_argv
;
248 return winetest_argc
;
251 /* Find a test by name */
252 static const struct test
*find_test( const char *name
)
254 const struct test
*test
;
258 if ((p
= strrchr( name
, '/' ))) name
= p
+ 1;
259 if ((p
= strrchr( name
, '\\' ))) name
= p
+ 1;
261 if (len
> 2 && !strcmp( name
+ len
- 2, ".c" )) len
-= 2;
263 for (test
= winetest_testlist
; test
->name
; test
++)
265 if (!strncmp( test
->name
, name
, len
) && !test
->name
[len
]) break;
267 return test
->name
? test
: NULL
;
271 /* Run a named test, and return exit status */
272 static int run_test( const char *name
)
274 const struct test
*test
;
277 if (!(test
= find_test( name
)))
279 fprintf( stdout
, "Fatal: test '%s' does not exist.\n", name
);
282 successes
= failures
= todo_successes
= todo_failures
= 0;
283 tls_index
=TlsAlloc();
289 fprintf( stdout
, "%s: %ld tests executed, %ld marked as todo, %ld %s.\n",
290 name
, successes
+ failures
+ todo_successes
+ todo_failures
,
291 todo_successes
, failures
+ todo_failures
,
292 (failures
+ todo_failures
!= 1) ? "failures" : "failure" );
294 status
= (failures
+ todo_failures
< 255) ? failures
+ todo_failures
: 255;
299 /* Display usage and exit */
300 static void usage( const char *argv0
)
302 const struct test
*test
;
304 fprintf( stdout
, "Usage: %s test_name\n", argv0
);
305 fprintf( stdout
, "\nValid test names:\n" );
306 for (test
= winetest_testlist
; test
->name
; test
++) fprintf( stdout
, " %s\n", test
->name
);
312 int main( int argc
, char **argv
)
316 winetest_argc
= argc
;
317 winetest_argv
= argv
;
319 if ((p
= getenv( "WINETEST_PLATFORM" ))) winetest_platform
= p
;
320 if ((p
= getenv( "WINETEST_DEBUG" ))) winetest_debug
= atoi(p
);
321 if ((p
= getenv( "WINETEST_INTERACTIVE" ))) winetest_interactive
= atoi(p
);
322 if ((p
= getenv( "WINETEST_REPORT_SUCCESS"))) report_success
= atoi(p
);
323 if (!argv
[1]) usage( argv
[0] );
325 return run_test(argv
[1]);
328 #endif /* WINETEST_WANT_MAIN */
330 #endif /* __WINE_TEST_H */