shell32/tests: Use strict comparison for return values.
[wine] / dlls / shell32 / tests / shelllink.c
1 /*
2  * Unit tests for shelllinks
3  *
4  * Copyright 2004 Mike McCormack
5  *
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.
10  *
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.
15  *
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
19  * This is a test program for the SHGet{Special}Folder{Path|Location} functions
20  * of shell32, that get either a filesystem path or a LPITEMIDLIST (shell
21  * namespace) path for a given folder (CSIDL value).
22  *
23  */
24
25 #define COBJMACROS
26
27 #include "initguid.h"
28 #include "windows.h"
29 #include "shlguid.h"
30 #include "shobjidl.h"
31 #include "shlobj.h"
32 #include "wine/test.h"
33
34 #include "shell32_test.h"
35
36 #ifndef SLDF_HAS_LOGO3ID
37 #  define SLDF_HAS_LOGO3ID 0x00000800 /* not available in the Vista SDK */
38 #endif
39
40 typedef void (WINAPI *fnILFree)(LPITEMIDLIST);
41 typedef BOOL (WINAPI *fnILIsEqual)(LPCITEMIDLIST, LPCITEMIDLIST);
42 typedef HRESULT (WINAPI *fnSHILCreateFromPath)(LPCWSTR, LPITEMIDLIST *,DWORD*);
43 typedef HRESULT (WINAPI *fnSHDefExtractIconA)(LPCSTR, int, UINT, HICON*, HICON*, UINT);
44
45 static fnILFree pILFree;
46 static fnILIsEqual pILIsEqual;
47 static fnSHILCreateFromPath pSHILCreateFromPath;
48 static fnSHDefExtractIconA pSHDefExtractIconA;
49
50 static DWORD (WINAPI *pGetLongPathNameA)(LPCSTR, LPSTR, DWORD);
51 static DWORD (WINAPI *pGetShortPathNameA)(LPCSTR, LPSTR, DWORD);
52
53 static const GUID _IID_IShellLinkDataList = {
54     0x45e2b4ae, 0xb1c3, 0x11d0,
55     { 0xb9, 0x2f, 0x00, 0xa0, 0xc9, 0x03, 0x12, 0xe1 }
56 };
57
58 static const WCHAR notafile[]= { 'C',':','\\','n','o','n','e','x','i','s','t','e','n','t','\\','f','i','l','e',0 };
59
60
61 /* For some reason SHILCreateFromPath does not work on Win98 and
62  * SHSimpleIDListFromPathA does not work on NT4. But if we call both we
63  * get what we want on all platforms.
64  */
65 static LPITEMIDLIST (WINAPI *pSHSimpleIDListFromPathAW)(LPCVOID);
66
67 static LPITEMIDLIST path_to_pidl(const char* path)
68 {
69     LPITEMIDLIST pidl;
70
71     if (!pSHSimpleIDListFromPathAW)
72     {
73         HMODULE hdll=GetModuleHandleA("shell32.dll");
74         pSHSimpleIDListFromPathAW=(void*)GetProcAddress(hdll, (char*)162);
75         if (!pSHSimpleIDListFromPathAW)
76             win_skip("SHSimpleIDListFromPathAW not found in shell32.dll\n");
77     }
78
79     pidl=NULL;
80     /* pSHSimpleIDListFromPathAW maps to A on non NT platforms */
81     if (pSHSimpleIDListFromPathAW && (GetVersion() & 0x80000000))
82         pidl=pSHSimpleIDListFromPathAW(path);
83
84     if (!pidl)
85     {
86         WCHAR* pathW;
87         HRESULT r;
88         int len;
89
90         len=MultiByteToWideChar(CP_ACP, 0, path, -1, NULL, 0);
91         pathW=HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
92         MultiByteToWideChar(CP_ACP, 0, path, -1, pathW, len);
93
94         r=pSHILCreateFromPath(pathW, &pidl, NULL);
95         ok(r == S_OK, "SHILCreateFromPath failed (0x%08x)\n", r);
96         HeapFree(GetProcessHeap(), 0, pathW);
97     }
98     return pidl;
99 }
100
101
102 /*
103  * Test manipulation of an IShellLink's properties.
104  */
105
106 static void test_get_set(void)
107 {
108     HRESULT r;
109     IShellLinkA *sl;
110     IShellLinkW *slW = NULL;
111     char mypath[MAX_PATH];
112     char buffer[INFOTIPSIZE];
113     LPITEMIDLIST pidl, tmp_pidl;
114     const char * str;
115     int i;
116     WORD w;
117
118     r = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
119                          &IID_IShellLinkA, (LPVOID*)&sl);
120     ok(r == S_OK, "no IID_IShellLinkA (0x%08x)\n", r);
121     if (r != S_OK)
122         return;
123
124     /* Test Getting / Setting the description */
125     strcpy(buffer,"garbage");
126     r = IShellLinkA_GetDescription(sl, buffer, sizeof(buffer));
127     ok(r == S_OK, "GetDescription failed (0x%08x)\n", r);
128     ok(*buffer=='\0', "GetDescription returned '%s'\n", buffer);
129
130     str="Some description";
131     r = IShellLinkA_SetDescription(sl, str);
132     ok(r == S_OK, "SetDescription failed (0x%08x)\n", r);
133
134     strcpy(buffer,"garbage");
135     r = IShellLinkA_GetDescription(sl, buffer, sizeof(buffer));
136     ok(r == S_OK, "GetDescription failed (0x%08x)\n", r);
137     ok(lstrcmp(buffer,str)==0, "GetDescription returned '%s'\n", buffer);
138
139     /* Test Getting / Setting the work directory */
140     strcpy(buffer,"garbage");
141     r = IShellLinkA_GetWorkingDirectory(sl, buffer, sizeof(buffer));
142     ok(r == S_OK, "GetWorkingDirectory failed (0x%08x)\n", r);
143     ok(*buffer=='\0', "GetWorkingDirectory returned '%s'\n", buffer);
144
145     str="c:\\nonexistent\\directory";
146     r = IShellLinkA_SetWorkingDirectory(sl, str);
147     ok(r == S_OK, "SetWorkingDirectory failed (0x%08x)\n", r);
148
149     strcpy(buffer,"garbage");
150     r = IShellLinkA_GetWorkingDirectory(sl, buffer, sizeof(buffer));
151     ok(r == S_OK, "GetWorkingDirectory failed (0x%08x)\n", r);
152     ok(lstrcmpi(buffer,str)==0, "GetWorkingDirectory returned '%s'\n", buffer);
153
154     /* Test Getting / Setting the path */
155     strcpy(buffer,"garbage");
156     r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
157     todo_wine ok(r == S_FALSE || broken(r == S_OK) /* NT4/W2K */, "GetPath failed (0x%08x)\n", r);
158     ok(*buffer=='\0', "GetPath returned '%s'\n", buffer);
159
160     CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
161                      &IID_IShellLinkW, (LPVOID*)&slW);
162     if (!slW)
163         skip("SetPath with NULL parameter crashes on Win9x\n");
164     else
165     {
166         IShellLinkW_Release(slW);
167         r = IShellLinkA_SetPath(sl, NULL);
168         ok(r==E_INVALIDARG ||
169            broken(r==S_OK), /* Some Win95 and NT4 */
170            "SetPath failed (0x%08x)\n", r);
171     }
172
173     r = IShellLinkA_SetPath(sl, "");
174     ok(r==S_OK, "SetPath failed (0x%08x)\n", r);
175
176     strcpy(buffer,"garbage");
177     r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
178     todo_wine ok(r == S_FALSE, "GetPath failed (0x%08x)\n", r);
179     ok(*buffer=='\0', "GetPath returned '%s'\n", buffer);
180
181     /* Win98 returns S_FALSE, but WinXP returns S_OK */
182     str="c:\\nonexistent\\file";
183     r = IShellLinkA_SetPath(sl, str);
184     ok(r==S_FALSE || r==S_OK, "SetPath failed (0x%08x)\n", r);
185
186     strcpy(buffer,"garbage");
187     r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
188     ok(r == S_OK, "GetPath failed (0x%08x)\n", r);
189     ok(lstrcmpi(buffer,str)==0, "GetPath returned '%s'\n", buffer);
190
191     /* Get some real path to play with */
192     GetWindowsDirectoryA( mypath, sizeof(mypath)-12 );
193     strcat(mypath, "\\regedit.exe");
194
195     /* Test the interaction of SetPath and SetIDList */
196     tmp_pidl=NULL;
197     r = IShellLinkA_GetIDList(sl, &tmp_pidl);
198     todo_wine ok(r == S_OK, "GetIDList failed (0x%08x)\n", r);
199     if (r == S_OK)
200     {
201         BOOL ret;
202
203         strcpy(buffer,"garbage");
204         ret = SHGetPathFromIDListA(tmp_pidl, buffer);
205         todo_wine {
206         ok(ret, "SHGetPathFromIDListA failed\n");
207         }
208         if (ret)
209             ok(lstrcmpi(buffer,str)==0, "GetIDList returned '%s'\n", buffer);
210         pILFree(tmp_pidl);
211     }
212
213     pidl=path_to_pidl(mypath);
214     ok(pidl!=NULL, "path_to_pidl returned a NULL pidl\n");
215
216     if (pidl)
217     {
218         LPITEMIDLIST second_pidl;
219
220         r = IShellLinkA_SetIDList(sl, pidl);
221         ok(r == S_OK, "SetIDList failed (0x%08x)\n", r);
222
223         tmp_pidl=NULL;
224         r = IShellLinkA_GetIDList(sl, &tmp_pidl);
225         ok(r == S_OK, "GetIDList failed (0x%08x)\n", r);
226         ok(tmp_pidl && pILIsEqual(pidl, tmp_pidl),
227            "GetIDList returned an incorrect pidl\n");
228
229         r = IShellLinkA_GetIDList(sl, &second_pidl);
230         ok(r == S_OK, "GetIDList failed (0x%08x)\n", r);
231         ok(second_pidl && pILIsEqual(pidl, second_pidl),
232            "GetIDList returned an incorrect pidl\n");
233         ok(second_pidl != tmp_pidl, "pidls are the same\n");
234
235         pILFree(second_pidl);
236         pILFree(tmp_pidl);
237         pILFree(pidl);
238
239         strcpy(buffer,"garbage");
240         r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
241         ok(r == S_OK, "GetPath failed (0x%08x)\n", r);
242         todo_wine
243         ok(lstrcmpi(buffer, mypath)==0, "GetPath returned '%s'\n", buffer);
244
245     }
246
247     /* test path with quotes (IShellLinkA_SetPath returns S_FALSE on W2K and below and S_OK on XP and above */
248     r = IShellLinkA_SetPath(sl, "\"c:\\nonexistent\\file\"");
249     ok(r==S_FALSE || r == S_OK, "SetPath failed (0x%08x)\n", r);
250
251     strcpy(buffer,"garbage");
252     r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
253     ok(r==S_OK, "GetPath failed (0x%08x)\n", r);
254     ok(!lstrcmp(buffer, "C:\\nonexistent\\file") ||
255        broken(!lstrcmp(buffer, "C:\\\"c:\\nonexistent\\file\"")), /* NT4 */
256        "case doesn't match\n");
257
258     r = IShellLinkA_SetPath(sl, "\"c:\\foo");
259     ok(r==S_FALSE || r == S_OK || r == E_INVALIDARG /* Vista */, "SetPath failed (0x%08x)\n", r);
260
261     r = IShellLinkA_SetPath(sl, "\"\"c:\\foo");
262     ok(r==S_FALSE || r == S_OK || r == E_INVALIDARG /* Vista */, "SetPath failed (0x%08x)\n", r);
263
264     r = IShellLinkA_SetPath(sl, "c:\\foo\"");
265     ok(r==S_FALSE || r == S_OK || r == E_INVALIDARG /* Vista */, "SetPath failed (0x%08x)\n", r);
266
267     r = IShellLinkA_SetPath(sl, "\"\"c:\\foo\"");
268     ok(r==S_FALSE || r == S_OK || r == E_INVALIDARG /* Vista */, "SetPath failed (0x%08x)\n", r);
269
270     r = IShellLinkA_SetPath(sl, "\"\"c:\\foo\"\"");
271     ok(r==S_FALSE || r == S_OK || r == E_INVALIDARG /* Vista */, "SetPath failed (0x%08x)\n", r);
272
273     /* Test Getting / Setting the arguments */
274     strcpy(buffer,"garbage");
275     r = IShellLinkA_GetArguments(sl, buffer, sizeof(buffer));
276     ok(r == S_OK, "GetArguments failed (0x%08x)\n", r);
277     ok(*buffer=='\0', "GetArguments returned '%s'\n", buffer);
278
279     str="param1 \"spaced param2\"";
280     r = IShellLinkA_SetArguments(sl, str);
281     ok(r == S_OK, "SetArguments failed (0x%08x)\n", r);
282
283     strcpy(buffer,"garbage");
284     r = IShellLinkA_GetArguments(sl, buffer, sizeof(buffer));
285     ok(r == S_OK, "GetArguments failed (0x%08x)\n", r);
286     ok(lstrcmp(buffer,str)==0, "GetArguments returned '%s'\n", buffer);
287
288     strcpy(buffer,"garbage");
289     r = IShellLinkA_SetArguments(sl, NULL);
290     ok(r == S_OK, "SetArguments failed (0x%08x)\n", r);
291     r = IShellLinkA_GetArguments(sl, buffer, sizeof(buffer));
292     ok(r == S_OK, "GetArguments failed (0x%08x)\n", r);
293     ok(!buffer[0] || lstrcmp(buffer,str)==0, "GetArguments returned '%s'\n", buffer);
294
295     strcpy(buffer,"garbage");
296     r = IShellLinkA_SetArguments(sl, "");
297     ok(r == S_OK, "SetArguments failed (0x%08x)\n", r);
298     r = IShellLinkA_GetArguments(sl, buffer, sizeof(buffer));
299     ok(r == S_OK, "GetArguments failed (0x%08x)\n", r);
300     ok(!buffer[0], "GetArguments returned '%s'\n", buffer);
301
302     /* Test Getting / Setting showcmd */
303     i=0xdeadbeef;
304     r = IShellLinkA_GetShowCmd(sl, &i);
305     ok(r == S_OK, "GetShowCmd failed (0x%08x)\n", r);
306     ok(i==SW_SHOWNORMAL, "GetShowCmd returned %d\n", i);
307
308     r = IShellLinkA_SetShowCmd(sl, SW_SHOWMAXIMIZED);
309     ok(r == S_OK, "SetShowCmd failed (0x%08x)\n", r);
310
311     i=0xdeadbeef;
312     r = IShellLinkA_GetShowCmd(sl, &i);
313     ok(r == S_OK, "GetShowCmd failed (0x%08x)\n", r);
314     ok(i==SW_SHOWMAXIMIZED, "GetShowCmd returned %d'\n", i);
315
316     /* Test Getting / Setting the icon */
317     i=0xdeadbeef;
318     strcpy(buffer,"garbage");
319     r = IShellLinkA_GetIconLocation(sl, buffer, sizeof(buffer), &i);
320     todo_wine {
321     ok(r == S_OK, "GetIconLocation failed (0x%08x)\n", r);
322     }
323     ok(*buffer=='\0', "GetIconLocation returned '%s'\n", buffer);
324     ok(i==0, "GetIconLocation returned %d\n", i);
325
326     str="c:\\nonexistent\\file";
327     r = IShellLinkA_SetIconLocation(sl, str, 0xbabecafe);
328     ok(r == S_OK, "SetIconLocation failed (0x%08x)\n", r);
329
330     i=0xdeadbeef;
331     r = IShellLinkA_GetIconLocation(sl, buffer, sizeof(buffer), &i);
332     ok(r == S_OK, "GetIconLocation failed (0x%08x)\n", r);
333     ok(lstrcmpi(buffer,str)==0, "GetIconLocation returned '%s'\n", buffer);
334     ok(i==0xbabecafe, "GetIconLocation returned %d'\n", i);
335
336     /* Test Getting / Setting the hot key */
337     w=0xbeef;
338     r = IShellLinkA_GetHotkey(sl, &w);
339     ok(r == S_OK, "GetHotkey failed (0x%08x)\n", r);
340     ok(w==0, "GetHotkey returned %d\n", w);
341
342     r = IShellLinkA_SetHotkey(sl, 0x5678);
343     ok(r == S_OK, "SetHotkey failed (0x%08x)\n", r);
344
345     w=0xbeef;
346     r = IShellLinkA_GetHotkey(sl, &w);
347     ok(r == S_OK, "GetHotkey failed (0x%08x)\n", r);
348     ok(w==0x5678, "GetHotkey returned %d'\n", w);
349
350     IShellLinkA_Release(sl);
351 }
352
353
354 /*
355  * Test saving and loading .lnk files
356  */
357
358 #define lok                   ok_(__FILE__, line)
359 #define lok_todo_4(todo_flag,a,b,c,d) \
360     if ((todo & todo_flag) == 0) lok((a), (b), (c), (d)); \
361     else todo_wine lok((a), (b), (c), (d));
362 #define lok_todo_2(todo_flag,a,b) \
363     if ((todo & todo_flag) == 0) lok((a), (b)); \
364     else todo_wine lok((a), (b));
365 #define check_lnk(a,b,c)        check_lnk_(__LINE__, (a), (b), (c))
366
367 void create_lnk_(int line, const WCHAR* path, lnk_desc_t* desc, int save_fails)
368 {
369     HRESULT r;
370     IShellLinkA *sl;
371     IPersistFile *pf;
372
373     r = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
374                          &IID_IShellLinkA, (LPVOID*)&sl);
375     lok(r == S_OK, "no IID_IShellLinkA (0x%08x)\n", r);
376     if (r != S_OK)
377         return;
378
379     if (desc->description)
380     {
381         r = IShellLinkA_SetDescription(sl, desc->description);
382         lok(r == S_OK, "SetDescription failed (0x%08x)\n", r);
383     }
384     if (desc->workdir)
385     {
386         r = IShellLinkA_SetWorkingDirectory(sl, desc->workdir);
387         lok(r == S_OK, "SetWorkingDirectory failed (0x%08x)\n", r);
388     }
389     if (desc->path)
390     {
391         r = IShellLinkA_SetPath(sl, desc->path);
392         lok(SUCCEEDED(r), "SetPath failed (0x%08x)\n", r);
393     }
394     if (desc->pidl)
395     {
396         r = IShellLinkA_SetIDList(sl, desc->pidl);
397         lok(r == S_OK, "SetIDList failed (0x%08x)\n", r);
398     }
399     if (desc->arguments)
400     {
401         r = IShellLinkA_SetArguments(sl, desc->arguments);
402         lok(r == S_OK, "SetArguments failed (0x%08x)\n", r);
403     }
404     if (desc->showcmd)
405     {
406         r = IShellLinkA_SetShowCmd(sl, desc->showcmd);
407         lok(r == S_OK, "SetShowCmd failed (0x%08x)\n", r);
408     }
409     if (desc->icon)
410     {
411         r = IShellLinkA_SetIconLocation(sl, desc->icon, desc->icon_id);
412         lok(r == S_OK, "SetIconLocation failed (0x%08x)\n", r);
413     }
414     if (desc->hotkey)
415     {
416         r = IShellLinkA_SetHotkey(sl, desc->hotkey);
417         lok(r == S_OK, "SetHotkey failed (0x%08x)\n", r);
418     }
419
420     r = IShellLinkW_QueryInterface(sl, &IID_IPersistFile, (LPVOID*)&pf);
421     lok(r == S_OK, "no IID_IPersistFile (0x%08x)\n", r);
422     if (r == S_OK)
423     {
424         LPOLESTR str;
425
426     if (0)
427     {
428         /* crashes on XP */
429         r = IPersistFile_GetCurFile(pf, NULL);
430     }
431
432         /* test GetCurFile before ::Save */
433         str = (LPWSTR)0xdeadbeef;
434         r = IPersistFile_GetCurFile(pf, &str);
435         lok(r == S_FALSE ||
436             broken(r == S_OK), /* shell32 < 5.0 */
437             "got 0x%08x\n", r);
438         lok(str == NULL, "got %p\n", str);
439
440         r = IPersistFile_Save(pf, path, TRUE);
441         if (save_fails)
442         {
443             todo_wine {
444             lok(r == S_OK, "save failed (0x%08x)\n", r);
445             }
446         }
447         else
448         {
449             lok(r == S_OK, "save failed (0x%08x)\n", r);
450         }
451
452         /* test GetCurFile after ::Save */
453         r = IPersistFile_GetCurFile(pf, &str);
454         lok(r == S_OK, "got 0x%08x\n", r);
455         lok(str != NULL ||
456             broken(str == NULL), /* shell32 < 5.0 */
457             "Didn't expect NULL\n");
458         if (str != NULL)
459         {
460             IMalloc *pmalloc;
461
462             lok(!winetest_strcmpW(path, str), "Expected %s, got %s\n",
463                 wine_dbgstr_w(path), wine_dbgstr_w(str));
464
465             SHGetMalloc(&pmalloc);
466             IMalloc_Free(pmalloc, str);
467         }
468         else
469             win_skip("GetCurFile fails on shell32 < 5.0\n");
470
471         IPersistFile_Release(pf);
472     }
473
474     IShellLinkA_Release(sl);
475 }
476
477 static void check_lnk_(int line, const WCHAR* path, lnk_desc_t* desc, int todo)
478 {
479     HRESULT r;
480     IShellLinkA *sl;
481     IPersistFile *pf;
482     char buffer[INFOTIPSIZE];
483     LPOLESTR str;
484
485     r = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
486                          &IID_IShellLinkA, (LPVOID*)&sl);
487     lok(r == S_OK, "no IID_IShellLinkA (0x%08x)\n", r);
488     if (r != S_OK)
489         return;
490
491     r = IShellLinkA_QueryInterface(sl, &IID_IPersistFile, (LPVOID*)&pf);
492     lok(r == S_OK, "no IID_IPersistFile (0x%08x)\n", r);
493     if (r != S_OK)
494     {
495         IShellLinkA_Release(sl);
496         return;
497     }
498
499     /* test GetCurFile before ::Load */
500     str = (LPWSTR)0xdeadbeef;
501     r = IPersistFile_GetCurFile(pf, &str);
502     lok(r == S_FALSE ||
503         broken(r == S_OK), /* shell32 < 5.0 */
504         "got 0x%08x\n", r);
505     lok(str == NULL, "got %p\n", str);
506
507     r = IPersistFile_Load(pf, path, STGM_READ);
508     lok(r == S_OK, "load failed (0x%08x)\n", r);
509
510     /* test GetCurFile after ::Save */
511     r = IPersistFile_GetCurFile(pf, &str);
512     lok(r == S_OK, "got 0x%08x\n", r);
513     lok(str != NULL ||
514         broken(str == NULL), /* shell32 < 5.0 */
515         "Didn't expect NULL\n");
516     if (str != NULL)
517     {
518         IMalloc *pmalloc;
519
520         lok(!winetest_strcmpW(path, str), "Expected %s, got %s\n",
521             wine_dbgstr_w(path), wine_dbgstr_w(str));
522
523         SHGetMalloc(&pmalloc);
524         IMalloc_Free(pmalloc, str);
525     }
526     else
527         win_skip("GetCurFile fails on shell32 < 5.0\n");
528
529     IPersistFile_Release(pf);
530     if (r != S_OK)
531     {
532         IShellLinkA_Release(sl);
533         return;
534     }
535
536     if (desc->description)
537     {
538         strcpy(buffer,"garbage");
539         r = IShellLinkA_GetDescription(sl, buffer, sizeof(buffer));
540         lok(r == S_OK, "GetDescription failed (0x%08x)\n", r);
541         lok_todo_4(0x1, lstrcmp(buffer, desc->description)==0,
542            "GetDescription returned '%s' instead of '%s'\n",
543            buffer, desc->description);
544     }
545     if (desc->workdir)
546     {
547         strcpy(buffer,"garbage");
548         r = IShellLinkA_GetWorkingDirectory(sl, buffer, sizeof(buffer));
549         lok(r == S_OK, "GetWorkingDirectory failed (0x%08x)\n", r);
550         lok_todo_4(0x2, lstrcmpi(buffer, desc->workdir)==0,
551            "GetWorkingDirectory returned '%s' instead of '%s'\n",
552            buffer, desc->workdir);
553     }
554     if (desc->path)
555     {
556         strcpy(buffer,"garbage");
557         r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
558         lok(SUCCEEDED(r), "GetPath failed (0x%08x)\n", r);
559         lok_todo_4(0x4, lstrcmpi(buffer, desc->path)==0,
560            "GetPath returned '%s' instead of '%s'\n",
561            buffer, desc->path);
562     }
563     if (desc->pidl)
564     {
565         LPITEMIDLIST pidl=NULL;
566         r = IShellLinkA_GetIDList(sl, &pidl);
567         lok(r == S_OK, "GetIDList failed (0x%08x)\n", r);
568         lok_todo_2(0x8, pILIsEqual(pidl, desc->pidl),
569            "GetIDList returned an incorrect pidl\n");
570     }
571     if (desc->showcmd)
572     {
573         int i=0xdeadbeef;
574         r = IShellLinkA_GetShowCmd(sl, &i);
575         lok(r == S_OK, "GetShowCmd failed (0x%08x)\n", r);
576         lok_todo_4(0x10, i==desc->showcmd,
577            "GetShowCmd returned 0x%0x instead of 0x%0x\n",
578            i, desc->showcmd);
579     }
580     if (desc->icon)
581     {
582         int i=0xdeadbeef;
583         strcpy(buffer,"garbage");
584         r = IShellLinkA_GetIconLocation(sl, buffer, sizeof(buffer), &i);
585         lok(r == S_OK, "GetIconLocation failed (0x%08x)\n", r);
586         lok_todo_4(0x20, lstrcmpi(buffer, desc->icon)==0,
587            "GetIconLocation returned '%s' instead of '%s'\n",
588            buffer, desc->icon);
589         lok_todo_4(0x20, i==desc->icon_id,
590            "GetIconLocation returned 0x%0x instead of 0x%0x\n",
591            i, desc->icon_id);
592     }
593     if (desc->hotkey)
594     {
595         WORD i=0xbeef;
596         r = IShellLinkA_GetHotkey(sl, &i);
597         lok(r == S_OK, "GetHotkey failed (0x%08x)\n", r);
598         lok_todo_4(0x40, i==desc->hotkey,
599            "GetHotkey returned 0x%04x instead of 0x%04x\n",
600            i, desc->hotkey);
601     }
602
603     IShellLinkA_Release(sl);
604 }
605
606 static void test_load_save(void)
607 {
608     WCHAR lnkfile[MAX_PATH];
609     char lnkfileA[MAX_PATH];
610     static const char lnkfileA_name[] = "\\test.lnk";
611
612     lnk_desc_t desc;
613     char mypath[MAX_PATH];
614     char mydir[MAX_PATH];
615     char realpath[MAX_PATH];
616     char* p;
617     HANDLE hf;
618     DWORD r;
619
620     if (!pGetLongPathNameA)
621     {
622         win_skip("GetLongPathNameA is not available\n");
623         return;
624     }
625
626     /* Don't used a fixed path for the test.lnk file */
627     GetTempPathA(MAX_PATH, lnkfileA);
628     lstrcatA(lnkfileA, lnkfileA_name);
629     MultiByteToWideChar(CP_ACP, 0, lnkfileA, -1, lnkfile, MAX_PATH);
630
631     /* Save an empty .lnk file */
632     memset(&desc, 0, sizeof(desc));
633     create_lnk(lnkfile, &desc, 0);
634
635     /* It should come back as a bunch of empty strings */
636     desc.description="";
637     desc.workdir="";
638     desc.path="";
639     desc.arguments="";
640     desc.icon="";
641     check_lnk(lnkfile, &desc, 0x0);
642
643     /* Point a .lnk file to nonexistent files */
644     desc.description="";
645     desc.workdir="c:\\Nonexitent\\work\\directory";
646     desc.path="c:\\nonexistent\\path";
647     desc.pidl=NULL;
648     desc.arguments="";
649     desc.showcmd=0;
650     desc.icon="c:\\nonexistent\\icon\\file";
651     desc.icon_id=1234;
652     desc.hotkey=0;
653     create_lnk(lnkfile, &desc, 0);
654     check_lnk(lnkfile, &desc, 0x0);
655
656     r=GetModuleFileName(NULL, mypath, sizeof(mypath));
657     ok(r<sizeof(mypath), "GetModuleFileName failed (%d)\n", r);
658     strcpy(mydir, mypath);
659     p=strrchr(mydir, '\\');
660     if (p)
661         *p='\0';
662
663     /* IShellLink returns path in long form */
664     if (!pGetLongPathNameA(mypath, realpath, MAX_PATH)) strcpy( realpath, mypath );
665
666     /* Overwrite the existing lnk file and point it to existing files */
667     desc.description="test 2";
668     desc.workdir=mydir;
669     desc.path=realpath;
670     desc.pidl=NULL;
671     desc.arguments="/option1 /option2 \"Some string\"";
672     desc.showcmd=SW_SHOWNORMAL;
673     desc.icon=mypath;
674     desc.icon_id=0;
675     desc.hotkey=0x1234;
676     create_lnk(lnkfile, &desc, 0);
677     check_lnk(lnkfile, &desc, 0x0);
678
679     /* Overwrite the existing lnk file and test link to a command on the path */
680     desc.description="command on path";
681     desc.workdir=mypath;
682     desc.path="rundll32.exe";
683     desc.pidl=NULL;
684     desc.arguments="/option1 /option2 \"Some string\"";
685     desc.showcmd=SW_SHOWNORMAL;
686     desc.icon=mypath;
687     desc.icon_id=0;
688     desc.hotkey=0x1234;
689     create_lnk(lnkfile, &desc, 0);
690     /* Check that link is created to proper location */
691     SearchPathA( NULL, desc.path, NULL, MAX_PATH, realpath, NULL);
692     desc.path=realpath;
693     check_lnk(lnkfile, &desc, 0x0);
694
695     /* Create a temporary non-executable file */
696     r=GetTempPath(sizeof(mypath), mypath);
697     ok(r<sizeof(mypath), "GetTempPath failed (%d), err %d\n", r, GetLastError());
698     r=pGetLongPathNameA(mypath, mydir, sizeof(mydir));
699     ok(r<sizeof(mydir), "GetLongPathName failed (%d), err %d\n", r, GetLastError());
700     p=strrchr(mydir, '\\');
701     if (p)
702         *p='\0';
703
704     strcpy(mypath, mydir);
705     strcat(mypath, "\\test.txt");
706     hf = CreateFile(mypath, GENERIC_WRITE, 0, NULL,
707                     CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
708     CloseHandle(hf);
709
710     /* Overwrite the existing lnk file and test link to an existing non-executable file */
711     desc.description="non-executable file";
712     desc.workdir=mydir;
713     desc.path=mypath;
714     desc.pidl=NULL;
715     desc.arguments="";
716     desc.showcmd=SW_SHOWNORMAL;
717     desc.icon=mypath;
718     desc.icon_id=0;
719     desc.hotkey=0x1234;
720     create_lnk(lnkfile, &desc, 0);
721     check_lnk(lnkfile, &desc, 0x0);
722
723     r=pGetShortPathNameA(mydir, mypath, sizeof(mypath));
724     strcpy(realpath, mypath);
725     strcat(realpath, "\\test.txt");
726     strcat(mypath, "\\\\test.txt");
727
728     /* Overwrite the existing lnk file and test link to a short path with double backslashes */
729     desc.description="non-executable file";
730     desc.workdir=mydir;
731     desc.path=mypath;
732     desc.pidl=NULL;
733     desc.arguments="";
734     desc.showcmd=SW_SHOWNORMAL;
735     desc.icon=mypath;
736     desc.icon_id=0;
737     desc.hotkey=0x1234;
738     create_lnk(lnkfile, &desc, 0);
739     desc.path=realpath;
740     check_lnk(lnkfile, &desc, 0x0);
741
742     r = DeleteFileA(mypath);
743     ok(r, "failed to delete file %s (%d)\n", mypath, GetLastError());
744
745     /* FIXME: Also test saving a .lnk pointing to a pidl that cannot be
746      * represented as a path.
747      */
748
749     /* DeleteFileW is not implemented on Win9x */
750     r=DeleteFileA(lnkfileA);
751     ok(r, "failed to delete link '%s' (%d)\n", lnkfileA, GetLastError());
752 }
753
754 static void test_datalink(void)
755 {
756     static const WCHAR lnk[] = {
757       ':',':','{','9','d','b','1','1','8','6','e','-','4','0','d','f','-','1',
758       '1','d','1','-','a','a','8','c','-','0','0','c','0','4','f','b','6','7',
759       '8','6','3','}',':','2','6',',','!','!','g','x','s','f','(','N','g',']',
760       'q','F','`','H','{','L','s','A','C','C','E','S','S','F','i','l','e','s',
761       '>','p','l','T',']','j','I','{','j','f','(','=','1','&','L','[','-','8',
762       '1','-',']',':',':',0 };
763     static const WCHAR comp[] = {
764       '2','6',',','!','!','g','x','s','f','(','N','g',']','q','F','`','H','{',
765       'L','s','A','C','C','E','S','S','F','i','l','e','s','>','p','l','T',']',
766       'j','I','{','j','f','(','=','1','&','L','[','-','8','1','-',']',0 };
767     IShellLinkDataList *dl = NULL;
768     IShellLinkW *sl = NULL;
769     HRESULT r;
770     DWORD flags = 0;
771     EXP_DARWIN_LINK *dar;
772
773     r = CoCreateInstance( &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
774                             &IID_IShellLinkW, (LPVOID*)&sl );
775     ok( r == S_OK ||
776         broken(r == E_NOINTERFACE), /* Win9x */
777         "CoCreateInstance failed (0x%08x)\n", r);
778     if (!sl)
779     {
780         win_skip("no shelllink\n");
781         return;
782     }
783
784     r = IShellLinkW_QueryInterface( sl, &_IID_IShellLinkDataList, (LPVOID*) &dl );
785     ok( r == S_OK ||
786         broken(r == E_NOINTERFACE), /* NT4 */
787         "IShellLinkW_QueryInterface failed (0x%08x)\n", r);
788
789     if (!dl)
790     {
791         win_skip("no datalink interface\n");
792         IShellLinkW_Release( sl );
793         return;
794     }
795
796     flags = 0;
797     r = IShellLinkDataList_GetFlags( dl, &flags );
798     ok( r == S_OK, "GetFlags failed\n");
799     ok( flags == 0, "GetFlags returned wrong flags\n");
800
801     dar = (void*)-1;
802     r = IShellLinkDataList_CopyDataBlock( dl, EXP_DARWIN_ID_SIG, (LPVOID*) &dar );
803     ok( r == E_FAIL, "CopyDataBlock failed\n");
804     ok( dar == NULL, "should be null\n");
805
806     r = IShellLinkW_SetPath(sl, NULL);
807     ok(r == E_INVALIDARG, "set path failed\n");
808
809     r = IShellLinkW_SetPath(sl, lnk);
810     ok(r == S_OK, "set path failed\n");
811
812 if (0)
813 {
814     /* the following crashes */
815     r = IShellLinkDataList_GetFlags( dl, NULL );
816 }
817
818     flags = 0;
819     r = IShellLinkDataList_GetFlags( dl, &flags );
820     ok( r == S_OK, "GetFlags failed\n");
821     /* SLDF_HAS_LOGO3ID is no longer supported on Vista+, filter it out */
822     ok( (flags & (~ SLDF_HAS_LOGO3ID)) == SLDF_HAS_DARWINID,
823         "GetFlags returned wrong flags\n");
824
825     dar = NULL;
826     r = IShellLinkDataList_CopyDataBlock( dl, EXP_DARWIN_ID_SIG, (LPVOID*) &dar );
827     ok( r == S_OK, "CopyDataBlock failed\n");
828
829     ok( dar && ((DATABLOCK_HEADER*)dar)->dwSignature == EXP_DARWIN_ID_SIG, "signature wrong\n");
830     ok( dar && 0==lstrcmpW(dar->szwDarwinID, comp ), "signature wrong\n");
831
832     LocalFree( dar );
833
834     IUnknown_Release( dl );
835     IShellLinkW_Release( sl );
836 }
837
838 static void test_shdefextracticon(void)
839 {
840     HICON hiconlarge=NULL, hiconsmall=NULL;
841     HRESULT res;
842
843     if (!pSHDefExtractIconA)
844     {
845         win_skip("SHDefExtractIconA is unavailable\n");
846         return;
847     }
848
849     res = pSHDefExtractIconA("shell32.dll", 0, 0, &hiconlarge, &hiconsmall, MAKELONG(16,24));
850     ok(SUCCEEDED(res), "SHDefExtractIconA failed, res=%x\n", res);
851     ok(hiconlarge != NULL, "got null hiconlarge\n");
852     ok(hiconsmall != NULL, "got null hiconsmall\n");
853     DestroyIcon(hiconlarge);
854     DestroyIcon(hiconsmall);
855
856     hiconsmall = NULL;
857     res = pSHDefExtractIconA("shell32.dll", 0, 0, NULL, &hiconsmall, MAKELONG(16,24));
858     ok(SUCCEEDED(res), "SHDefExtractIconA failed, res=%x\n", res);
859     ok(hiconsmall != NULL, "got null hiconsmall\n");
860     DestroyIcon(hiconsmall);
861
862     res = pSHDefExtractIconA("shell32.dll", 0, 0, NULL, NULL, MAKELONG(16,24));
863     ok(SUCCEEDED(res), "SHDefExtractIconA failed, res=%x\n", res);
864 }
865
866 START_TEST(shelllink)
867 {
868     HRESULT r;
869     HMODULE hmod = GetModuleHandleA("shell32.dll");
870     HMODULE hkernel32 = GetModuleHandleA("kernel32.dll");
871
872     pILFree = (fnILFree) GetProcAddress(hmod, (LPSTR)155);
873     pILIsEqual = (fnILIsEqual) GetProcAddress(hmod, (LPSTR)21);
874     pSHILCreateFromPath = (fnSHILCreateFromPath) GetProcAddress(hmod, (LPSTR)28);
875     pSHDefExtractIconA = (fnSHDefExtractIconA) GetProcAddress(hmod, "SHDefExtractIconA");
876
877     pGetLongPathNameA = (void *)GetProcAddress(hkernel32, "GetLongPathNameA");
878     pGetShortPathNameA = (void *)GetProcAddress(hkernel32, "GetShortPathNameA");
879
880     r = CoInitialize(NULL);
881     ok(r == S_OK, "CoInitialize failed (0x%08x)\n", r);
882     if (r != S_OK)
883         return;
884
885     test_get_set();
886     test_load_save();
887     test_datalink();
888     test_shdefextracticon();
889
890     CoUninitialize();
891 }