blob: 996374612bdf83f5ce5945def54fcf6f76b6125d [file] [log] [blame]
Alexandre Julliard9f71bd92003-12-04 02:01:39 +00001/*
2 * Wine Conformance Test EXE
3 *
Jakob Eriksson580bce72004-12-22 14:50:50 +00004 * Copyright 2003, 2004 Jakob Eriksson (for Solid Form Sweden AB)
Alexandre Julliard9f71bd92003-12-04 02:01:39 +00005 * Copyright 2003 Dimitrie O. Paun
6 * Copyright 2003 Ferenc Wagner
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
Ferenc Wagner24624f62004-06-15 22:45:15 +000020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Alexandre Julliard9f71bd92003-12-04 02:01:39 +000021 *
22 * This program is dedicated to Anna Lindh,
23 * Swedish Minister of Foreign Affairs.
24 * Anna was murdered September 11, 2003.
25 *
26 */
27
28#include "config.h"
29#include "wine/port.h"
30
31#include <stdio.h>
32#include <stdlib.h>
Dmitry Timoshkov454c1b72005-03-10 17:17:35 +000033#include <assert.h>
Alexandre Julliard9f71bd92003-12-04 02:01:39 +000034#include <errno.h>
35#ifdef HAVE_UNISTD_H
36# include <unistd.h>
37#endif
38#include <windows.h>
39
40#include "winetest.h"
Ferenc Wagner24624f62004-06-15 22:45:15 +000041#include "resource.h"
Ferenc Wagner354f6622004-01-15 01:48:05 +000042
Alexandre Julliard9f71bd92003-12-04 02:01:39 +000043struct wine_test
44{
45 char *name;
46 int resource;
47 int subtest_count;
48 char **subtests;
Alexandre Julliard9f71bd92003-12-04 02:01:39 +000049 char *exename;
50};
51
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +000052struct rev_info
53{
54 const char* file;
55 const char* rev;
56};
57
Ferenc Wagner30dcc6b2005-03-31 15:22:41 +000058char *tag = NULL;
Ferenc Wagner354f6622004-01-15 01:48:05 +000059static struct wine_test *wine_tests;
Ferenc Wagner90baafe2004-04-20 04:00:07 +000060static struct rev_info *rev_infos = NULL;
Ferenc Wagnercb10a702004-09-07 19:33:52 +000061static const char whitespace[] = " \t\r\n";
Alexandre Julliard9f71bd92003-12-04 02:01:39 +000062
Jakob Eriksson82c191f2004-04-23 00:06:57 +000063static int running_under_wine ()
64{
65 HMODULE module = GetModuleHandleA("ntdll.dll");
66
67 if (!module) return 0;
Alexandre Julliard9db147e2004-04-23 02:46:18 +000068 return (GetProcAddress(module, "wine_server_call") != NULL);
Jakob Eriksson82c191f2004-04-23 00:06:57 +000069}
70
Jakob Eriksson580bce72004-12-22 14:50:50 +000071static int running_on_visible_desktop ()
72{
Dmitry Timoshkov097df182005-03-14 10:06:22 +000073 HWND desktop;
74 HMODULE huser32 = GetModuleHandle("user32.dll");
75 FARPROC pGetProcessWindowStation = GetProcAddress(huser32, "GetProcessWindowStation");
76 FARPROC pGetUserObjectInformationA = GetProcAddress(huser32, "GetUserObjectInformationA");
Dmitry Timoshkovb5c358b2005-03-07 10:58:37 +000077
Dmitry Timoshkov097df182005-03-14 10:06:22 +000078 desktop = GetDesktopWindow();
79 if (!GetWindowLongPtrW(desktop, GWLP_WNDPROC)) /* Win9x */
80 return IsWindowVisible(desktop);
81
82 if (pGetProcessWindowStation && pGetUserObjectInformationA)
Dmitry Timoshkov454c1b72005-03-10 17:17:35 +000083 {
84 DWORD len;
85 HWINSTA wstation;
86 USEROBJECTFLAGS uoflags;
Dmitry Timoshkovb5c358b2005-03-07 10:58:37 +000087
Dmitry Timoshkov454c1b72005-03-10 17:17:35 +000088 wstation = (HWINSTA)pGetProcessWindowStation();
89 assert(pGetUserObjectInformationA(wstation, UOI_FLAGS, &uoflags, sizeof(uoflags), &len));
90 return (uoflags.dwFlags & WSF_VISIBLE) != 0;
91 }
Dmitry Timoshkov097df182005-03-14 10:06:22 +000092 return IsWindowVisible(desktop);
Jakob Eriksson580bce72004-12-22 14:50:50 +000093}
94
Alexandre Julliard9f71bd92003-12-04 02:01:39 +000095void print_version ()
96{
97 OSVERSIONINFOEX ver;
98 BOOL ext;
99
100 ver.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
101 if (!(ext = GetVersionEx ((OSVERSIONINFO *) &ver)))
102 {
103 ver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
104 if (!GetVersionEx ((OSVERSIONINFO *) &ver))
Ferenc Wagner354f6622004-01-15 01:48:05 +0000105 report (R_FATAL, "Can't get OS version.");
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000106 }
107
Ferenc Wagner21b85032004-04-23 02:52:21 +0000108 xprintf (" bRunningUnderWine=%d\n", running_under_wine ());
Jakob Eriksson580bce72004-12-22 14:50:50 +0000109 xprintf (" bRunningOnVisibleDesktop=%d\n", running_on_visible_desktop ());
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000110 xprintf (" dwMajorVersion=%ld\n dwMinorVersion=%ld\n"
111 " dwBuildNumber=%ld\n PlatformId=%ld\n szCSDVersion=%s\n",
112 ver.dwMajorVersion, ver.dwMinorVersion, ver.dwBuildNumber,
113 ver.dwPlatformId, ver.szCSDVersion);
114
115 if (!ext) return;
116
117 xprintf (" wServicePackMajor=%d\n wServicePackMinor=%d\n"
118 " wSuiteMask=%d\n wProductType=%d\n wReserved=%d\n",
119 ver.wServicePackMajor, ver.wServicePackMinor, ver.wSuiteMask,
120 ver.wProductType, ver.wReserved);
121}
122
123static inline int is_dot_dir(const char* x)
124{
125 return ((x[0] == '.') && ((x[1] == 0) || ((x[1] == '.') && (x[2] == 0))));
126}
127
128void remove_dir (const char *dir)
129{
130 HANDLE hFind;
131 WIN32_FIND_DATA wfd;
132 char path[MAX_PATH];
133 size_t dirlen = strlen (dir);
134
135 /* Make sure the directory exists before going further */
136 memcpy (path, dir, dirlen);
137 strcpy (path + dirlen++, "\\*");
138 hFind = FindFirstFile (path, &wfd);
139 if (hFind == INVALID_HANDLE_VALUE) return;
140
141 do {
142 char *lp = wfd.cFileName;
143
144 if (!lp[0]) lp = wfd.cAlternateFileName; /* ? FIXME not (!lp) ? */
145 if (is_dot_dir (lp)) continue;
146 strcpy (path + dirlen, lp);
147 if (FILE_ATTRIBUTE_DIRECTORY & wfd.dwFileAttributes)
148 remove_dir(path);
149 else if (!DeleteFile (path))
Ferenc Wagner354f6622004-01-15 01:48:05 +0000150 report (R_WARNING, "Can't delete file %s: error %d",
151 path, GetLastError ());
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000152 } while (FindNextFile (hFind, &wfd));
153 FindClose (hFind);
154 if (!RemoveDirectory (dir))
Ferenc Wagner354f6622004-01-15 01:48:05 +0000155 report (R_WARNING, "Can't remove directory %s: error %d",
156 dir, GetLastError ());
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000157}
158
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000159const char* get_test_source_file(const char* test, const char* subtest)
160{
161 static const char* special_dirs[][2] = {
162 { "gdi32", "gdi"}, { "kernel32", "kernel" },
Ferenc Wagner70cd7402004-05-05 19:00:34 +0000163 { "msacm32", "msacm" },
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000164 { "user32", "user" }, { "winspool.drv", "winspool" },
165 { "ws2_32", "winsock" }, { 0, 0 }
166 };
167 static char buffer[MAX_PATH];
168 int i;
169
170 for (i = 0; special_dirs[i][0]; i++) {
171 if (strcmp(test, special_dirs[i][0]) == 0) {
172 test = special_dirs[i][1];
173 break;
174 }
175 }
176
177 snprintf(buffer, sizeof(buffer), "dlls/%s/tests/%s.c", test, subtest);
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000178 return buffer;
179}
180
181const char* get_file_rev(const char* file)
182{
183 const struct rev_info* rev;
184
185 for(rev = rev_infos; rev->file; rev++) {
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000186 if (strcmp(rev->file, file) == 0) return rev->rev;
187 }
188
Ferenc Wagnera1224992004-03-24 23:40:06 +0000189 return "-";
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000190}
191
192void extract_rev_infos ()
193{
194 char revinfo[256], *p;
Ferenc Wagnera1224992004-03-24 23:40:06 +0000195 int size = 0, i, len;
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000196 HMODULE module = GetModuleHandle (NULL);
197
198 for (i = 0; TRUE; i++) {
199 if (i >= size) {
200 size += 100;
Ferenc Wagnera1224992004-03-24 23:40:06 +0000201 rev_infos = xrealloc (rev_infos, size * sizeof (*rev_infos));
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000202 }
203 memset(rev_infos + i, 0, sizeof(rev_infos[i]));
204
Ferenc Wagner24624f62004-06-15 22:45:15 +0000205 len = LoadStringA (module, REV_INFO+i, revinfo, sizeof(revinfo));
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000206 if (len == 0) break; /* end of revision info */
Ferenc Wagnera1224992004-03-24 23:40:06 +0000207 if (len >= sizeof(revinfo) - 1)
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000208 report (R_FATAL, "Revision info too long.");
209 if(!(p = strrchr(revinfo, ':')))
210 report (R_FATAL, "Revision info malformed (i=%d)", i);
211 *p = 0;
212 rev_infos[i].file = strdup(revinfo);
213 rev_infos[i].rev = strdup(p + 1);
Ferenc Wagnera1224992004-03-24 23:40:06 +0000214 }
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000215}
216
Ferenc Wagner24624f62004-06-15 22:45:15 +0000217void* extract_rcdata (int id, int type, DWORD* size)
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000218{
219 HRSRC rsrc;
220 HGLOBAL hdl;
Ferenc Wagner24624f62004-06-15 22:45:15 +0000221 LPVOID addr;
Ferenc Wagner354f6622004-01-15 01:48:05 +0000222
Ferenc Wagner24624f62004-06-15 22:45:15 +0000223 if (!(rsrc = FindResource (NULL, (LPTSTR)id, MAKEINTRESOURCE(type))) ||
Ferenc Wagner354f6622004-01-15 01:48:05 +0000224 !(*size = SizeofResource (0, rsrc)) ||
225 !(hdl = LoadResource (0, rsrc)) ||
226 !(addr = LockResource (hdl)))
Ferenc Wagner24624f62004-06-15 22:45:15 +0000227 return NULL;
Ferenc Wagner354f6622004-01-15 01:48:05 +0000228 return addr;
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000229}
230
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000231/* Fills in the name and exename fields */
Ferenc Wagner354f6622004-01-15 01:48:05 +0000232void
233extract_test (struct wine_test *test, const char *dir, int id)
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000234{
235 BYTE* code;
236 DWORD size;
237 FILE* fout;
Ferenc Wagner354f6622004-01-15 01:48:05 +0000238 int strlen, bufflen = 128;
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000239 char *exepos;
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000240
Ferenc Wagner24624f62004-06-15 22:45:15 +0000241 code = extract_rcdata (id, TESTRES, &size);
242 if (!code) report (R_FATAL, "Can't find test resource %d: %d",
243 id, GetLastError ());
Ferenc Wagner354f6622004-01-15 01:48:05 +0000244 test->name = xmalloc (bufflen);
245 while ((strlen = LoadStringA (NULL, id, test->name, bufflen))
246 == bufflen - 1) {
247 bufflen *= 2;
248 test->name = xrealloc (test->name, bufflen);
249 }
250 if (!strlen) report (R_FATAL, "Can't read name of test %d.", id);
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000251 test->exename = strmake (NULL, "%s/%s", dir, test->name);
Ferenc Wagner83877702004-03-19 01:54:10 +0000252 exepos = strstr (test->name, "_test.exe");
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000253 if (!exepos) report (R_FATAL, "Not an .exe file: %s", test->name);
254 *exepos = 0;
255 test->name = xrealloc (test->name, exepos - test->name + 1);
Ferenc Wagner354f6622004-01-15 01:48:05 +0000256 report (R_STEP, "Extracting: %s", test->name);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000257
Ferenc Wagner354f6622004-01-15 01:48:05 +0000258 if (!(fout = fopen (test->exename, "wb")) ||
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000259 (fwrite (code, size, 1, fout) != 1) ||
Ferenc Wagner354f6622004-01-15 01:48:05 +0000260 fclose (fout)) report (R_FATAL, "Failed to write file %s.",
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000261 test->exename);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000262}
263
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000264/* Run a command for MS milliseconds. If OUT != NULL, also redirect
265 stdout to there.
266
267 Return the exit status, -2 if can't create process or the return
268 value of WaitForSingleObject.
269 */
270int
271run_ex (char *cmd, const char *out, DWORD ms)
272{
273 STARTUPINFO si;
274 PROCESS_INFORMATION pi;
275 int fd, oldstdout = -1;
276 DWORD wait, status;
277
278 GetStartupInfo (&si);
279 si.wShowWindow = SW_HIDE;
280 si.dwFlags = STARTF_USESHOWWINDOW;
281
282 if (out) {
283 fd = open (out, O_WRONLY | O_CREAT, 0666);
284 if (-1 == fd)
285 report (R_FATAL, "Can't open '%s': %d", out, errno);
286 oldstdout = dup (1);
287 if (-1 == oldstdout)
288 report (R_FATAL, "Can't save stdout: %d", errno);
289 if (-1 == dup2 (fd, 1))
290 report (R_FATAL, "Can't redirect stdout: %d", errno);
291 close (fd);
292 }
293
294 if (!CreateProcessA (NULL, cmd, NULL, NULL, TRUE, 0,
295 NULL, NULL, &si, &pi)) {
296 status = -2;
297 } else {
298 CloseHandle (pi.hThread);
299 wait = WaitForSingleObject (pi.hProcess, ms);
300 if (wait == WAIT_OBJECT_0) {
301 GetExitCodeProcess (pi.hProcess, &status);
302 } else {
303 switch (wait) {
304 case WAIT_FAILED:
305 report (R_ERROR, "Wait for '%s' failed: %d", cmd,
306 GetLastError ());
307 break;
308 case WAIT_TIMEOUT:
309 report (R_ERROR, "Process '%s' timed out.", cmd);
310 break;
311 default:
312 report (R_ERROR, "Wait returned %d", wait);
313 }
314 status = wait;
315 if (!TerminateProcess (pi.hProcess, 257))
316 report (R_ERROR, "TerminateProcess failed: %d",
317 GetLastError ());
318 wait = WaitForSingleObject (pi.hProcess, 5000);
319 switch (wait) {
320 case WAIT_FAILED:
321 report (R_ERROR,
322 "Wait for termination of '%s' failed: %d",
323 cmd, GetLastError ());
324 break;
325 case WAIT_OBJECT_0:
326 break;
327 case WAIT_TIMEOUT:
328 report (R_ERROR, "Can't kill process '%s'", cmd);
329 break;
330 default:
331 report (R_ERROR, "Waiting for termination: %d",
332 wait);
333 }
334 }
335 CloseHandle (pi.hProcess);
336 }
337
338 if (out) {
339 close (1);
340 if (-1 == dup2 (oldstdout, 1))
341 report (R_FATAL, "Can't recover stdout: %d", errno);
342 close (oldstdout);
343 }
344 return status;
345}
346
Ferenc Wagner354f6622004-01-15 01:48:05 +0000347void
348get_subtests (const char *tempdir, struct wine_test *test, int id)
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000349{
350 char *subname;
351 FILE *subfile;
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000352 size_t total;
353 char buffer[8192], *index;
Francois Gougetcfc39432004-05-04 04:13:05 +0000354 static const char header[] = "Valid test names:";
Ferenc Wagner354f6622004-01-15 01:48:05 +0000355 int allocated;
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000356
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000357 test->subtest_count = 0;
358
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000359 subname = tempnam (0, "sub");
Ferenc Wagner354f6622004-01-15 01:48:05 +0000360 if (!subname) report (R_FATAL, "Can't name subtests file.");
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000361
Ferenc Wagner354f6622004-01-15 01:48:05 +0000362 extract_test (test, tempdir, id);
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000363 run_ex (test->exename, subname, 5000);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000364
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000365 subfile = fopen (subname, "r");
366 if (!subfile) {
367 report (R_ERROR, "Can't open subtests output of %s: %d",
368 test->name, errno);
369 goto quit;
370 }
371 total = fread (buffer, 1, sizeof buffer, subfile);
372 fclose (subfile);
373 if (sizeof buffer == total) {
374 report (R_ERROR, "Subtest list of %s too big.",
375 test->name, sizeof buffer);
376 goto quit;
377 }
Ferenc Wagner354f6622004-01-15 01:48:05 +0000378 buffer[total] = 0;
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000379
Ferenc Wagner354f6622004-01-15 01:48:05 +0000380 index = strstr (buffer, header);
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000381 if (!index) {
382 report (R_ERROR, "Can't parse subtests output of %s",
Ferenc Wagner354f6622004-01-15 01:48:05 +0000383 test->name);
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000384 goto quit;
385 }
Ferenc Wagner354f6622004-01-15 01:48:05 +0000386 index += sizeof header;
387
388 allocated = 10;
389 test->subtests = xmalloc (allocated * sizeof(char*));
Ferenc Wagnercb10a702004-09-07 19:33:52 +0000390 index = strtok (index, whitespace);
Ferenc Wagner354f6622004-01-15 01:48:05 +0000391 while (index) {
392 if (test->subtest_count == allocated) {
393 allocated *= 2;
394 test->subtests = xrealloc (test->subtests,
395 allocated * sizeof(char*));
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000396 }
Ferenc Wagner354f6622004-01-15 01:48:05 +0000397 test->subtests[test->subtest_count++] = strdup (index);
Ferenc Wagnercb10a702004-09-07 19:33:52 +0000398 index = strtok (NULL, whitespace);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000399 }
Ferenc Wagner354f6622004-01-15 01:48:05 +0000400 test->subtests = xrealloc (test->subtests,
401 test->subtest_count * sizeof(char*));
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000402
403 quit:
Ferenc Wagner354f6622004-01-15 01:48:05 +0000404 if (remove (subname))
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000405 report (R_WARNING, "Can't delete file '%s': %d",
406 subname, errno);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000407 free (subname);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000408}
409
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000410void
411run_test (struct wine_test* test, const char* subtest)
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000412{
413 int status;
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000414 const char* file = get_test_source_file(test->name, subtest);
415 const char* rev = get_file_rev(file);
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000416 char *cmd = strmake (NULL, "%s %s", test->exename, subtest);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000417
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000418 xprintf ("%s:%s start %s %s\n", test->name, subtest, file, rev);
Ferenc Wagner90baafe2004-04-20 04:00:07 +0000419 status = run_ex (cmd, NULL, 120000);
420 free (cmd);
Ferenc Wagner354f6622004-01-15 01:48:05 +0000421 xprintf ("%s:%s done (%d)\n", test->name, subtest, status);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000422}
423
Ferenc Wagner354f6622004-01-15 01:48:05 +0000424BOOL CALLBACK
425EnumTestFileProc (HMODULE hModule, LPCTSTR lpszType,
426 LPTSTR lpszName, LONG_PTR lParam)
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000427{
Ferenc Wagner354f6622004-01-15 01:48:05 +0000428 (*(int*)lParam)++;
429 return TRUE;
430}
431
Ferenc Wagner8c4a4df2004-02-20 19:56:29 +0000432char *
Ferenc Wagner30dcc6b2005-03-31 15:22:41 +0000433run_tests (char *logname)
Ferenc Wagner354f6622004-01-15 01:48:05 +0000434{
435 int nr_of_files = 0, nr_of_tests = 0, i;
Ferenc Wagner96812eb2005-03-29 19:51:49 +0000436 char *tempdir, *shorttempdir;
Ferenc Wagner24624f62004-06-15 22:45:15 +0000437 int logfile;
438 char *strres, *eol, *nextline;
439 DWORD strsize;
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000440
Ferenc Wagnerf8dba772004-07-06 21:03:22 +0000441 SetErrorMode (SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000442
Ferenc Wagner24624f62004-06-15 22:45:15 +0000443 if (!logname) {
444 logname = tempnam (0, "res");
445 if (!logname) report (R_FATAL, "Can't name logfile.");
446 }
447 report (R_OUT, logname);
448
449 logfile = open (logname, O_WRONLY | O_CREAT | O_EXCL | O_APPEND,
450 0666);
451 if (-1 == logfile) {
452 if (EEXIST == errno)
Ferenc Wagnercb10a702004-09-07 19:33:52 +0000453 report (R_FATAL, "File %s already exists.", logname);
Ferenc Wagner24624f62004-06-15 22:45:15 +0000454 else report (R_FATAL, "Could not open logfile: %d", errno);
455 }
456 if (-1 == dup2 (logfile, 1))
457 report (R_FATAL, "Can't redirect stdout: %d", errno);
458 close (logfile);
459
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000460 tempdir = tempnam (0, "wct");
Ferenc Wagner354f6622004-01-15 01:48:05 +0000461 if (!tempdir)
462 report (R_FATAL, "Can't name temporary dir (check %%TEMP%%).");
Ferenc Wagner96812eb2005-03-29 19:51:49 +0000463 shorttempdir = strdup (tempdir);
464 if (shorttempdir) { /* try stable path for ZoneAlarm */
465 strstr (shorttempdir, "wct")[3] = 0;
466 if (CreateDirectoryA (shorttempdir, NULL)) {
467 free (tempdir);
468 tempdir = shorttempdir;
469 } else free (shorttempdir);
470 }
471 if (tempdir != shorttempdir && !CreateDirectoryA (tempdir, NULL))
Ferenc Wagner354f6622004-01-15 01:48:05 +0000472 report (R_FATAL, "Could not create directory: %s", tempdir);
Ferenc Wagner96812eb2005-03-29 19:51:49 +0000473 report (R_DIR, tempdir);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000474
Ferenc Wagner1fb75dc2004-04-22 23:43:54 +0000475 xprintf ("Version 3\n");
Ferenc Wagner24624f62004-06-15 22:45:15 +0000476 strres = extract_rcdata (WINE_BUILD, STRINGRES, &strsize);
477 xprintf ("Tests from build ");
478 if (strres) xprintf ("%.*s", strsize, strres);
479 else xprintf ("-\n");
480 strres = extract_rcdata (TESTS_URL, STRINGRES, &strsize);
481 xprintf ("Archive: ");
482 if (strres) xprintf ("%.*s", strsize, strres);
483 else xprintf ("-\n");
Ferenc Wagner30dcc6b2005-03-31 15:22:41 +0000484 xprintf ("Tag: %s\n", tag);
Ferenc Wagner21b85032004-04-23 02:52:21 +0000485 xprintf ("Build info:\n");
Ferenc Wagner24624f62004-06-15 22:45:15 +0000486 strres = extract_rcdata (BUILD_INFO, STRINGRES, &strsize);
487 while (strres) {
488 eol = memchr (strres, '\n', strsize);
489 if (!eol) {
490 nextline = NULL;
491 eol = strres + strsize;
492 } else {
493 strsize -= eol - strres + 1;
494 nextline = strsize?eol+1:NULL;
495 if (eol > strres && *(eol-1) == '\r') eol--;
496 }
497 xprintf (" %.*s\n", eol-strres, strres);
498 strres = nextline;
499 }
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000500 xprintf ("Operating system version:\n");
501 print_version ();
502 xprintf ("Test output:\n" );
503
Ferenc Wagner354f6622004-01-15 01:48:05 +0000504 report (R_STATUS, "Counting tests");
Ferenc Wagner24624f62004-06-15 22:45:15 +0000505 if (!EnumResourceNames (NULL, MAKEINTRESOURCE(TESTRES),
Ferenc Wagner354f6622004-01-15 01:48:05 +0000506 EnumTestFileProc, (LPARAM)&nr_of_files))
507 report (R_FATAL, "Can't enumerate test files: %d",
508 GetLastError ());
509 wine_tests = xmalloc (nr_of_files * sizeof wine_tests[0]);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000510
Ferenc Wagner354f6622004-01-15 01:48:05 +0000511 report (R_STATUS, "Extracting tests");
Ferenc Wagnerfeaad962004-02-21 04:01:56 +0000512 report (R_PROGRESS, 0, nr_of_files);
Ferenc Wagner354f6622004-01-15 01:48:05 +0000513 for (i = 0; i < nr_of_files; i++) {
Ferenc Wagner24624f62004-06-15 22:45:15 +0000514 get_subtests (tempdir, wine_tests+i, i);
Ferenc Wagner354f6622004-01-15 01:48:05 +0000515 nr_of_tests += wine_tests[i].subtest_count;
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000516 }
Ferenc Wagner354f6622004-01-15 01:48:05 +0000517 report (R_DELTA, 0, "Extracting: Done");
518
519 report (R_STATUS, "Running tests");
Ferenc Wagnerfeaad962004-02-21 04:01:56 +0000520 report (R_PROGRESS, 1, nr_of_tests);
Ferenc Wagner354f6622004-01-15 01:48:05 +0000521 for (i = 0; i < nr_of_files; i++) {
522 struct wine_test *test = wine_tests + i;
523 int j;
524
525 for (j = 0; j < test->subtest_count; j++) {
Ferenc Wagner83877702004-03-19 01:54:10 +0000526 report (R_STEP, "Running: %s:%s", test->name,
Ferenc Wagner354f6622004-01-15 01:48:05 +0000527 test->subtests[j]);
528 run_test (test, test->subtests[j]);
529 }
530 }
531 report (R_DELTA, 0, "Running: Done");
532
533 report (R_STATUS, "Cleaning up");
534 close (1);
535 remove_dir (tempdir);
536 free (tempdir);
537 free (wine_tests);
538
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000539 return logname;
540}
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000541
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000542void
543usage ()
544{
545 fprintf (stderr, "\
546Usage: winetest [OPTION]...\n\n\
547 -c console mode, no GUI\n\
Ferenc Wagner2d0d4842004-07-22 23:42:03 +0000548 -e preserve the environment\n\
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000549 -h print this message and exit\n\
550 -q quiet mode, no output at all\n\
551 -o FILE put report into FILE, do not submit\n\
552 -s FILE submit FILE, do not run tests\n\
Ferenc Wagner2d0d4842004-07-22 23:42:03 +0000553 -t TAG include TAG of characters [-.0-9a-zA-Z] in the report\n");
Ferenc Wagner354f6622004-01-15 01:48:05 +0000554}
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000555
Ferenc Wagner354f6622004-01-15 01:48:05 +0000556int WINAPI WinMain (HINSTANCE hInst, HINSTANCE hPrevInst,
557 LPSTR cmdLine, int cmdShow)
558{
Ferenc Wagner8c4a4df2004-02-20 19:56:29 +0000559 char *logname = NULL;
Ferenc Wagner30dcc6b2005-03-31 15:22:41 +0000560 const char *cp, *submit = NULL;
Ferenc Wagner2d0d4842004-07-22 23:42:03 +0000561 int reset_env = 1;
Ferenc Wagner30dcc6b2005-03-31 15:22:41 +0000562 int interactive = 1;
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000563
Dimitrie O. Pauncbe0e492004-03-20 19:21:39 +0000564 /* initialize the revision information first */
565 extract_rev_infos();
566
Ferenc Wagnercb10a702004-09-07 19:33:52 +0000567 cmdLine = strtok (cmdLine, whitespace);
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000568 while (cmdLine) {
Ferenc Wagnera1224992004-03-24 23:40:06 +0000569 if (cmdLine[0] != '-' || cmdLine[2]) {
570 report (R_ERROR, "Not a single letter option: %s", cmdLine);
571 usage ();
572 exit (2);
573 }
574 switch (cmdLine[1]) {
575 case 'c':
576 report (R_TEXTMODE);
Ferenc Wagner30dcc6b2005-03-31 15:22:41 +0000577 interactive = 0;
Ferenc Wagnera1224992004-03-24 23:40:06 +0000578 break;
Ferenc Wagner2d0d4842004-07-22 23:42:03 +0000579 case 'e':
580 reset_env = 0;
581 break;
Ferenc Wagnera1224992004-03-24 23:40:06 +0000582 case 'h':
583 usage ();
584 exit (0);
585 case 'q':
586 report (R_QUIET);
Ferenc Wagner30dcc6b2005-03-31 15:22:41 +0000587 interactive = 0;
Ferenc Wagnera1224992004-03-24 23:40:06 +0000588 break;
589 case 's':
Ferenc Wagnercb10a702004-09-07 19:33:52 +0000590 submit = strtok (NULL, whitespace);
Ferenc Wagner2d0d4842004-07-22 23:42:03 +0000591 if (tag)
592 report (R_WARNING, "ignoring tag for submission");
Ferenc Wagnera1224992004-03-24 23:40:06 +0000593 send_file (submit);
594 break;
595 case 'o':
Ferenc Wagnercb10a702004-09-07 19:33:52 +0000596 logname = strtok (NULL, whitespace);
Ferenc Wagnera1224992004-03-24 23:40:06 +0000597 break;
598 case 't':
Ferenc Wagnercb10a702004-09-07 19:33:52 +0000599 tag = strtok (NULL, whitespace);
Ferenc Wagnera1224992004-03-24 23:40:06 +0000600 cp = badtagchar (tag);
601 if (cp) {
602 report (R_ERROR, "invalid char in tag: %c", *cp);
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000603 usage ();
604 exit (2);
605 }
Ferenc Wagnera1224992004-03-24 23:40:06 +0000606 break;
607 default:
608 report (R_ERROR, "invalid option: -%c", cmdLine[1]);
609 usage ();
610 exit (2);
611 }
Ferenc Wagnercb10a702004-09-07 19:33:52 +0000612 cmdLine = strtok (NULL, whitespace);
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000613 }
Ferenc Wagner2d0d4842004-07-22 23:42:03 +0000614 if (!submit) {
Ferenc Wagner30dcc6b2005-03-31 15:22:41 +0000615 report (R_STATUS, "Starting up");
616
617 if (!running_on_visible_desktop ())
618 report (R_FATAL, "Tests must be run on a visible desktop");
Ferenc Wagnera7033432005-03-25 17:11:52 +0000619
Ferenc Wagner2d0d4842004-07-22 23:42:03 +0000620 if (reset_env && (putenv ("WINETEST_PLATFORM=windows") ||
621 putenv ("WINETEST_DEBUG=1") ||
622 putenv ("WINETEST_INTERACTIVE=0") ||
623 putenv ("WINETEST_REPORT_SUCCESS=0")))
624 report (R_FATAL, "Could not reset environment: %d", errno);
625
Ferenc Wagner30dcc6b2005-03-31 15:22:41 +0000626 if (!tag) {
627 if (!interactive)
628 report (R_FATAL, "Please specify a tag (-t option) if "
629 "running noninteractive!");
630 if (guiAskTag () == IDABORT) exit (1);
631 }
632 report (R_TAG);
633
Ferenc Wagnerfbf77db2004-10-04 19:32:20 +0000634 if (!logname) {
Ferenc Wagner30dcc6b2005-03-31 15:22:41 +0000635 logname = run_tests (NULL);
Ferenc Wagnerfbf77db2004-10-04 19:32:20 +0000636 if (report (R_ASK, MB_YESNO, "Do you want to submit the "
637 "test results?") == IDYES)
638 if (!send_file (logname) && remove (logname))
639 report (R_WARNING, "Can't remove logfile: %d.", errno);
640 free (logname);
Ferenc Wagner30dcc6b2005-03-31 15:22:41 +0000641 } else run_tests (logname);
Ferenc Wagnerefc67252004-02-19 04:12:42 +0000642 report (R_STATUS, "Finished");
643 }
Ferenc Wagner354f6622004-01-15 01:48:05 +0000644 exit (0);
Alexandre Julliard9f71bd92003-12-04 02:01:39 +0000645}