usp10: Some unicode code points will force us into bidi mode.
[wine.git] / dlls / kernel32 / tests / module.c
blob06cf557d8c0e33a69d6fcf66c8e3275dadfc6c7b
1 /*
2 * Unit tests for module/DLL/library API
4 * Copyright (c) 2004 Eric Pouech
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "wine/test.h"
22 #include <windows.h>
24 static DWORD (WINAPI *pGetDllDirectoryA)(DWORD,LPSTR);
25 static DWORD (WINAPI *pGetDllDirectoryW)(DWORD,LPWSTR);
27 static BOOL (WINAPI *pSetDllDirectoryA)(LPCSTR);
29 static BOOL is_unicode_enabled = TRUE;
31 static BOOL cmpStrAW(const char* a, const WCHAR* b, DWORD lenA, DWORD lenB)
33 WCHAR aw[1024];
35 DWORD len = MultiByteToWideChar( AreFileApisANSI() ? CP_ACP : CP_OEMCP, 0,
36 a, lenA, aw, sizeof(aw) / sizeof(aw[0]) );
37 if (len != lenB) return FALSE;
38 return memcmp(aw, b, len * sizeof(WCHAR)) == 0;
41 static void testGetModuleFileName(const char* name)
43 HMODULE hMod;
44 char bufA[MAX_PATH];
45 WCHAR bufW[MAX_PATH];
46 DWORD len1A, len1W = 0, len2A, len2W = 0;
48 hMod = (name) ? GetModuleHandle(name) : NULL;
50 /* first test, with enough space in buffer */
51 memset(bufA, '-', sizeof(bufA));
52 SetLastError(0xdeadbeef);
53 len1A = GetModuleFileNameA(hMod, bufA, sizeof(bufA));
54 ok(GetLastError() == ERROR_SUCCESS ||
55 broken(GetLastError() == 0xdeadbeef), /* <= XP SP3 */
56 "LastError was not reset: %u\n", GetLastError());
57 ok(len1A > 0, "Getting module filename for handle %p\n", hMod);
59 if (is_unicode_enabled)
61 memset(bufW, '-', sizeof(bufW));
62 SetLastError(0xdeadbeef);
63 len1W = GetModuleFileNameW(hMod, bufW, sizeof(bufW) / sizeof(WCHAR));
64 ok(GetLastError() == ERROR_SUCCESS ||
65 broken(GetLastError() == 0xdeadbeef), /* <= XP SP3 */
66 "LastError was not reset: %u\n", GetLastError());
67 ok(len1W > 0, "Getting module filename for handle %p\n", hMod);
70 ok(len1A == strlen(bufA), "Unexpected length of GetModuleFilenameA (%d/%d)\n", len1A, lstrlenA(bufA));
72 if (is_unicode_enabled)
74 ok(len1W == lstrlenW(bufW), "Unexpected length of GetModuleFilenameW (%d/%d)\n", len1W, lstrlenW(bufW));
75 ok(cmpStrAW(bufA, bufW, len1A, len1W), "Comparing GetModuleFilenameAW results\n");
78 /* second test with a buffer too small */
79 memset(bufA, '-', sizeof(bufA));
80 len2A = GetModuleFileNameA(hMod, bufA, len1A / 2);
81 ok(len2A > 0, "Getting module filename for handle %p\n", hMod);
83 if (is_unicode_enabled)
85 memset(bufW, '-', sizeof(bufW));
86 len2W = GetModuleFileNameW(hMod, bufW, len1W / 2);
87 ok(len2W > 0, "Getting module filename for handle %p\n", hMod);
88 ok(cmpStrAW(bufA, bufW, len2A, len2W), "Comparing GetModuleFilenameAW results with buffer too small\n" );
89 ok(len1W / 2 == len2W, "Correct length in GetModuleFilenameW with buffer too small (%d/%d)\n", len1W / 2, len2W);
92 ok(len1A / 2 == len2A ||
93 len1A / 2 == len2A + 1, /* Win9x */
94 "Correct length in GetModuleFilenameA with buffer too small (%d/%d)\n", len1A / 2, len2A);
97 static void testGetModuleFileName_Wrong(void)
99 char bufA[MAX_PATH];
100 WCHAR bufW[MAX_PATH];
102 /* test wrong handle */
103 if (is_unicode_enabled)
105 bufW[0] = '*';
106 ok(GetModuleFileNameW((void*)0xffffffff, bufW, sizeof(bufW) / sizeof(WCHAR)) == 0, "Unexpected success in module handle\n");
107 ok(bufW[0] == '*', "When failing, buffer shouldn't be written to\n");
110 bufA[0] = '*';
111 ok(GetModuleFileNameA((void*)0xffffffff, bufA, sizeof(bufA)) == 0, "Unexpected success in module handle\n");
112 ok(bufA[0] == '*' ||
113 bufA[0] == 0 /* Win9x */,
114 "When failing, buffer shouldn't be written to\n");
117 static void testLoadLibraryA(void)
119 HMODULE hModule, hModule1;
120 FARPROC fp;
122 SetLastError(0xdeadbeef);
123 hModule = LoadLibraryA("kernel32.dll");
124 ok( hModule != NULL, "kernel32.dll should be loadable\n");
125 ok( GetLastError() == 0xdeadbeef, "GetLastError should be 0xdeadbeef but is %d\n", GetLastError());
127 fp = GetProcAddress(hModule, "CreateFileA");
128 ok( fp != NULL, "CreateFileA should be there\n");
129 ok( GetLastError() == 0xdeadbeef, "GetLastError should be 0xdeadbeef but is %d\n", GetLastError());
131 SetLastError(0xdeadbeef);
132 hModule1 = LoadLibraryA("kernel32 ");
133 /* Only winNT does this */
134 if (GetLastError() != ERROR_DLL_NOT_FOUND)
136 ok( hModule1 != NULL, "\"kernel32 \" should be loadable\n");
137 ok( GetLastError() == 0xdeadbeef, "GetLastError should be 0xdeadbeef but is %d\n", GetLastError());
138 ok( hModule == hModule1, "Loaded wrong module\n");
139 FreeLibrary(hModule1);
141 FreeLibrary(hModule);
144 static void testNestedLoadLibraryA(void)
146 static const char dllname[] = "shell32.dll";
147 char path1[MAX_PATH], path2[MAX_PATH];
148 HMODULE hModule1, hModule2, hModule3;
150 /* This is not really a Windows conformance test, but more a Wine
151 * regression test. Wine's builtin dlls can be loaded from multiple paths,
152 * and this test tries to make sure that Wine does not get confused and
153 * really unloads the Unix .so file at the right time. Failure to do so
154 * will result in the dll being unloadable.
155 * This test must be done with a dll that can be unloaded, which means:
156 * - it must not already be loaded
157 * - it must not have a 16-bit counterpart
159 GetWindowsDirectory(path1, sizeof(path1));
160 strcat(path1, "\\system\\");
161 strcat(path1, dllname);
162 hModule1 = LoadLibraryA(path1);
163 if (!hModule1)
165 /* We must be on Windows NT, so we cannot test */
166 return;
169 GetWindowsDirectory(path2, sizeof(path2));
170 strcat(path2, "\\system32\\");
171 strcat(path2, dllname);
172 hModule2 = LoadLibraryA(path2);
173 if (!hModule2)
175 /* We must be on Windows 9x, so we cannot test */
176 ok(FreeLibrary(hModule1), "FreeLibrary() failed\n");
177 return;
180 /* The first LoadLibrary() call may have registered the dll under the
181 * system32 path. So load it, again, under the '...\system\...' path so
182 * Wine does not immediately notice that it is already loaded.
184 hModule3 = LoadLibraryA(path1);
185 ok(hModule3 != NULL, "LoadLibrary(%s) failed\n", path1);
187 /* Now fully unload the dll */
188 ok(FreeLibrary(hModule3), "FreeLibrary() failed\n");
189 ok(FreeLibrary(hModule2), "FreeLibrary() failed\n");
190 ok(FreeLibrary(hModule1), "FreeLibrary() failed\n");
191 ok(GetModuleHandle(dllname) == NULL, "%s was not fully unloaded\n", dllname);
193 /* Try to load the dll again, if refcounting is ok, this should work */
194 hModule1 = LoadLibraryA(path1);
195 ok(hModule1 != NULL, "LoadLibrary(%s) failed\n", path1);
196 if (hModule1 != NULL)
197 ok(FreeLibrary(hModule1), "FreeLibrary() failed\n");
200 static void testLoadLibraryA_Wrong(void)
202 HMODULE hModule;
204 /* Try to load a nonexistent dll */
205 SetLastError(0xdeadbeef);
206 hModule = LoadLibraryA("non_ex_pv.dll");
207 ok( !hModule, "non_ex_pv.dll should be not loadable\n");
208 ok( GetLastError() == ERROR_MOD_NOT_FOUND || GetLastError() == ERROR_DLL_NOT_FOUND,
209 "Expected ERROR_MOD_NOT_FOUND or ERROR_DLL_NOT_FOUND (win9x), got %d\n", GetLastError());
211 /* Just in case */
212 FreeLibrary(hModule);
215 static void testGetProcAddress_Wrong(void)
217 FARPROC fp;
219 SetLastError(0xdeadbeef);
220 fp = GetProcAddress(NULL, "non_ex_call");
221 ok( !fp, "non_ex_call should not be found\n");
222 ok( GetLastError() == ERROR_PROC_NOT_FOUND || GetLastError() == ERROR_INVALID_HANDLE,
223 "Expected ERROR_PROC_NOT_FOUND or ERROR_INVALID_HANDLE(win9x), got %d\n", GetLastError());
225 SetLastError(0xdeadbeef);
226 fp = GetProcAddress((HMODULE)0xdeadbeef, "non_ex_call");
227 ok( !fp, "non_ex_call should not be found\n");
228 ok( GetLastError() == ERROR_MOD_NOT_FOUND || GetLastError() == ERROR_INVALID_HANDLE,
229 "Expected ERROR_MOD_NOT_FOUND or ERROR_INVALID_HANDLE(win9x), got %d\n", GetLastError());
232 static void testLoadLibraryEx(void)
234 CHAR path[MAX_PATH];
235 HMODULE hmodule;
236 HANDLE hfile;
237 BOOL ret;
239 hfile = CreateFileA("testfile.dll", GENERIC_READ | GENERIC_WRITE,
240 FILE_SHARE_READ | FILE_SHARE_WRITE,
241 NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
242 ok(hfile != INVALID_HANDLE_VALUE, "Expected a valid file handle\n");
244 /* NULL lpFileName */
245 if (is_unicode_enabled)
247 SetLastError(0xdeadbeef);
248 hmodule = LoadLibraryExA(NULL, NULL, 0);
249 ok(hmodule == 0, "Expected 0, got %p\n", hmodule);
250 ok(GetLastError() == ERROR_MOD_NOT_FOUND ||
251 GetLastError() == ERROR_INVALID_PARAMETER, /* win9x */
252 "Expected ERROR_MOD_NOT_FOUND or ERROR_INVALID_PARAMETER, got %d\n",
253 GetLastError());
255 else
256 win_skip("NULL filename crashes on WinMe\n");
258 /* empty lpFileName */
259 SetLastError(0xdeadbeef);
260 hmodule = LoadLibraryExA("", NULL, 0);
261 ok(hmodule == 0, "Expected 0, got %p\n", hmodule);
262 ok(GetLastError() == ERROR_MOD_NOT_FOUND ||
263 GetLastError() == ERROR_DLL_NOT_FOUND, /* win9x */
264 "Expected ERROR_MOD_NOT_FOUND or ERROR_DLL_NOT_FOUND, got %d\n",
265 GetLastError());
267 /* hFile is non-NULL */
268 SetLastError(0xdeadbeef);
269 hmodule = LoadLibraryExA("testfile.dll", hfile, 0);
270 ok(hmodule == 0, "Expected 0, got %p\n", hmodule);
271 todo_wine
273 ok(GetLastError() == ERROR_SHARING_VIOLATION ||
274 GetLastError() == ERROR_INVALID_PARAMETER || /* win2k3 */
275 GetLastError() == ERROR_FILE_NOT_FOUND, /* win9x */
276 "Unexpected last error, got %d\n", GetLastError());
279 SetLastError(0xdeadbeef);
280 hmodule = LoadLibraryExA("testfile.dll", (HANDLE)0xdeadbeef, 0);
281 ok(hmodule == 0, "Expected 0, got %p\n", hmodule);
282 todo_wine
284 ok(GetLastError() == ERROR_SHARING_VIOLATION ||
285 GetLastError() == ERROR_INVALID_PARAMETER || /* win2k3 */
286 GetLastError() == ERROR_FILE_NOT_FOUND, /* win9x */
287 "Unexpected last error, got %d\n", GetLastError());
290 /* try to open a file that is locked */
291 SetLastError(0xdeadbeef);
292 hmodule = LoadLibraryExA("testfile.dll", NULL, 0);
293 ok(hmodule == 0, "Expected 0, got %p\n", hmodule);
294 todo_wine
296 ok(GetLastError() == ERROR_SHARING_VIOLATION ||
297 GetLastError() == ERROR_FILE_NOT_FOUND, /* win9x */
298 "Expected ERROR_SHARING_VIOLATION or ERROR_FILE_NOT_FOUND, got %d\n",
299 GetLastError());
302 /* lpFileName does not matter */
303 if (is_unicode_enabled)
305 SetLastError(0xdeadbeef);
306 hmodule = LoadLibraryExA(NULL, hfile, 0);
307 ok(hmodule == 0, "Expected 0, got %p\n", hmodule);
308 ok(GetLastError() == ERROR_MOD_NOT_FOUND ||
309 GetLastError() == ERROR_INVALID_PARAMETER, /* win2k3 */
310 "Expected ERROR_MOD_NOT_FOUND or ERROR_INVALID_PARAMETER, got %d\n",
311 GetLastError());
314 CloseHandle(hfile);
316 /* load empty file */
317 SetLastError(0xdeadbeef);
318 hmodule = LoadLibraryExA("testfile.dll", NULL, LOAD_LIBRARY_AS_DATAFILE);
319 ok(hmodule == 0, "Expected 0, got %p\n", hmodule);
320 todo_wine
322 ok(GetLastError() == ERROR_FILE_INVALID ||
323 GetLastError() == ERROR_BAD_FORMAT, /* win9x */
324 "Expected ERROR_FILE_INVALID or ERROR_BAD_FORMAT, got %d\n",
325 GetLastError());
328 DeleteFileA("testfile.dll");
330 GetSystemDirectoryA(path, MAX_PATH);
331 if (path[lstrlenA(path) - 1] != '\\')
332 lstrcatA(path, "\\");
333 lstrcatA(path, "kernel32.dll");
335 /* load kernel32.dll with an absolute path */
336 SetLastError(0xdeadbeef);
337 hmodule = LoadLibraryExA(path, NULL, LOAD_LIBRARY_AS_DATAFILE);
338 ok(hmodule != 0, "Expected valid module handle\n");
339 ok(GetLastError() == 0xdeadbeef ||
340 GetLastError() == ERROR_SUCCESS, /* win9x */
341 "Expected 0xdeadbeef or ERROR_SUCCESS, got %d\n", GetLastError());
343 /* try invalid file handle */
344 SetLastError(0xdeadbeef);
345 hmodule = LoadLibraryExA(path, (HANDLE)0xdeadbeef, 0);
346 if (!hmodule) /* succeeds on xp and older */
347 ok(GetLastError() == ERROR_INVALID_PARAMETER, "wrong error %u\n", GetLastError());
349 CloseHandle(hmodule);
351 /* load kernel32.dll with no path */
352 SetLastError(0xdeadbeef);
353 hmodule = LoadLibraryExA("kernel32.dll", NULL, LOAD_LIBRARY_AS_DATAFILE);
354 ok(hmodule != 0, "Expected valid module handle\n");
355 ok(GetLastError() == 0xdeadbeef ||
356 GetLastError() == ERROR_SUCCESS, /* win9x */
357 "Expected 0xdeadbeef or ERROR_SUCCESS, got %d\n", GetLastError());
359 CloseHandle(hmodule);
361 GetCurrentDirectoryA(MAX_PATH, path);
362 if (path[lstrlenA(path) - 1] != '\\')
363 lstrcatA(path, "\\");
364 lstrcatA(path, "kernel32.dll");
366 /* load kernel32.dll with an absolute path that does not exist */
367 SetLastError(0xdeadbeef);
368 hmodule = LoadLibraryExA(path, NULL, LOAD_LIBRARY_AS_DATAFILE);
369 todo_wine
371 ok(hmodule == 0, "Expected 0, got %p\n", hmodule);
373 ok(GetLastError() == ERROR_FILE_NOT_FOUND ||
374 broken(GetLastError() == ERROR_INVALID_HANDLE), /* nt4 */
375 "Expected ERROR_FILE_NOT_FOUND, got %d\n", GetLastError());
377 /* Free the loaded dll when its the first time this dll is loaded
378 in process - First time should pass, second fail */
379 SetLastError(0xdeadbeef);
380 hmodule = LoadLibraryExA("comctl32.dll", NULL, LOAD_LIBRARY_AS_DATAFILE);
381 ok(hmodule != 0, "Expected valid module handle\n");
383 SetLastError(0xdeadbeef);
384 ret = FreeLibrary(hmodule);
385 ok(ret, "Expected to be able to free the module, failed with %d\n", GetLastError());
386 SetLastError(0xdeadbeef);
387 ret = FreeLibrary(hmodule);
388 ok(!ret, "Unexpected ability to free the module, failed with %d\n", GetLastError());
390 CloseHandle(hmodule);
394 static void testGetDllDirectory(void)
396 CHAR bufferA[MAX_PATH];
397 WCHAR bufferW[MAX_PATH];
398 size_t length;
399 DWORD ret;
400 int i;
401 static const char *dll_directories[] =
404 "C:\\Some\\Path",
405 "C:\\Some\\Path\\",
406 "Q:\\A\\Long\\Path with spaces that\\probably\\doesn't exist!",
408 const int test_count = sizeof(dll_directories) / sizeof(dll_directories[0]);
410 if (!pGetDllDirectoryA || !pGetDllDirectoryW)
412 win_skip("GetDllDirectory not available\n");
413 return;
415 if (!pSetDllDirectoryA)
417 win_skip("SetDllDirectoryA not available\n");
418 return;
421 for (i = 0; i < test_count; i++)
423 length = strlen(dll_directories[i]);
424 if (!pSetDllDirectoryA(dll_directories[i]))
426 skip("i=%d, SetDllDirectoryA failed\n", i);
427 continue;
430 /* no buffer, determine length */
431 ret = pGetDllDirectoryA(0, NULL);
432 ok(ret == length + 1, "Expected %u, got %u\n", length + 1, ret);
434 ret = pGetDllDirectoryW(0, NULL);
435 ok(ret == length + 1, "Expected %u, got %u\n", length + 1, ret);
437 /* buffer of exactly the right size */
438 bufferA[length] = 'A';
439 bufferA[length + 1] = 'A';
440 ret = pGetDllDirectoryA(length + 1, bufferA);
441 ok(ret == length, "i=%d, Expected %u, got %u\n", i, length, ret);
442 ok(bufferA[length + 1] == 'A', "i=%d, Buffer overflow\n", i);
443 ok(strcmp(bufferA, dll_directories[i]) == 0, "i=%d, Wrong path returned: '%s'\n", i, bufferA);
445 bufferW[length] = 'A';
446 bufferW[length + 1] = 'A';
447 ret = pGetDllDirectoryW(length + 1, bufferW);
448 ok(ret == length, "i=%d, Expected %u, got %u\n", i, length, ret);
449 ok(bufferW[length + 1] == 'A', "i=%d, Buffer overflow\n", i);
450 ok(cmpStrAW(dll_directories[i], bufferW, length, length),
451 "i=%d, Wrong path returned: %s\n", i, wine_dbgstr_w(bufferW));
453 /* zero size buffer
454 * the A version always null-terminates the buffer,
455 * the W version doesn't do it on some platforms */
456 bufferA[0] = 'A';
457 ret = pGetDllDirectoryA(0, bufferA);
458 ok(ret == length + 1, "i=%d, Expected %u, got %u\n", i, length + 1, ret);
459 ok(bufferA[0] == 0, "i=%d, Buffer not null terminated\n", i);
461 bufferW[0] = 'A';
462 ret = pGetDllDirectoryW(0, bufferW);
463 ok(ret == length + 1, "i=%d, Expected %u, got %u\n", i, length + 1, ret);
464 ok(bufferW[0] == 0 || /* XP, 2003 */
465 broken(bufferW[0] == 'A'), "i=%d, Buffer overflow\n", i);
467 /* buffer just one too short */
468 bufferA[0] = 'A';
469 ret = pGetDllDirectoryA(length, bufferA);
470 ok(ret == length + 1, "i=%d, Expected %u, got %u\n", i, length + 1, ret);
471 ok(bufferA[0] == 0, "i=%d, Buffer not null terminated\n", i);
473 bufferW[0] = 'A';
474 ret = pGetDllDirectoryW(length, bufferW);
475 ok(ret == length + 1, "i=%d, Expected %u, got %u\n", i, length + 1, ret);
476 ok(bufferW[0] == 0 || /* XP, 2003 */
477 broken(bufferW[0] == 'A'), "i=%d, Buffer overflow\n", i);
479 /* no buffer, but too short length */
480 ret = pGetDllDirectoryA(length, NULL);
481 ok(ret == length + 1, "i=%d, Expected %u, got %u\n", i, length + 1, ret);
483 ret = pGetDllDirectoryW(length, NULL);
484 ok(ret == length + 1, "i=%d, Expected %u, got %u\n", i, length + 1, ret);
487 /* unset whatever we did so following tests won't be affected */
488 pSetDllDirectoryA(NULL);
491 static void init_pointers(void)
493 HMODULE hKernel32 = GetModuleHandleA("kernel32.dll");
495 #define MAKEFUNC(f) (p##f = (void*)GetProcAddress(hKernel32, #f))
496 MAKEFUNC(GetDllDirectoryA);
497 MAKEFUNC(GetDllDirectoryW);
498 MAKEFUNC(SetDllDirectoryA);
499 #undef MAKEFUNC
502 START_TEST(module)
504 WCHAR filenameW[MAX_PATH];
506 /* Test if we can use GetModuleFileNameW */
508 SetLastError(0xdeadbeef);
509 GetModuleFileNameW(NULL, filenameW, MAX_PATH);
510 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
512 win_skip("GetModuleFileNameW not existing on this platform, skipping W-calls\n");
513 is_unicode_enabled = FALSE;
516 init_pointers();
518 testGetModuleFileName(NULL);
519 testGetModuleFileName("kernel32.dll");
520 testGetModuleFileName_Wrong();
522 testGetDllDirectory();
524 testLoadLibraryA();
525 testNestedLoadLibraryA();
526 testLoadLibraryA_Wrong();
527 testGetProcAddress_Wrong();
528 testLoadLibraryEx();