msi: Set all folders' source paths to the root directory if the source type is compre...
[wine] / dlls / advpack / tests / advpack.c
1 /*
2  * Unit tests for advpack.dll
3  *
4  * Copyright (C) 2005 Robert Reif
5  * Copyright (C) 2005 Sami Aario
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include <stdio.h>
23 #include <stdarg.h>
24 #include <windows.h>
25 #include <advpub.h>
26 #include <assert.h>
27 #include "wine/test.h"
28
29 /* defines for the TranslateInfString/Ex tests */
30 #define TEST_STRING1 "\\Application Name"
31 #define TEST_STRING2 "%49001%\\Application Name"
32
33 /* defines for the SetPerUserSecValues tests */
34 #define GUID_KEY    "SOFTWARE\\Microsoft\\Active Setup\\Installed Components\\guid"
35 #define REG_VAL_EXISTS(key, value)   !RegQueryValueEx(key, value, NULL, NULL, NULL, NULL)
36 #define OPEN_GUID_KEY() !RegOpenKey(HKEY_LOCAL_MACHINE, GUID_KEY, &guid)
37
38 static HMODULE hAdvPack;
39 static HRESULT (WINAPI *pCloseINFEngine)(HINF);
40 static HRESULT (WINAPI *pDelNode)(LPCSTR,DWORD);
41 static HRESULT (WINAPI *pGetVersionFromFile)(LPCSTR,LPDWORD,LPDWORD,BOOL);
42 static HRESULT (WINAPI *pOpenINFEngine)(PCSTR,PCSTR,DWORD,HINF*,PVOID);
43 static HRESULT (WINAPI *pSetPerUserSecValues)(PPERUSERSECTION pPerUser);
44 static HRESULT (WINAPI *pTranslateInfString)(LPCSTR,LPCSTR,LPCSTR,LPCSTR,LPSTR,DWORD,LPDWORD,LPVOID);
45 static HRESULT (WINAPI *pTranslateInfStringEx)(HINF,PCSTR,PCSTR,PCSTR,PSTR,DWORD,PDWORD,PVOID);
46
47 static CHAR inf_file[MAX_PATH];
48 static CHAR PROG_FILES_ROOT[MAX_PATH];
49 static CHAR PROG_FILES[MAX_PATH];
50 static CHAR APP_PATH[MAX_PATH];
51 static DWORD APP_PATH_LEN;
52
53 static void get_progfiles_dir(void)
54 {
55     HKEY hkey;
56     DWORD size = MAX_PATH;
57
58     RegOpenKeyA(HKEY_LOCAL_MACHINE, "Software\\Microsoft\\Windows\\CurrentVersion", &hkey);
59     RegQueryValueExA(hkey, "ProgramFilesDir", NULL, NULL, (LPBYTE)PROG_FILES_ROOT, &size);
60     RegCloseKey(hkey);
61
62     lstrcpyA(PROG_FILES, PROG_FILES_ROOT + 3); /* skip C:\ */
63     lstrcpyA(APP_PATH, PROG_FILES_ROOT);
64     lstrcatA(APP_PATH, TEST_STRING1);
65     APP_PATH_LEN = lstrlenA(APP_PATH) + 1;
66 }
67
68 static BOOL init_function_pointers(void)
69 {
70     hAdvPack = LoadLibraryA("advpack.dll");
71
72     if (!hAdvPack)
73         return FALSE;
74
75     pCloseINFEngine = (void*)GetProcAddress(hAdvPack, "CloseINFEngine");
76     pDelNode = (void *)GetProcAddress(hAdvPack, "DelNode");
77     pGetVersionFromFile = (void *)GetProcAddress(hAdvPack, "GetVersionFromFile");
78     pOpenINFEngine = (void*)GetProcAddress(hAdvPack, "OpenINFEngine");
79     pSetPerUserSecValues = (void*)GetProcAddress(hAdvPack, "SetPerUserSecValues");
80     pTranslateInfString = (void *)GetProcAddress(hAdvPack, "TranslateInfString");
81     pTranslateInfStringEx = (void*)GetProcAddress(hAdvPack, "TranslateInfStringEx");
82
83     if (!pCloseINFEngine || !pDelNode || !pGetVersionFromFile ||
84         !pOpenINFEngine || !pSetPerUserSecValues || !pTranslateInfString)
85     {
86         skip("Needed functions are not available\n");
87         FreeLibrary(hAdvPack);
88         return FALSE;
89     }
90
91     return TRUE;
92 }
93
94 static void version_test(void)
95 {
96     HRESULT hr;
97     DWORD major, minor;
98
99     major = minor = 0;
100     hr = pGetVersionFromFile("kernel32.dll", &major, &minor, FALSE);
101     ok (hr == S_OK, "GetVersionFromFileEx(kernel32.dll) failed, returned "
102         "0x%08x\n", hr);
103     trace("kernel32.dll Language ID: 0x%08x, Codepage ID: 0x%08x\n",
104            major, minor);
105
106     major = minor = 0;
107     hr = pGetVersionFromFile("kernel32.dll", &major, &minor, TRUE);
108     ok (hr == S_OK, "GetVersionFromFileEx(kernel32.dll) failed, returned "
109         "0x%08x\n", hr);
110     trace("kernel32.dll version: %d.%d.%d.%d\n", HIWORD(major), LOWORD(major),
111           HIWORD(minor), LOWORD(minor));
112
113     major = minor = 0;
114     hr = pGetVersionFromFile("advpack.dll", &major, &minor, FALSE);
115     ok (hr == S_OK, "GetVersionFromFileEx(advpack.dll) failed, returned "
116         "0x%08x\n", hr);
117     trace("advpack.dll Language ID: 0x%08x, Codepage ID: 0x%08x\n",
118            major, minor);
119
120     major = minor = 0;
121     hr = pGetVersionFromFile("advpack.dll", &major, &minor, TRUE);
122     ok (hr == S_OK, "GetVersionFromFileEx(advpack.dll) failed, returned "
123         "0x%08x\n", hr);
124     trace("advpack.dll version: %d.%d.%d.%d\n", HIWORD(major), LOWORD(major),
125           HIWORD(minor), LOWORD(minor));
126 }
127
128 static void delnode_test(void)
129 {
130     HRESULT hr;
131     HANDLE hn;
132     CHAR currDir[MAX_PATH];
133     int currDirLen;
134
135     /* Native DelNode apparently does not support relative paths, so we use
136        absolute paths for testing */
137     currDirLen = GetCurrentDirectoryA(sizeof(currDir) / sizeof(CHAR), currDir);
138     assert(currDirLen > 0 && currDirLen < sizeof(currDir) / sizeof(CHAR));
139
140     if(currDir[currDirLen - 1] == '\\')
141         currDir[--currDirLen] = 0;
142
143     /* Simple tests; these should fail. */
144     hr = pDelNode(NULL, 0);
145     ok (hr == E_FAIL, "DelNode called with NULL pathname should return E_FAIL\n");
146     hr = pDelNode("", 0);
147     ok (hr == E_FAIL, "DelNode called with empty pathname should return E_FAIL\n");
148
149     /* Test deletion of a file. */
150     hn = CreateFile("DelNodeTestFile1", GENERIC_WRITE, 0, NULL,
151         CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
152     assert(hn != INVALID_HANDLE_VALUE);
153     CloseHandle(hn);
154     hr = pDelNode(lstrcat(currDir, "\\DelNodeTestFile1"), 0);
155     ok (hr == S_OK, "DelNode failed deleting a single file\n");
156     currDir[currDirLen] = '\0';
157
158     /* Test deletion of an empty directory. */
159     CreateDirectoryA("DelNodeTestDir", NULL);
160     hr = pDelNode(lstrcat(currDir, "\\DelNodeTestDir"), 0);
161     ok (hr == S_OK, "DelNode failed deleting an empty directory\n");
162     currDir[currDirLen] = '\0';
163
164     /* Test deletion of a directory containing one file. */
165     CreateDirectoryA("DelNodeTestDir", NULL);
166     hn = CreateFile("DelNodeTestDir\\DelNodeTestFile1", GENERIC_WRITE, 0, NULL,
167         CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
168     assert(hn != INVALID_HANDLE_VALUE);
169     CloseHandle(hn);
170     hr = pDelNode(lstrcat(currDir, "\\DelNodeTestDir"), 0);
171     ok (hr == S_OK, "DelNode failed deleting a directory containing one file\n");
172     currDir[currDirLen] = '\0';
173
174     /* Test deletion of a directory containing multiple files. */
175     CreateDirectoryA("DelNodeTestDir", NULL);
176     hn = CreateFile("DelNodeTestDir\\DelNodeTestFile1", GENERIC_WRITE, 0, NULL,
177         CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
178     assert(hn != INVALID_HANDLE_VALUE);
179     CloseHandle(hn);
180     hn = CreateFile("DelNodeTestDir\\DelNodeTestFile2", GENERIC_WRITE, 0, NULL,
181         CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
182     assert(hn != INVALID_HANDLE_VALUE);
183     CloseHandle(hn);
184     hn = CreateFile("DelNodeTestDir\\DelNodeTestFile3", GENERIC_WRITE, 0, NULL,
185         CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
186     assert(hn != INVALID_HANDLE_VALUE);
187     CloseHandle(hn);
188     hr = pDelNode(lstrcat(currDir, "\\DelNodeTestDir"), 0);
189     ok (hr == S_OK, "DelNode failed deleting a directory containing multiple files\n");
190     currDir[currDirLen] = '\0';
191 }
192
193 static void append_str(char **str, const char *data, ...)
194 {
195     va_list valist;
196
197     va_start(valist, data);
198     vsprintf(*str, data, valist);
199     *str += strlen(*str);
200     va_end(valist);
201 }
202
203 static void create_inf_file(void)
204 {
205     char data[1024];
206     char *ptr = data;
207     DWORD dwNumberOfBytesWritten;
208     HANDLE hf = CreateFile(inf_file, GENERIC_WRITE, 0, NULL,
209                            CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
210
211     append_str(&ptr, "[Version]\n");
212     append_str(&ptr, "Signature=\"$Chicago$\"\n");
213     append_str(&ptr, "[CustInstDestSection]\n");
214     append_str(&ptr, "49001=ProgramFilesDir\n");
215     append_str(&ptr, "49010=DestA,1\n");
216     append_str(&ptr, "49020=DestB\n");
217     append_str(&ptr, "49030=DestC\n");
218     append_str(&ptr, "[ProgramFilesDir]\n");
219     append_str(&ptr, "HKLM,\"Software\\Microsoft\\Windows\\CurrentVersion\",");
220     append_str(&ptr, "\"ProgramFilesDir\",,\"%%24%%\\%%LProgramF%%\"\n");
221     append_str(&ptr, "[section]\n");
222     append_str(&ptr, "NotACustomDestination=Version\n");
223     append_str(&ptr, "CustomDestination=CustInstDestSection\n");
224     append_str(&ptr, "[Options.NTx86]\n");
225     append_str(&ptr, "49001=ProgramFilesDir\n");
226     append_str(&ptr, "InstallDir=%%49001%%\\%%DefaultAppPath%%\n");
227     append_str(&ptr, "Result1=%%49010%%\n");
228     append_str(&ptr, "Result2=%%49020%%\n");
229     append_str(&ptr, "Result3=%%49030%%\n");
230     append_str(&ptr, "CustomHDestination=CustInstDestSection\n");
231     append_str(&ptr, "[Strings]\n");
232     append_str(&ptr, "DefaultAppPath=\"Application Name\"\n");
233     append_str(&ptr, "LProgramF=\"%s\"\n", PROG_FILES);
234     append_str(&ptr, "[DestA]\n");
235     append_str(&ptr, "HKLM,\"Software\\Garbage\",\"ProgramFilesDir\",,'%%24%%\\%%LProgramF%%'\n");
236     append_str(&ptr, "[DestB]\n");
237     append_str(&ptr, "'HKLM','Software\\Microsoft\\Windows\\CurrentVersion',");
238     append_str(&ptr, "'ProgramFilesDir',,\"%%24%%\"\n");
239     append_str(&ptr, "[DestC]\n");
240     append_str(&ptr, "HKLM,\"Software\\Garbage\",\"ProgramFilesDir\",,'%%24%%'\n");
241
242     WriteFile(hf, data, ptr - data, &dwNumberOfBytesWritten, NULL);
243     CloseHandle(hf);
244 }
245
246 static void translateinfstring_test(void)
247 {
248     HRESULT hr;
249     char buffer[MAX_PATH];
250     DWORD dwSize;
251
252     create_inf_file();
253
254     /* pass in a couple invalid parameters */
255     hr = pTranslateInfString(NULL, NULL, NULL, NULL, buffer, MAX_PATH, &dwSize, NULL);
256     ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got 0x%08x\n", (UINT)hr);
257
258     /* try to open an inf file that doesn't exist */
259     hr = pTranslateInfString("c:\\a.inf", "Options.NTx86", "Options.NTx86",
260                              "InstallDir", buffer, MAX_PATH, &dwSize, NULL);
261     ok(hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) || hr == E_INVALIDARG || 
262        hr == HRESULT_FROM_WIN32(ERROR_MOD_NOT_FOUND), 
263        "Expected E_INVALIDARG, 0x80070002 or 0x8007007e, got 0x%08x\n", (UINT)hr);
264
265     if(hr == HRESULT_FROM_WIN32(ERROR_MOD_NOT_FOUND))
266     {
267         trace("WinNT 3.51 detected. Skipping tests for TranslateInfString()\n");
268         return;
269     }
270
271     /* try a nonexistent section */
272     buffer[0] = 0;
273     hr = pTranslateInfString(inf_file, "idontexist", "Options.NTx86",
274                              "InstallDir", buffer, MAX_PATH, &dwSize, NULL);
275     ok(hr == S_OK, "Expected S_OK, got 0x%08x\n", (UINT)hr);
276     ok(!strcmp(buffer, TEST_STRING2), "Expected %s, got %s\n", TEST_STRING2, buffer);
277     ok(dwSize == 25, "Expected size 25, got %d\n", dwSize);
278
279     buffer[0] = 0;
280     /* try other nonexistent section */
281     hr = pTranslateInfString(inf_file, "Options.NTx86", "idontexist",
282                              "InstallDir", buffer, MAX_PATH, &dwSize, NULL);
283     ok(hr == SPAPI_E_LINE_NOT_FOUND || hr == E_INVALIDARG, 
284        "Expected SPAPI_E_LINE_NOT_FOUND or E_INVALIDARG, got 0x%08x\n", (UINT)hr);
285
286     buffer[0] = 0;
287     /* try nonexistent key */
288     hr = pTranslateInfString(inf_file, "Options.NTx86", "Options.NTx86",
289                              "notvalid", buffer, MAX_PATH, &dwSize, NULL);
290     ok(hr == SPAPI_E_LINE_NOT_FOUND || hr == E_INVALIDARG, 
291        "Expected SPAPI_E_LINE_NOT_FOUND or E_INVALIDARG, got 0x%08x\n", (UINT)hr);
292
293     buffer[0] = 0;
294     /* test the behavior of pszInstallSection */
295     hr = pTranslateInfString(inf_file, "section", "Options.NTx86",
296                              "InstallDir", buffer, MAX_PATH, &dwSize, NULL);
297     ok(hr == ERROR_SUCCESS || hr == E_FAIL, 
298        "Expected ERROR_SUCCESS or E_FAIL, got 0x%08x\n", (UINT)hr);
299
300     if(hr == ERROR_SUCCESS)
301     {
302         ok(!strcmp(buffer, APP_PATH), "Expected '%s', got '%s'\n", APP_PATH, buffer);
303         ok(dwSize == APP_PATH_LEN, "Expected size %d, got %d\n", APP_PATH_LEN, dwSize);
304     }
305
306     buffer[0] = 0;
307     /* try without a pszInstallSection */
308     hr = pTranslateInfString(inf_file, NULL, "Options.NTx86",
309                              "InstallDir", buffer, MAX_PATH, &dwSize, NULL);
310     ok(hr == S_OK, "Expected S_OK, got 0x%08x\n", (UINT)hr);
311     todo_wine
312     {
313         ok(!strcmp(buffer, TEST_STRING2), "Expected %s, got %s\n", TEST_STRING2, buffer);
314         ok(dwSize == 25, "Expected size 25, got %d\n", dwSize);
315     }
316
317     DeleteFile("c:\\a.inf");
318     DeleteFile(inf_file);
319 }
320
321 static void translateinfstringex_test(void)
322 {
323     HINF hinf;
324     HRESULT hr;
325     char buffer[MAX_PATH];
326     DWORD size = MAX_PATH;
327
328     create_inf_file();
329     
330     /* need to see if there are any flags */
331
332     /* try a NULL filename */
333     hr = pOpenINFEngine(NULL, "Options.NTx86", 0, &hinf, NULL);
334     ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %08x\n", hr);
335
336     /* try an empty filename */
337     hr = pOpenINFEngine("", "Options.NTx86", 0, &hinf, NULL);
338     ok(hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) /* NT+ */ ||
339        hr == HRESULT_FROM_WIN32(E_UNEXPECTED) /* 9x */,
340         "Expected HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND or E_UNEXPECTED), got %08x\n", hr);
341
342     /* try a NULL hinf */
343     hr = pOpenINFEngine(inf_file, "Options.NTx86", 0, NULL, NULL);
344     ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %08x\n", hr);
345
346     /* open the INF without the Install section specified */
347     hr = pOpenINFEngine(inf_file, NULL, 0, &hinf, NULL);
348     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
349
350     /* try a NULL hinf */
351     hr = pTranslateInfStringEx(NULL, inf_file, "Options.NTx86", "InstallDir",
352                               buffer, size, &size, NULL);
353     ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %08x\n", hr);
354
355     /* try a NULL filename */
356     hr = pTranslateInfStringEx(hinf, NULL, "Options.NTx86", "InstallDir",
357                               buffer, size, &size, NULL);
358     ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %08x\n", hr);
359
360     /* try an empty filename */
361     memset(buffer, 'a', 25);
362     buffer[24] = '\0';
363     size = MAX_PATH;
364     hr = pTranslateInfStringEx(hinf, "", "Options.NTx86", "InstallDir",
365                               buffer, size, &size, NULL);
366     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
367     todo_wine
368     {
369         ok(!strcmp(buffer, TEST_STRING2), "Expected %s, got %s\n", TEST_STRING2, buffer);
370         ok(size == 25, "Expected size 25, got %d\n", size);
371     }
372
373     /* try a NULL translate section */
374     hr = pTranslateInfStringEx(hinf, inf_file, NULL, "InstallDir",
375                               buffer, size, &size, NULL);
376     ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %08x\n", hr);
377
378     /* try an empty translate section */
379     hr = pTranslateInfStringEx(hinf, inf_file, "", "InstallDir",
380                               buffer, size, &size, NULL);
381     ok(hr == SPAPI_E_LINE_NOT_FOUND, "Expected SPAPI_E_LINE_NOT_FOUND, got %08x\n", hr);
382
383     /* try a NULL translate key */
384     hr = pTranslateInfStringEx(hinf, inf_file, "Options.NTx86", NULL,
385                               buffer, size, &size, NULL);
386     ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %08x\n", hr);
387
388     /* try an empty translate key */
389     hr = pTranslateInfStringEx(hinf, inf_file, "Options.NTx86", "",
390                               buffer, size, &size, NULL);
391     ok(hr == SPAPI_E_LINE_NOT_FOUND, "Expected SPAPI_E_LINE_NOT_FOUND, got %08x\n", hr);
392
393     /* successfully translate the string */
394     memset(buffer, 'a', 25);
395     buffer[24] = '\0';
396     size = MAX_PATH;
397     hr = pTranslateInfStringEx(hinf, inf_file, "Options.NTx86", "InstallDir",
398                               buffer, size, &size, NULL);
399     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
400     todo_wine
401     {
402         ok(!strcmp(buffer, TEST_STRING2), "Expected %s, got %s\n", TEST_STRING2, buffer);
403         ok(size == 25, "Expected size 25, got %d\n", size);
404     }
405
406     /* try a NULL hinf */
407     hr = pCloseINFEngine(NULL);
408     ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %08x\n", hr);
409
410     /* successfully close the hinf */
411     hr = pCloseINFEngine(hinf);
412     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
413
414     /* open the inf with the install section */
415     hr = pOpenINFEngine(inf_file, "section", 0, &hinf, NULL);
416     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
417
418     /* translate the string with the install section specified */
419     memset(buffer, 'a', APP_PATH_LEN);
420     buffer[APP_PATH_LEN - 1] = '\0';
421     size = MAX_PATH;
422     hr = pTranslateInfStringEx(hinf, inf_file, "Options.NTx86", "InstallDir",
423                               buffer, size, &size, NULL);
424     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
425     ok(!strcmp(buffer, APP_PATH), "Expected %s, got %s\n", APP_PATH, buffer);
426     ok(size == APP_PATH_LEN, "Expected size %d, got %d\n", APP_PATH_LEN, size);
427
428     /* Single quote test (Note size includes null on return from call) */
429     memset(buffer, 'a', APP_PATH_LEN);
430     buffer[APP_PATH_LEN - 1] = '\0';
431     size = MAX_PATH;
432     hr = pTranslateInfStringEx(hinf, inf_file, "Options.NTx86", "Result1",
433                               buffer, size, &size, NULL);
434     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
435     ok(!lstrcmpi(buffer, PROG_FILES_ROOT),
436            "Expected %s, got %s\n", PROG_FILES_ROOT, buffer);
437     ok(size == lstrlenA(PROG_FILES_ROOT)+1, "Expected size %d, got %d\n",
438            lstrlenA(PROG_FILES_ROOT)+1, size);
439
440     memset(buffer, 'a', APP_PATH_LEN);
441     buffer[APP_PATH_LEN - 1] = '\0';
442     size = MAX_PATH;
443     hr = pTranslateInfStringEx(hinf, inf_file, "Options.NTx86", "Result2",
444                               buffer, size, &size, NULL);
445     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
446     ok(!lstrcmpi(buffer, PROG_FILES_ROOT),
447            "Expected %s, got %s\n", PROG_FILES_ROOT, buffer);
448     ok(size == lstrlenA(PROG_FILES_ROOT)+1, "Expected size %d, got %d\n",
449            lstrlenA(PROG_FILES_ROOT)+1, size);
450
451     {
452         char drive[MAX_PATH];
453         lstrcpy(drive, PROG_FILES_ROOT);
454         drive[3] = 0x00; /* Just keep the system drive plus '\' */
455
456         memset(buffer, 'a', APP_PATH_LEN);
457         buffer[APP_PATH_LEN - 1] = '\0';
458         size = MAX_PATH;
459         hr = pTranslateInfStringEx(hinf, inf_file, "Options.NTx86", "Result3",
460                                   buffer, size, &size, NULL);
461         ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
462         ok(!lstrcmpi(buffer, drive),
463                "Expected %s, got %s\n", drive, buffer);
464         ok(size == lstrlenA(drive)+1, "Expected size %d, got %d\n",
465                lstrlenA(drive)+1, size);
466     }
467
468     /* close the INF again */
469     hr = pCloseINFEngine(hinf);
470     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
471
472     DeleteFileA(inf_file);
473
474     /* Create another .inf file which is just here to trigger a wine bug */
475     {
476         char data[1024];
477         char *ptr = data;
478         DWORD dwNumberOfBytesWritten;
479         HANDLE hf = CreateFile(inf_file, GENERIC_WRITE, 0, NULL,
480                            CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
481
482         append_str(&ptr, "[Version]\n");
483         append_str(&ptr, "Signature=\"$Chicago$\"\n");
484         append_str(&ptr, "[section]\n");
485         append_str(&ptr, "NotACustomDestination=Version\n");
486         append_str(&ptr, "CustomDestination=CustInstDestSection\n");
487         append_str(&ptr, "[CustInstDestSection]\n");
488         append_str(&ptr, "49010=DestA,1\n");
489         append_str(&ptr, "49020=DestB\n");
490         append_str(&ptr, "49030=DestC\n");
491         append_str(&ptr, "49040=DestD\n");
492         append_str(&ptr, "[Options.NTx86]\n");
493         append_str(&ptr, "Result2=%%49030%%\n");
494         append_str(&ptr, "[DestA]\n");
495         append_str(&ptr, "HKLM,\"Software\\Garbage\",\"ProgramFilesDir\",,'%%24%%'\n");
496         /* The point of this test is to have HKCU just before the quoted HKLM */
497         append_str(&ptr, "[DestB]\n");
498         append_str(&ptr, "HKCU,\"Software\\Garbage\",\"ProgramFilesDir\",,'%%24%%'\n");
499         append_str(&ptr, "[DestC]\n");
500         append_str(&ptr, "'HKLM','Software\\Microsoft\\Windows\\CurrentVersion',");
501         append_str(&ptr, "'ProgramFilesDir',,\"%%24%%\"\n");
502         append_str(&ptr, "[DestD]\n");
503         append_str(&ptr, "HKLM,\"Software\\Garbage\",\"ProgramFilesDir\",,'%%24%%'\n");
504
505         WriteFile(hf, data, ptr - data, &dwNumberOfBytesWritten, NULL);
506         CloseHandle(hf);
507     }
508
509     /* open the inf with the install section */
510     hr = pOpenINFEngine(inf_file, "section", 0, &hinf, NULL);
511     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
512
513     /* Single quote test (Note size includes null on return from call) */
514     memset(buffer, 'a', APP_PATH_LEN);
515     buffer[APP_PATH_LEN - 1] = '\0';
516     size = MAX_PATH;
517     hr = pTranslateInfStringEx(hinf, inf_file, "Options.NTx86", "Result2",
518                               buffer, size, &size, NULL);
519     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
520     ok(!lstrcmpi(buffer, PROG_FILES_ROOT),
521            "Expected %s, got %s\n", PROG_FILES_ROOT, buffer);
522     ok(size == lstrlenA(PROG_FILES_ROOT)+1, "Expected size %d, got %d\n",
523            lstrlenA(PROG_FILES_ROOT)+1, size);
524
525     /* close the INF again */
526     hr = pCloseINFEngine(hinf);
527     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
528
529     DeleteFileA(inf_file);
530 }
531
532 static BOOL check_reg_str(HKEY hkey, LPCSTR name, LPCSTR value)
533 {
534     DWORD size = MAX_PATH;
535     char check[MAX_PATH];
536
537     if (RegQueryValueEx(hkey, name, NULL, NULL, (LPBYTE)check, &size))
538         return FALSE;
539
540     return !lstrcmp(check, value);
541 }
542
543 static BOOL check_reg_dword(HKEY hkey, LPCSTR name, DWORD value)
544 {
545     DWORD size = sizeof(DWORD);
546     DWORD check;
547
548     if (RegQueryValueEx(hkey, name, NULL, NULL, (LPBYTE)&check, &size))
549         return FALSE;
550
551     return (check == value);
552 }
553
554 static void setperusersecvalues_test(void)
555 {
556     PERUSERSECTION peruser;
557     HRESULT hr;
558     HKEY guid;
559
560     lstrcpy(peruser.szDispName, "displayname");
561     lstrcpy(peruser.szLocale, "locale");
562     lstrcpy(peruser.szStub, "stub");
563     lstrcpy(peruser.szVersion, "1,1,1,1");
564     lstrcpy(peruser.szCompID, "compid");
565     peruser.dwIsInstalled = 1;
566     peruser.bRollback = FALSE;
567
568     /* try a NULL pPerUser */
569     if (0)
570     {
571         /* This crashes on systems with IE7 */
572         hr = pSetPerUserSecValues(NULL);
573         todo_wine
574         ok(hr == S_OK, "Expected S_OK, got %d\n", hr);
575         ok(!OPEN_GUID_KEY(), "Expected guid key to not exist\n");
576     }
577
578     /* at the very least, szGUID must be valid */
579     peruser.szGUID[0] = '\0';
580     hr = pSetPerUserSecValues(&peruser);
581     ok(hr == S_OK, "Expected S_OK, got %d\n", hr);
582     ok(!OPEN_GUID_KEY(), "Expected guid key to not exist\n");
583
584     /* set initial values */
585     lstrcpy(peruser.szGUID, "guid");
586     hr = pSetPerUserSecValues(&peruser);
587     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
588     ok(OPEN_GUID_KEY(), "Expected guid key to exist\n");
589     ok(check_reg_str(guid, NULL, "displayname"), "Expected displayname\n");
590     ok(check_reg_str(guid, "ComponentID", "compid"), "Expected compid\n");
591     ok(check_reg_str(guid, "Locale", "locale"), "Expected locale\n");
592     ok(check_reg_str(guid, "StubPath", "stub"), "Expected stub\n");
593     ok(check_reg_str(guid, "Version", "1,1,1,1"), "Expected 1,1,1,1\n");
594     ok(check_reg_dword(guid, "IsInstalled", 1), "Expected 1\n");
595     ok(!REG_VAL_EXISTS(guid, "OldDisplayName"), "Expected OldDisplayName to not exist\n");
596     ok(!REG_VAL_EXISTS(guid, "OldLocale"), "Expected OldLocale to not exist\n");
597     ok(!REG_VAL_EXISTS(guid, "OldStubPath"), "Expected OldStubPath to not exist\n");
598     ok(!REG_VAL_EXISTS(guid, "OldVersion"), "Expected OldVersion to not exist\n");
599     ok(!REG_VAL_EXISTS(guid, "RealStubPath"), "Expected RealStubPath to not exist\n");
600
601     /* raise the version, but bRollback is FALSE, so vals not saved */
602     lstrcpy(peruser.szVersion, "2,1,1,1");
603     hr = pSetPerUserSecValues(&peruser);
604     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
605     ok(check_reg_str(guid, NULL, "displayname"), "Expected displayname\n");
606     ok(check_reg_str(guid, "ComponentID", "compid"), "Expected compid\n");
607     ok(check_reg_str(guid, "Locale", "locale"), "Expected locale\n");
608     ok(check_reg_str(guid, "StubPath", "stub"), "Expected stub\n");
609     ok(check_reg_str(guid, "Version", "2,1,1,1"), "Expected 2,1,1,1\n");
610     ok(check_reg_dword(guid, "IsInstalled", 1), "Expected 1\n");
611     ok(!REG_VAL_EXISTS(guid, "OldDisplayName"), "Expected OldDisplayName to not exist\n");
612     ok(!REG_VAL_EXISTS(guid, "OldLocale"), "Expected OldLocale to not exist\n");
613     ok(!REG_VAL_EXISTS(guid, "OldStubPath"), "Expected OldStubPath to not exist\n");
614     ok(!REG_VAL_EXISTS(guid, "OldVersion"), "Expected OldVersion to not exist\n");
615     ok(!REG_VAL_EXISTS(guid, "RealStubPath"), "Expected RealStubPath to not exist\n");
616
617     /* raise the version again, bRollback is TRUE so vals are saved */
618     peruser.bRollback = TRUE;
619     lstrcpy(peruser.szVersion, "3,1,1,1");
620     hr = pSetPerUserSecValues(&peruser);
621     ok(hr == S_OK, "Expected S_OK, got %08x\n", hr);
622     ok(check_reg_str(guid, NULL, "displayname"), "Expected displayname\n");
623     ok(check_reg_str(guid, "ComponentID", "compid"), "Expected compid\n");
624     ok(check_reg_str(guid, "Locale", "locale"), "Expected locale\n");
625     ok(check_reg_dword(guid, "IsInstalled", 1), "Expected 1\n");
626     ok(check_reg_str(guid, "Version", "3,1,1,1"), "Expected 3,1,1,1\n");
627     todo_wine
628     {
629         ok(check_reg_str(guid, "OldDisplayName", "displayname"), "Expected displayname\n");
630         ok(check_reg_str(guid, "OldLocale", "locale"), "Expected locale\n");
631         ok(check_reg_str(guid, "RealStubPath", "stub"), "Expected stub\n");
632         ok(check_reg_str(guid, "OldStubPath", "stub"), "Expected stub\n");
633         ok(check_reg_str(guid, "OldVersion", "2,1,1,1"), "Expected 2,1,1,1\n");
634         ok(check_reg_str(guid, "StubPath",
635            "rundll32.exe advpack.dll,UserInstStubWrapper guid"),
636            "Expected real stub\n");
637     }
638
639     RegDeleteKey(HKEY_LOCAL_MACHINE, GUID_KEY);
640 }
641
642 START_TEST(advpack)
643 {
644     if (!init_function_pointers())
645         return;
646
647     /* Make sure we create the temporary file in a directory
648      * were we have enough rights
649      */
650     GetTempPath(MAX_PATH, inf_file);
651     lstrcat(inf_file,"test.inf");
652
653     get_progfiles_dir();
654
655     version_test();
656     delnode_test();
657     setperusersecvalues_test();
658     translateinfstring_test();
659     translateinfstringex_test();
660
661     FreeLibrary(hAdvPack);
662 }