2 * Copyright (C) 2004 Stefan Leichter
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "wine/test.h"
28 #define MY_LAST_ERROR -1L
29 #define EXPECT_BAD_PATH__NOT_FOUND \
30 ok( (ERROR_PATH_NOT_FOUND == GetLastError()) || \
31 (ERROR_RESOURCE_DATA_NOT_FOUND == GetLastError()) || \
32 (ERROR_FILE_NOT_FOUND == GetLastError()) || \
33 (ERROR_BAD_PATHNAME == GetLastError()), \
34 "Last error wrong! ERROR_RESOURCE_DATA_NOT_FOUND/ERROR_BAD_PATHNAME (98)/" \
35 "ERROR_PATH_NOT_FOUND (NT4)/ERROR_FILE_NOT_FOUND (2k3)" \
36 "expected, got 0x%08lx\n", GetLastError());
37 #define EXPECT_INVALID__NOT_FOUND \
38 ok( (ERROR_PATH_NOT_FOUND == GetLastError()) || \
39 (ERROR_RESOURCE_DATA_NOT_FOUND == GetLastError()) || \
40 (ERROR_FILE_NOT_FOUND == GetLastError()) || \
41 (ERROR_INVALID_PARAMETER == GetLastError()), \
42 "Last error wrong! ERROR_RESOURCE_DATA_NOT_FOUND/ERROR_INVALID_PARAMETER (98)/" \
43 "ERROR_PATH_NOT_FOUND (NT4)/ERROR_FILE_NOT_FOUND (2k3)" \
44 "expected, got 0x%08lx\n", GetLastError());
46 static void test_info_size(void)
48 char mypath[MAX_PATH] = "";
50 SetLastError(MY_LAST_ERROR);
51 retval = GetFileVersionInfoSizeA( NULL, NULL);
53 "GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
55 EXPECT_INVALID__NOT_FOUND;
58 SetLastError(MY_LAST_ERROR);
59 retval = GetFileVersionInfoSizeA( NULL, &hdl);
61 "GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
63 EXPECT_INVALID__NOT_FOUND;
65 "Handle wrong! 0L expected, got 0x%08lx\n", hdl);
67 SetLastError(MY_LAST_ERROR);
68 retval = GetFileVersionInfoSizeA( "", NULL);
70 "GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
72 EXPECT_BAD_PATH__NOT_FOUND;
75 SetLastError(MY_LAST_ERROR);
76 retval = GetFileVersionInfoSizeA( "", &hdl);
78 "GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
80 EXPECT_BAD_PATH__NOT_FOUND;
82 "Handle wrong! 0L expected, got 0x%08lx\n", hdl);
84 SetLastError(MY_LAST_ERROR);
85 retval = GetFileVersionInfoSizeA( "kernel32.dll", NULL);
87 "GetFileVersionInfoSizeA result wrong! <> 0L expected, got 0x%08lx\n",
89 ok((NO_ERROR == GetLastError()) || (MY_LAST_ERROR == GetLastError()),
90 "Last error wrong! NO_ERROR/0x%08lx (NT4) expected, got 0x%08lx\n",
91 MY_LAST_ERROR, GetLastError());
94 SetLastError(MY_LAST_ERROR);
95 retval = GetFileVersionInfoSizeA( "kernel32.dll", &hdl);
97 "GetFileVersionInfoSizeA result wrong! <> 0L expected, got 0x%08lx\n",
99 ok((NO_ERROR == GetLastError()) || (MY_LAST_ERROR == GetLastError()),
100 "Last error wrong! NO_ERROR/0x%08lx (NT4) expected, got 0x%08lx\n",
101 MY_LAST_ERROR, GetLastError());
103 "Handle wrong! 0L expected, got 0x%08lx\n", hdl);
105 SetLastError(MY_LAST_ERROR);
106 retval = GetFileVersionInfoSizeA( "notexist.dll", NULL);
108 "GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
110 ok( (ERROR_FILE_NOT_FOUND == GetLastError()) ||
111 (ERROR_RESOURCE_DATA_NOT_FOUND == GetLastError()) ||
112 (MY_LAST_ERROR == GetLastError()),
113 "Last error wrong! ERROR_FILE_NOT_FOUND/ERROR_RESOURCE_DATA_NOT_FOUND "
114 "(XP)/0x%08lx (NT4) expected, got 0x%08lx\n", MY_LAST_ERROR, GetLastError());
116 /* test a currently loaded executable */
117 if(GetModuleFileNameA(NULL, mypath, MAX_PATH)) {
119 SetLastError(MY_LAST_ERROR);
120 retval = GetFileVersionInfoSizeA( mypath, &hdl);
122 "GetFileVersionInfoSizeA result wrong! <> 0L expected, got 0x%08lx\n",
124 ok((NO_ERROR == GetLastError()) || (MY_LAST_ERROR == GetLastError()),
125 "Last error wrong! NO_ERROR/0x%08lx (NT4) expected, got 0x%08lx\n",
126 MY_LAST_ERROR, GetLastError());
128 "Handle wrong! 0L expected, got 0x%08lx\n", hdl);
131 trace("skipping GetModuleFileNameA(NULL,..) failed\n");
133 /* test a not loaded executable */
134 if(GetSystemDirectoryA(mypath, MAX_PATH)) {
135 lstrcatA(mypath, "\\regsvr32.exe");
137 if(INVALID_FILE_ATTRIBUTES == GetFileAttributesA(mypath))
138 trace("GetFileAttributesA(%s) failed\n", mypath);
141 SetLastError(MY_LAST_ERROR);
142 retval = GetFileVersionInfoSizeA( mypath, &hdl);
144 "GetFileVersionInfoSizeA result wrong! <> 0L expected, got 0x%08lx\n",
146 ok((NO_ERROR == GetLastError()) || (MY_LAST_ERROR == GetLastError()),
147 "Last error wrong! NO_ERROR/0x%08lx (NT4) expected, got 0x%08lx\n",
148 MY_LAST_ERROR, GetLastError());
150 "Handle wrong! 0L expected, got 0x%08lx\n", hdl);
154 trace("skipping GetModuleFileNameA(NULL,..) failed\n");
157 static void VersionDwordLong2String(DWORDLONG Version, LPSTR lpszVerString)
161 a = (WORD)(Version >> 48);
162 b = (WORD)((Version >> 32) & 0xffff);
163 c = (WORD)((Version >> 16) & 0xffff);
164 d = (WORD)(Version & 0xffff);
166 sprintf(lpszVerString, "%d.%d.%d.%d", a, b, c, d);
171 static void test_info(void)
174 PVOID pVersionInfo = NULL;
176 VS_FIXEDFILEINFO *pFixedVersionInfo;
178 char VersionString[MAX_PATH];
179 DWORDLONG dwlVersion;
182 SetLastError(MY_LAST_ERROR);
183 retval = GetFileVersionInfoSizeA( "kernel32.dll", &hdl);
185 "GetFileVersionInfoSizeA result wrong! <> 0L expected, got 0x%08lx\n",
187 ok((NO_ERROR == GetLastError()) || (MY_LAST_ERROR == GetLastError()),
188 "Last error wrong! NO_ERROR/0x%08lx (NT4) expected, got 0x%08lx\n",
189 MY_LAST_ERROR, GetLastError());
191 "Handle wrong! 0L expected, got 0x%08lx\n", hdl);
193 if ( retval == 0 || hdl != 0)
196 pVersionInfo = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, retval );
197 ok(pVersionInfo != 0, "HeapAlloc failed\n" );
198 if (pVersionInfo == 0)
202 /* this test crashes on WinNT4
204 boolret = GetFileVersionInfoA( "kernel32.dll", 0, retval, 0);
205 ok (!boolret, "GetFileVersionInfoA should have failed: GetLastError = 0x%08lx\n", GetLastError());
206 ok ((GetLastError() == ERROR_INVALID_DATA) || (GetLastError() == ERROR_BAD_PATHNAME) ||
207 (GetLastError() == NO_ERROR),
208 "Last error wrong! ERROR_INVALID_DATA/ERROR_BAD_PATHNAME (ME)/"
209 "NO_ERROR (95) expected, got 0x%08lx\n",
213 boolret = GetFileVersionInfoA( "kernel32.dll", 0, retval, pVersionInfo );
214 ok (boolret, "GetFileVersionInfoA failed: GetLastError = 0x%08lx\n", GetLastError());
218 boolret = VerQueryValueA( pVersionInfo, "\\", (LPVOID *)&pFixedVersionInfo, &uiLength );
219 ok (boolret, "VerQueryValueA failed: GetLastError = 0x%08lx\n", GetLastError());
223 dwlVersion = (((DWORDLONG)pFixedVersionInfo->dwFileVersionMS) << 32) +
224 pFixedVersionInfo->dwFileVersionLS;
226 VersionDwordLong2String(dwlVersion, VersionString);
228 trace("kernel32.dll version: %s\n", VersionString);
231 /* this test crashes on WinNT4
233 boolret = VerQueryValueA( pVersionInfo, "\\", (LPVOID *)&pFixedVersionInfo, 0);
234 ok (boolret, "VerQueryValue failed: GetLastError = 0x%08lx\n", GetLastError());
238 static void test_unicode(void)
243 PVOID pVersionInfoA = NULL;
244 PVOID pVersionInfoW = NULL;
245 char mypathA[MAX_PATH] = "";
246 WCHAR mypathW[MAX_PATH];
248 /* If we call GetFileVersionInfoA on a system that supports Unicode (NT/W2K/XP/W2K3 by default)
249 * then the versioninfo will contain Unicode strings.
250 * Wine however always converts a VersionInfo32 to VersionInfo16 when called through GetFileVersionInfoA
251 * regardless of Windows version
252 * The test is to call both the A and W versions, which should have the same Version Information,
253 * on systems that support both calls.
256 /* First get the versioninfo via the W versions */
257 GetModuleFileNameW(NULL, mypathW, MAX_PATH);
258 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
260 trace("GetModuleFileNameW not existing on this platform, skipping rest of test\n");
264 retvalW = GetFileVersionInfoSizeW( mypathW, &hdlW);
265 pVersionInfoW = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, retvalW );
266 retW = GetFileVersionInfoW( mypathW, 0, retvalW, pVersionInfoW );
268 /* And now via the A versions */
269 GetModuleFileNameA(NULL, mypathA, MAX_PATH);
270 retvalA = GetFileVersionInfoSizeA( mypathA, &hdlA);
271 pVersionInfoA = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, retvalA );
272 retA = GetFileVersionInfoA( mypathA, 0, retvalA, pVersionInfoA );
274 ok( retvalA == retvalW, "The size of the struct should be the same for both A/W calls, it is (%ld) vs. (%ld)\n",
279 ok( !memcmp(pVersionInfoA, pVersionInfoW, retvalA), "Both structs should be the same, they aren't\n");
282 HeapFree( GetProcessHeap(), 0, pVersionInfoA);
283 HeapFree( GetProcessHeap(), 0, pVersionInfoW);