2 * Wine Conformance Test EXE
4 * Copyright 2003, 2004 Jakob Eriksson (for Solid Form Sweden AB)
5 * Copyright 2003 Dimitrie O. Paun
6 * Copyright 2003 Ferenc Wagner
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.
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.
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
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * This program is dedicated to Anna Lindh,
23 * Swedish Minister of Foreign Affairs.
24 * Anna was murdered September 11, 2003.
29 #include "wine/port.h"
59 static struct wine_test *wine_tests;
60 static struct rev_info *rev_infos = NULL;
61 static const char whitespace[] = " \t\r\n";
63 static int running_under_wine ()
65 HMODULE module = GetModuleHandleA("ntdll.dll");
67 if (!module) return 0;
68 return (GetProcAddress(module, "wine_server_call") != NULL);
71 static int running_on_visible_desktop ()
74 HMODULE huser32 = GetModuleHandle("user32.dll");
75 FARPROC pGetProcessWindowStation = GetProcAddress(huser32, "GetProcessWindowStation");
76 FARPROC pGetUserObjectInformationA = GetProcAddress(huser32, "GetUserObjectInformationA");
78 desktop = GetDesktopWindow();
79 if (!GetWindowLongPtrW(desktop, GWLP_WNDPROC)) /* Win9x */
80 return IsWindowVisible(desktop);
82 if (pGetProcessWindowStation && pGetUserObjectInformationA)
86 USEROBJECTFLAGS uoflags;
88 wstation = (HWINSTA)pGetProcessWindowStation();
89 assert(pGetUserObjectInformationA(wstation, UOI_FLAGS, &uoflags, sizeof(uoflags), &len));
90 return (uoflags.dwFlags & WSF_VISIBLE) != 0;
92 return IsWindowVisible(desktop);
100 ver.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
101 if (!(ext = GetVersionEx ((OSVERSIONINFO *) &ver)))
103 ver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
104 if (!GetVersionEx ((OSVERSIONINFO *) &ver))
105 report (R_FATAL, "Can't get OS version.");
108 xprintf (" bRunningUnderWine=%d\n", running_under_wine ());
109 xprintf (" bRunningOnVisibleDesktop=%d\n", running_on_visible_desktop ());
110 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);
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);
123 static inline int is_dot_dir(const char* x)
125 return ((x[0] == '.') && ((x[1] == 0) || ((x[1] == '.') && (x[2] == 0))));
128 void remove_dir (const char *dir)
133 size_t dirlen = strlen (dir);
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;
142 char *lp = wfd.cFileName;
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)
149 else if (!DeleteFile (path))
150 report (R_WARNING, "Can't delete file %s: error %d",
151 path, GetLastError ());
152 } while (FindNextFile (hFind, &wfd));
154 if (!RemoveDirectory (dir))
155 report (R_WARNING, "Can't remove directory %s: error %d",
156 dir, GetLastError ());
159 const char* get_test_source_file(const char* test, const char* subtest)
161 static const char* special_dirs[][2] = {
162 { "gdi32", "gdi"}, { "kernel32", "kernel" },
163 { "msacm32", "msacm" },
164 { "user32", "user" }, { "winspool.drv", "winspool" },
165 { "ws2_32", "winsock" }, { 0, 0 }
167 static char buffer[MAX_PATH];
170 for (i = 0; special_dirs[i][0]; i++) {
171 if (strcmp(test, special_dirs[i][0]) == 0) {
172 test = special_dirs[i][1];
177 snprintf(buffer, sizeof(buffer), "dlls/%s/tests/%s.c", test, subtest);
181 const char* get_file_rev(const char* file)
183 const struct rev_info* rev;
185 for(rev = rev_infos; rev->file; rev++) {
186 if (strcmp(rev->file, file) == 0) return rev->rev;
192 void extract_rev_infos ()
194 char revinfo[256], *p;
195 int size = 0, i, len;
196 HMODULE module = GetModuleHandle (NULL);
198 for (i = 0; TRUE; i++) {
201 rev_infos = xrealloc (rev_infos, size * sizeof (*rev_infos));
203 memset(rev_infos + i, 0, sizeof(rev_infos[i]));
205 len = LoadStringA (module, REV_INFO+i, revinfo, sizeof(revinfo));
206 if (len == 0) break; /* end of revision info */
207 if (len >= sizeof(revinfo) - 1)
208 report (R_FATAL, "Revision info too long.");
209 if(!(p = strrchr(revinfo, ':')))
210 report (R_FATAL, "Revision info malformed (i=%d)", i);
212 rev_infos[i].file = strdup(revinfo);
213 rev_infos[i].rev = strdup(p + 1);
217 void* extract_rcdata (int id, int type, DWORD* size)
223 if (!(rsrc = FindResource (NULL, (LPTSTR)id, MAKEINTRESOURCE(type))) ||
224 !(*size = SizeofResource (0, rsrc)) ||
225 !(hdl = LoadResource (0, rsrc)) ||
226 !(addr = LockResource (hdl)))
231 /* Fills in the name and exename fields */
233 extract_test (struct wine_test *test, const char *dir, int id)
238 int strlen, bufflen = 128;
241 code = extract_rcdata (id, TESTRES, &size);
242 if (!code) report (R_FATAL, "Can't find test resource %d: %d",
243 id, GetLastError ());
244 test->name = xmalloc (bufflen);
245 while ((strlen = LoadStringA (NULL, id, test->name, bufflen))
248 test->name = xrealloc (test->name, bufflen);
250 if (!strlen) report (R_FATAL, "Can't read name of test %d.", id);
251 test->exename = strmake (NULL, "%s/%s", dir, test->name);
252 exepos = strstr (test->name, "_test.exe");
253 if (!exepos) report (R_FATAL, "Not an .exe file: %s", test->name);
255 test->name = xrealloc (test->name, exepos - test->name + 1);
256 report (R_STEP, "Extracting: %s", test->name);
258 if (!(fout = fopen (test->exename, "wb")) ||
259 (fwrite (code, size, 1, fout) != 1) ||
260 fclose (fout)) report (R_FATAL, "Failed to write file %s.",
264 /* Run a command for MS milliseconds. If OUT != NULL, also redirect
267 Return the exit status, -2 if can't create process or the return
268 value of WaitForSingleObject.
271 run_ex (char *cmd, const char *out, DWORD ms)
274 PROCESS_INFORMATION pi;
275 int fd, oldstdout = -1;
278 GetStartupInfo (&si);
279 si.wShowWindow = SW_HIDE;
280 si.dwFlags = STARTF_USESHOWWINDOW;
283 fd = open (out, O_WRONLY | O_CREAT, 0666);
285 report (R_FATAL, "Can't open '%s': %d", out, errno);
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);
294 if (!CreateProcessA (NULL, cmd, NULL, NULL, TRUE, 0,
295 NULL, NULL, &si, &pi)) {
298 CloseHandle (pi.hThread);
299 wait = WaitForSingleObject (pi.hProcess, ms);
300 if (wait == WAIT_OBJECT_0) {
301 GetExitCodeProcess (pi.hProcess, &status);
305 report (R_ERROR, "Wait for '%s' failed: %d", cmd,
309 report (R_ERROR, "Process '%s' timed out.", cmd);
312 report (R_ERROR, "Wait returned %d", wait);
315 if (!TerminateProcess (pi.hProcess, 257))
316 report (R_ERROR, "TerminateProcess failed: %d",
318 wait = WaitForSingleObject (pi.hProcess, 5000);
322 "Wait for termination of '%s' failed: %d",
323 cmd, GetLastError ());
328 report (R_ERROR, "Can't kill process '%s'", cmd);
331 report (R_ERROR, "Waiting for termination: %d",
335 CloseHandle (pi.hProcess);
340 if (-1 == dup2 (oldstdout, 1))
341 report (R_FATAL, "Can't recover stdout: %d", errno);
348 get_subtests (const char *tempdir, struct wine_test *test, int id)
353 char buffer[8192], *index;
354 static const char header[] = "Valid test names:";
357 test->subtest_count = 0;
359 subname = tempnam (0, "sub");
360 if (!subname) report (R_FATAL, "Can't name subtests file.");
362 extract_test (test, tempdir, id);
363 run_ex (test->exename, subname, 5000);
365 subfile = fopen (subname, "r");
367 report (R_ERROR, "Can't open subtests output of %s: %d",
371 total = fread (buffer, 1, sizeof buffer, subfile);
373 if (sizeof buffer == total) {
374 report (R_ERROR, "Subtest list of %s too big.",
375 test->name, sizeof buffer);
380 index = strstr (buffer, header);
382 report (R_ERROR, "Can't parse subtests output of %s",
386 index += sizeof header;
389 test->subtests = xmalloc (allocated * sizeof(char*));
390 index = strtok (index, whitespace);
392 if (test->subtest_count == allocated) {
394 test->subtests = xrealloc (test->subtests,
395 allocated * sizeof(char*));
397 test->subtests[test->subtest_count++] = strdup (index);
398 index = strtok (NULL, whitespace);
400 test->subtests = xrealloc (test->subtests,
401 test->subtest_count * sizeof(char*));
404 if (remove (subname))
405 report (R_WARNING, "Can't delete file '%s': %d",
411 run_test (struct wine_test* test, const char* subtest)
414 const char* file = get_test_source_file(test->name, subtest);
415 const char* rev = get_file_rev(file);
416 char *cmd = strmake (NULL, "%s %s", test->exename, subtest);
418 xprintf ("%s:%s start %s %s\n", test->name, subtest, file, rev);
419 status = run_ex (cmd, NULL, 120000);
421 xprintf ("%s:%s done (%d)\n", test->name, subtest, status);
425 EnumTestFileProc (HMODULE hModule, LPCTSTR lpszType,
426 LPTSTR lpszName, LONG_PTR lParam)
433 run_tests (char *logname)
435 int nr_of_files = 0, nr_of_tests = 0, i;
436 char *tempdir, *shorttempdir;
438 char *strres, *eol, *nextline;
441 SetErrorMode (SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX);
444 logname = tempnam (0, "res");
445 if (!logname) report (R_FATAL, "Can't name logfile.");
447 report (R_OUT, logname);
449 logfile = open (logname, O_WRONLY | O_CREAT | O_EXCL | O_APPEND,
453 report (R_FATAL, "File %s already exists.", logname);
454 else report (R_FATAL, "Could not open logfile: %d", errno);
456 if (-1 == dup2 (logfile, 1))
457 report (R_FATAL, "Can't redirect stdout: %d", errno);
460 tempdir = tempnam (0, "wct");
462 report (R_FATAL, "Can't name temporary dir (check %%TEMP%%).");
463 shorttempdir = strdup (tempdir);
464 if (shorttempdir) { /* try stable path for ZoneAlarm */
465 strstr (shorttempdir, "wct")[3] = 0;
466 if (CreateDirectoryA (shorttempdir, NULL)) {
468 tempdir = shorttempdir;
469 } else free (shorttempdir);
471 if (tempdir != shorttempdir && !CreateDirectoryA (tempdir, NULL))
472 report (R_FATAL, "Could not create directory: %s", tempdir);
473 report (R_DIR, tempdir);
475 xprintf ("Version 3\n");
476 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");
484 xprintf ("Tag: %s\n", tag);
485 xprintf ("Build info:\n");
486 strres = extract_rcdata (BUILD_INFO, STRINGRES, &strsize);
488 eol = memchr (strres, '\n', strsize);
491 eol = strres + strsize;
493 strsize -= eol - strres + 1;
494 nextline = strsize?eol+1:NULL;
495 if (eol > strres && *(eol-1) == '\r') eol--;
497 xprintf (" %.*s\n", eol-strres, strres);
500 xprintf ("Operating system version:\n");
502 xprintf ("Test output:\n" );
504 report (R_STATUS, "Counting tests");
505 if (!EnumResourceNames (NULL, MAKEINTRESOURCE(TESTRES),
506 EnumTestFileProc, (LPARAM)&nr_of_files))
507 report (R_FATAL, "Can't enumerate test files: %d",
509 wine_tests = xmalloc (nr_of_files * sizeof wine_tests[0]);
511 report (R_STATUS, "Extracting tests");
512 report (R_PROGRESS, 0, nr_of_files);
513 for (i = 0; i < nr_of_files; i++) {
514 get_subtests (tempdir, wine_tests+i, i);
515 nr_of_tests += wine_tests[i].subtest_count;
517 report (R_DELTA, 0, "Extracting: Done");
519 report (R_STATUS, "Running tests");
520 report (R_PROGRESS, 1, nr_of_tests);
521 for (i = 0; i < nr_of_files; i++) {
522 struct wine_test *test = wine_tests + i;
525 for (j = 0; j < test->subtest_count; j++) {
526 report (R_STEP, "Running: %s:%s", test->name,
528 run_test (test, test->subtests[j]);
531 report (R_DELTA, 0, "Running: Done");
533 report (R_STATUS, "Cleaning up");
535 remove_dir (tempdir);
546 Usage: winetest [OPTION]...\n\n\
547 -c console mode, no GUI\n\
548 -e preserve the environment\n\
549 -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\
553 -t TAG include TAG of characters [-.0-9a-zA-Z] in the report\n");
556 int WINAPI WinMain (HINSTANCE hInst, HINSTANCE hPrevInst,
557 LPSTR cmdLine, int cmdShow)
559 char *logname = NULL;
560 const char *cp, *submit = NULL;
564 /* initialize the revision information first */
567 cmdLine = strtok (cmdLine, whitespace);
569 if (cmdLine[0] != '-' || cmdLine[2]) {
570 report (R_ERROR, "Not a single letter option: %s", cmdLine);
574 switch (cmdLine[1]) {
590 submit = strtok (NULL, whitespace);
592 report (R_WARNING, "ignoring tag for submission");
596 logname = strtok (NULL, whitespace);
599 tag = strtok (NULL, whitespace);
600 cp = badtagchar (tag);
602 report (R_ERROR, "invalid char in tag: %c", *cp);
608 report (R_ERROR, "invalid option: -%c", cmdLine[1]);
612 cmdLine = strtok (NULL, whitespace);
615 report (R_STATUS, "Starting up");
617 if (!running_on_visible_desktop ())
618 report (R_FATAL, "Tests must be run on a visible desktop");
620 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);
628 report (R_FATAL, "Please specify a tag (-t option) if "
629 "running noninteractive!");
630 if (guiAskTag () == IDABORT) exit (1);
635 logname = run_tests (NULL);
636 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);
641 } else run_tests (logname);
642 report (R_STATUS, "Finished");