2 * Unit tests for shelllinks
4 * Copyright 2004 Mike McCormack
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
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).
32 #include "wine/test.h"
34 #include "shell32_test.h"
36 #ifndef SLDF_HAS_LOGO3ID
37 # define SLDF_HAS_LOGO3ID 0x00000800 /* not available in the Vista SDK */
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);
45 static fnILFree pILFree;
46 static fnILIsEqual pILIsEqual;
47 static fnSHILCreateFromPath pSHILCreateFromPath;
48 static fnSHDefExtractIconA pSHDefExtractIconA;
50 static DWORD (WINAPI *pGetLongPathNameA)(LPCSTR, LPSTR, DWORD);
51 static DWORD (WINAPI *pGetShortPathNameA)(LPCSTR, LPSTR, DWORD);
53 static const GUID _IID_IShellLinkDataList = {
54 0x45e2b4ae, 0xb1c3, 0x11d0,
55 { 0xb9, 0x2f, 0x00, 0xa0, 0xc9, 0x03, 0x12, 0xe1 }
58 static const WCHAR notafile[]= { 'C',':','\\','n','o','n','e','x','i','s','t','e','n','t','\\','f','i','l','e',0 };
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.
65 static LPITEMIDLIST (WINAPI *pSHSimpleIDListFromPathAW)(LPCVOID);
67 static LPITEMIDLIST path_to_pidl(const char* path)
71 if (!pSHSimpleIDListFromPathAW)
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");
80 /* pSHSimpleIDListFromPathAW maps to A on non NT platforms */
81 if (pSHSimpleIDListFromPathAW && (GetVersion() & 0x80000000))
82 pidl=pSHSimpleIDListFromPathAW(path);
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);
94 r=pSHILCreateFromPath(pathW, &pidl, NULL);
95 ok(SUCCEEDED(r), "SHILCreateFromPath failed (0x%08x)\n", r);
96 HeapFree(GetProcessHeap(), 0, pathW);
103 * Test manipulation of an IShellLink's properties.
106 static void test_get_set(void)
110 IShellLinkW *slW = NULL;
111 char mypath[MAX_PATH];
112 char buffer[INFOTIPSIZE];
113 LPITEMIDLIST pidl, tmp_pidl;
118 r = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
119 &IID_IShellLinkA, (LPVOID*)&sl);
120 ok(SUCCEEDED(r), "no IID_IShellLinkA (0x%08x)\n", r);
124 /* Test Getting / Setting the description */
125 strcpy(buffer,"garbage");
126 r = IShellLinkA_GetDescription(sl, buffer, sizeof(buffer));
127 ok(SUCCEEDED(r), "GetDescription failed (0x%08x)\n", r);
128 ok(*buffer=='\0', "GetDescription returned '%s'\n", buffer);
130 str="Some description";
131 r = IShellLinkA_SetDescription(sl, str);
132 ok(SUCCEEDED(r), "SetDescription failed (0x%08x)\n", r);
134 strcpy(buffer,"garbage");
135 r = IShellLinkA_GetDescription(sl, buffer, sizeof(buffer));
136 ok(SUCCEEDED(r), "GetDescription failed (0x%08x)\n", r);
137 ok(lstrcmp(buffer,str)==0, "GetDescription returned '%s'\n", buffer);
139 /* Test Getting / Setting the work directory */
140 strcpy(buffer,"garbage");
141 r = IShellLinkA_GetWorkingDirectory(sl, buffer, sizeof(buffer));
142 ok(SUCCEEDED(r), "GetWorkingDirectory failed (0x%08x)\n", r);
143 ok(*buffer=='\0', "GetWorkingDirectory returned '%s'\n", buffer);
145 str="c:\\nonexistent\\directory";
146 r = IShellLinkA_SetWorkingDirectory(sl, str);
147 ok(SUCCEEDED(r), "SetWorkingDirectory failed (0x%08x)\n", r);
149 strcpy(buffer,"garbage");
150 r = IShellLinkA_GetWorkingDirectory(sl, buffer, sizeof(buffer));
151 ok(SUCCEEDED(r), "GetWorkingDirectory failed (0x%08x)\n", r);
152 ok(lstrcmpi(buffer,str)==0, "GetWorkingDirectory returned '%s'\n", buffer);
154 /* Test Getting / Setting the path */
155 strcpy(buffer,"garbage");
156 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
157 ok(SUCCEEDED(r), "GetPath failed (0x%08x)\n", r);
158 ok(*buffer=='\0', "GetPath returned '%s'\n", buffer);
160 CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
161 &IID_IShellLinkW, (LPVOID*)&slW);
163 skip("SetPath with NULL parameter crashes on Win9x\n");
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);
173 r = IShellLinkA_SetPath(sl, "");
174 ok(r==S_OK, "SetPath failed (0x%08x)\n", r);
176 strcpy(buffer,"garbage");
177 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
178 ok(SUCCEEDED(r), "GetPath failed (0x%08x)\n", r);
179 ok(*buffer=='\0', "GetPath returned '%s'\n", buffer);
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);
186 strcpy(buffer,"garbage");
187 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
188 ok(SUCCEEDED(r), "GetPath failed (0x%08x)\n", r);
189 ok(lstrcmpi(buffer,str)==0, "GetPath returned '%s'\n", buffer);
191 /* Get some real path to play with */
192 GetWindowsDirectoryA( mypath, sizeof(mypath)-12 );
193 strcat(mypath, "\\regedit.exe");
195 /* Test the interaction of SetPath and SetIDList */
197 r = IShellLinkA_GetIDList(sl, &tmp_pidl);
198 ok(SUCCEEDED(r), "GetIDList failed (0x%08x)\n", r);
203 strcpy(buffer,"garbage");
204 ret = SHGetPathFromIDListA(tmp_pidl, buffer);
206 ok(ret, "SHGetPathFromIDListA failed\n");
209 ok(lstrcmpi(buffer,str)==0, "GetIDList returned '%s'\n", buffer);
212 pidl=path_to_pidl(mypath);
213 ok(pidl!=NULL, "path_to_pidl returned a NULL pidl\n");
217 r = IShellLinkA_SetIDList(sl, pidl);
218 ok(SUCCEEDED(r), "SetIDList failed (0x%08x)\n", r);
221 r = IShellLinkA_GetIDList(sl, &tmp_pidl);
222 ok(SUCCEEDED(r), "GetIDList failed (0x%08x)\n", r);
223 ok(tmp_pidl && pILIsEqual(pidl, tmp_pidl),
224 "GetIDList returned an incorrect pidl\n");
226 /* tmp_pidl is owned by IShellLink so we don't free it */
229 strcpy(buffer,"garbage");
230 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
231 ok(SUCCEEDED(r), "GetPath failed (0x%08x)\n", r);
233 ok(lstrcmpi(buffer, mypath)==0, "GetPath returned '%s'\n", buffer);
237 /* test path with quotes (IShellLinkA_SetPath returns S_FALSE on W2K and below and S_OK on XP and above */
238 r = IShellLinkA_SetPath(sl, "\"c:\\nonexistent\\file\"");
239 ok(r==S_FALSE || r == S_OK, "SetPath failed (0x%08x)\n", r);
241 strcpy(buffer,"garbage");
242 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
243 ok(r==S_OK, "GetPath failed (0x%08x)\n", r);
244 ok(!lstrcmp(buffer, "C:\\nonexistent\\file") ||
245 broken(!lstrcmp(buffer, "C:\\\"c:\\nonexistent\\file\"")), /* NT4 */
246 "case doesn't match\n");
248 r = IShellLinkA_SetPath(sl, "\"c:\\foo");
249 ok(r==S_FALSE || r == S_OK || r == E_INVALIDARG /* Vista */, "SetPath failed (0x%08x)\n", r);
251 r = IShellLinkA_SetPath(sl, "\"\"c:\\foo");
252 ok(r==S_FALSE || r == S_OK || r == E_INVALIDARG /* Vista */, "SetPath failed (0x%08x)\n", r);
254 r = IShellLinkA_SetPath(sl, "c:\\foo\"");
255 ok(r==S_FALSE || r == S_OK || r == E_INVALIDARG /* Vista */, "SetPath failed (0x%08x)\n", r);
257 r = IShellLinkA_SetPath(sl, "\"\"c:\\foo\"");
258 ok(r==S_FALSE || r == S_OK || r == E_INVALIDARG /* Vista */, "SetPath failed (0x%08x)\n", r);
260 r = IShellLinkA_SetPath(sl, "\"\"c:\\foo\"\"");
261 ok(r==S_FALSE || r == S_OK || r == E_INVALIDARG /* Vista */, "SetPath failed (0x%08x)\n", r);
263 /* Test Getting / Setting the arguments */
264 strcpy(buffer,"garbage");
265 r = IShellLinkA_GetArguments(sl, buffer, sizeof(buffer));
266 ok(SUCCEEDED(r), "GetArguments failed (0x%08x)\n", r);
267 ok(*buffer=='\0', "GetArguments returned '%s'\n", buffer);
269 str="param1 \"spaced param2\"";
270 r = IShellLinkA_SetArguments(sl, str);
271 ok(SUCCEEDED(r), "SetArguments failed (0x%08x)\n", r);
273 strcpy(buffer,"garbage");
274 r = IShellLinkA_GetArguments(sl, buffer, sizeof(buffer));
275 ok(SUCCEEDED(r), "GetArguments failed (0x%08x)\n", r);
276 ok(lstrcmp(buffer,str)==0, "GetArguments returned '%s'\n", buffer);
278 /* Test Getting / Setting showcmd */
280 r = IShellLinkA_GetShowCmd(sl, &i);
281 ok(SUCCEEDED(r), "GetShowCmd failed (0x%08x)\n", r);
282 ok(i==SW_SHOWNORMAL, "GetShowCmd returned %d\n", i);
284 r = IShellLinkA_SetShowCmd(sl, SW_SHOWMAXIMIZED);
285 ok(SUCCEEDED(r), "SetShowCmd failed (0x%08x)\n", r);
288 r = IShellLinkA_GetShowCmd(sl, &i);
289 ok(SUCCEEDED(r), "GetShowCmd failed (0x%08x)\n", r);
290 ok(i==SW_SHOWMAXIMIZED, "GetShowCmd returned %d'\n", i);
292 /* Test Getting / Setting the icon */
294 strcpy(buffer,"garbage");
295 r = IShellLinkA_GetIconLocation(sl, buffer, sizeof(buffer), &i);
297 ok(SUCCEEDED(r), "GetIconLocation failed (0x%08x)\n", r);
299 ok(*buffer=='\0', "GetIconLocation returned '%s'\n", buffer);
300 ok(i==0, "GetIconLocation returned %d\n", i);
302 str="c:\\nonexistent\\file";
303 r = IShellLinkA_SetIconLocation(sl, str, 0xbabecafe);
304 ok(SUCCEEDED(r), "SetIconLocation failed (0x%08x)\n", r);
307 r = IShellLinkA_GetIconLocation(sl, buffer, sizeof(buffer), &i);
308 ok(SUCCEEDED(r), "GetIconLocation failed (0x%08x)\n", r);
309 ok(lstrcmpi(buffer,str)==0, "GetIconLocation returned '%s'\n", buffer);
310 ok(i==0xbabecafe, "GetIconLocation returned %d'\n", i);
312 /* Test Getting / Setting the hot key */
314 r = IShellLinkA_GetHotkey(sl, &w);
315 ok(SUCCEEDED(r), "GetHotkey failed (0x%08x)\n", r);
316 ok(w==0, "GetHotkey returned %d\n", w);
318 r = IShellLinkA_SetHotkey(sl, 0x5678);
319 ok(SUCCEEDED(r), "SetHotkey failed (0x%08x)\n", r);
322 r = IShellLinkA_GetHotkey(sl, &w);
323 ok(SUCCEEDED(r), "GetHotkey failed (0x%08x)\n", r);
324 ok(w==0x5678, "GetHotkey returned %d'\n", w);
326 IShellLinkA_Release(sl);
331 * Test saving and loading .lnk files
334 #define lok ok_(__FILE__, line)
335 #define lok_todo_4(todo_flag,a,b,c,d) \
336 if ((todo & todo_flag) == 0) lok((a), (b), (c), (d)); \
337 else todo_wine lok((a), (b), (c), (d));
338 #define lok_todo_2(todo_flag,a,b) \
339 if ((todo & todo_flag) == 0) lok((a), (b)); \
340 else todo_wine lok((a), (b));
341 #define check_lnk(a,b,c) check_lnk_(__LINE__, (a), (b), (c))
343 void create_lnk_(int line, const WCHAR* path, lnk_desc_t* desc, int save_fails)
349 r = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
350 &IID_IShellLinkA, (LPVOID*)&sl);
351 lok(SUCCEEDED(r), "no IID_IShellLinkA (0x%08x)\n", r);
355 if (desc->description)
357 r = IShellLinkA_SetDescription(sl, desc->description);
358 lok(SUCCEEDED(r), "SetDescription failed (0x%08x)\n", r);
362 r = IShellLinkA_SetWorkingDirectory(sl, desc->workdir);
363 lok(SUCCEEDED(r), "SetWorkingDirectory failed (0x%08x)\n", r);
367 r = IShellLinkA_SetPath(sl, desc->path);
368 lok(SUCCEEDED(r), "SetPath failed (0x%08x)\n", r);
372 r = IShellLinkA_SetIDList(sl, desc->pidl);
373 lok(SUCCEEDED(r), "SetIDList failed (0x%08x)\n", r);
377 r = IShellLinkA_SetArguments(sl, desc->arguments);
378 lok(SUCCEEDED(r), "SetArguments failed (0x%08x)\n", r);
382 r = IShellLinkA_SetShowCmd(sl, desc->showcmd);
383 lok(SUCCEEDED(r), "SetShowCmd failed (0x%08x)\n", r);
387 r = IShellLinkA_SetIconLocation(sl, desc->icon, desc->icon_id);
388 lok(SUCCEEDED(r), "SetIconLocation failed (0x%08x)\n", r);
392 r = IShellLinkA_SetHotkey(sl, desc->hotkey);
393 lok(SUCCEEDED(r), "SetHotkey failed (0x%08x)\n", r);
396 r = IShellLinkW_QueryInterface(sl, &IID_IPersistFile, (LPVOID*)&pf);
397 lok(SUCCEEDED(r), "no IID_IPersistFile (0x%08x)\n", r);
400 r = IPersistFile_Save(pf, path, TRUE);
404 lok(SUCCEEDED(r), "save failed (0x%08x)\n", r);
409 lok(SUCCEEDED(r), "save failed (0x%08x)\n", r);
411 IPersistFile_Release(pf);
414 IShellLinkA_Release(sl);
417 static void check_lnk_(int line, const WCHAR* path, lnk_desc_t* desc, int todo)
422 char buffer[INFOTIPSIZE];
424 r = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
425 &IID_IShellLinkA, (LPVOID*)&sl);
426 lok(SUCCEEDED(r), "no IID_IShellLinkA (0x%08x)\n", r);
430 r = IShellLinkA_QueryInterface(sl, &IID_IPersistFile, (LPVOID*)&pf);
431 lok(SUCCEEDED(r), "no IID_IPersistFile (0x%08x)\n", r);
434 IShellLinkA_Release(sl);
438 r = IPersistFile_Load(pf, path, STGM_READ);
439 lok(SUCCEEDED(r), "load failed (0x%08x)\n", r);
440 IPersistFile_Release(pf);
443 IShellLinkA_Release(sl);
447 if (desc->description)
449 strcpy(buffer,"garbage");
450 r = IShellLinkA_GetDescription(sl, buffer, sizeof(buffer));
451 lok(SUCCEEDED(r), "GetDescription failed (0x%08x)\n", r);
452 lok_todo_4(0x1, lstrcmp(buffer, desc->description)==0,
453 "GetDescription returned '%s' instead of '%s'\n",
454 buffer, desc->description);
458 strcpy(buffer,"garbage");
459 r = IShellLinkA_GetWorkingDirectory(sl, buffer, sizeof(buffer));
460 lok(SUCCEEDED(r), "GetWorkingDirectory failed (0x%08x)\n", r);
461 lok_todo_4(0x2, lstrcmpi(buffer, desc->workdir)==0,
462 "GetWorkingDirectory returned '%s' instead of '%s'\n",
463 buffer, desc->workdir);
467 strcpy(buffer,"garbage");
468 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
469 lok(SUCCEEDED(r), "GetPath failed (0x%08x)\n", r);
470 lok_todo_4(0x4, lstrcmpi(buffer, desc->path)==0,
471 "GetPath returned '%s' instead of '%s'\n",
476 LPITEMIDLIST pidl=NULL;
477 r = IShellLinkA_GetIDList(sl, &pidl);
478 lok(SUCCEEDED(r), "GetIDList failed (0x%08x)\n", r);
479 lok_todo_2(0x8, pILIsEqual(pidl, desc->pidl),
480 "GetIDList returned an incorrect pidl\n");
485 r = IShellLinkA_GetShowCmd(sl, &i);
486 lok(SUCCEEDED(r), "GetShowCmd failed (0x%08x)\n", r);
487 lok_todo_4(0x10, i==desc->showcmd,
488 "GetShowCmd returned 0x%0x instead of 0x%0x\n",
494 strcpy(buffer,"garbage");
495 r = IShellLinkA_GetIconLocation(sl, buffer, sizeof(buffer), &i);
496 lok(SUCCEEDED(r), "GetIconLocation failed (0x%08x)\n", r);
497 lok_todo_4(0x20, lstrcmpi(buffer, desc->icon)==0,
498 "GetIconLocation returned '%s' instead of '%s'\n",
500 lok_todo_4(0x20, i==desc->icon_id,
501 "GetIconLocation returned 0x%0x instead of 0x%0x\n",
507 r = IShellLinkA_GetHotkey(sl, &i);
508 lok(SUCCEEDED(r), "GetHotkey failed (0x%08x)\n", r);
509 lok_todo_4(0x40, i==desc->hotkey,
510 "GetHotkey returned 0x%04x instead of 0x%04x\n",
514 IShellLinkA_Release(sl);
517 static void test_load_save(void)
519 WCHAR lnkfile[MAX_PATH];
520 char lnkfileA[MAX_PATH];
521 static const char lnkfileA_name[] = "\\test.lnk";
524 char mypath[MAX_PATH];
525 char mydir[MAX_PATH];
526 char realpath[MAX_PATH];
531 if (!pGetLongPathNameA)
533 win_skip("GetLongPathNameA is not available\n");
537 /* Don't used a fixed path for the test.lnk file */
538 GetTempPathA(MAX_PATH, lnkfileA);
539 lstrcatA(lnkfileA, lnkfileA_name);
540 MultiByteToWideChar(CP_ACP, 0, lnkfileA, -1, lnkfile, MAX_PATH);
542 /* Save an empty .lnk file */
543 memset(&desc, 0, sizeof(desc));
544 create_lnk(lnkfile, &desc, 0);
546 /* It should come back as a bunch of empty strings */
552 check_lnk(lnkfile, &desc, 0x0);
554 /* Point a .lnk file to nonexistent files */
556 desc.workdir="c:\\Nonexitent\\work\\directory";
557 desc.path="c:\\nonexistent\\path";
561 desc.icon="c:\\nonexistent\\icon\\file";
564 create_lnk(lnkfile, &desc, 0);
565 check_lnk(lnkfile, &desc, 0x0);
567 r=GetModuleFileName(NULL, mypath, sizeof(mypath));
568 ok(r<sizeof(mypath), "GetModuleFileName failed (%d)\n", r);
569 strcpy(mydir, mypath);
570 p=strrchr(mydir, '\\');
574 /* IShellLink returns path in long form */
575 if (!pGetLongPathNameA(mypath, realpath, MAX_PATH)) strcpy( realpath, mypath );
577 /* Overwrite the existing lnk file and point it to existing files */
578 desc.description="test 2";
582 desc.arguments="/option1 /option2 \"Some string\"";
583 desc.showcmd=SW_SHOWNORMAL;
587 create_lnk(lnkfile, &desc, 0);
588 check_lnk(lnkfile, &desc, 0x0);
590 /* Overwrite the existing lnk file and test link to a command on the path */
591 desc.description="command on path";
593 desc.path="rundll32.exe";
595 desc.arguments="/option1 /option2 \"Some string\"";
596 desc.showcmd=SW_SHOWNORMAL;
600 create_lnk(lnkfile, &desc, 0);
601 /* Check that link is created to proper location */
602 SearchPathA( NULL, desc.path, NULL, MAX_PATH, realpath, NULL);
604 check_lnk(lnkfile, &desc, 0x0);
606 /* Create a temporary non-executable file */
607 r=GetTempPath(sizeof(mypath), mypath);
608 ok(r<sizeof(mypath), "GetTempPath failed (%d), err %d\n", r, GetLastError());
609 r=pGetLongPathNameA(mypath, mydir, sizeof(mydir));
610 ok(r<sizeof(mydir), "GetLongPathName failed (%d), err %d\n", r, GetLastError());
611 p=strrchr(mydir, '\\');
615 strcpy(mypath, mydir);
616 strcat(mypath, "\\test.txt");
617 hf = CreateFile(mypath, GENERIC_WRITE, 0, NULL,
618 CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
621 /* Overwrite the existing lnk file and test link to an existing non-executable file */
622 desc.description="non-executable file";
627 desc.showcmd=SW_SHOWNORMAL;
631 create_lnk(lnkfile, &desc, 0);
632 check_lnk(lnkfile, &desc, 0x0);
634 r=pGetShortPathNameA(mydir, mypath, sizeof(mypath));
635 strcpy(realpath, mypath);
636 strcat(realpath, "\\test.txt");
637 strcat(mypath, "\\\\test.txt");
639 /* Overwrite the existing lnk file and test link to a short path with double backslashes */
640 desc.description="non-executable file";
645 desc.showcmd=SW_SHOWNORMAL;
649 create_lnk(lnkfile, &desc, 0);
651 check_lnk(lnkfile, &desc, 0x0);
653 r = DeleteFileA(mypath);
654 ok(r, "failed to delete file %s (%d)\n", mypath, GetLastError());
656 /* FIXME: Also test saving a .lnk pointing to a pidl that cannot be
657 * represented as a path.
660 /* DeleteFileW is not implemented on Win9x */
661 r=DeleteFileA(lnkfileA);
662 ok(r, "failed to delete link '%s' (%d)\n", lnkfileA, GetLastError());
665 static void test_datalink(void)
667 static const WCHAR lnk[] = {
668 ':',':','{','9','d','b','1','1','8','6','e','-','4','0','d','f','-','1',
669 '1','d','1','-','a','a','8','c','-','0','0','c','0','4','f','b','6','7',
670 '8','6','3','}',':','2','6',',','!','!','g','x','s','f','(','N','g',']',
671 'q','F','`','H','{','L','s','A','C','C','E','S','S','F','i','l','e','s',
672 '>','p','l','T',']','j','I','{','j','f','(','=','1','&','L','[','-','8',
673 '1','-',']',':',':',0 };
674 static const WCHAR comp[] = {
675 '2','6',',','!','!','g','x','s','f','(','N','g',']','q','F','`','H','{',
676 'L','s','A','C','C','E','S','S','F','i','l','e','s','>','p','l','T',']',
677 'j','I','{','j','f','(','=','1','&','L','[','-','8','1','-',']',0 };
678 IShellLinkDataList *dl = NULL;
679 IShellLinkW *sl = NULL;
682 EXP_DARWIN_LINK *dar;
684 r = CoCreateInstance( &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
685 &IID_IShellLinkW, (LPVOID*)&sl );
687 broken(r == E_NOINTERFACE), /* Win9x */
688 "CoCreateInstance failed (0x%08x)\n", r);
691 win_skip("no shelllink\n");
695 r = IShellLinkW_QueryInterface( sl, &_IID_IShellLinkDataList, (LPVOID*) &dl );
697 broken(r == E_NOINTERFACE), /* NT4 */
698 "IShellLinkW_QueryInterface failed (0x%08x)\n", r);
702 win_skip("no datalink interface\n");
703 IShellLinkW_Release( sl );
708 r = IShellLinkDataList_GetFlags( dl, &flags );
709 ok( r == S_OK, "GetFlags failed\n");
710 ok( flags == 0, "GetFlags returned wrong flags\n");
713 r = IShellLinkDataList_CopyDataBlock( dl, EXP_DARWIN_ID_SIG, (LPVOID*) &dar );
714 ok( r == E_FAIL, "CopyDataBlock failed\n");
715 ok( dar == NULL, "should be null\n");
717 r = IShellLinkW_SetPath(sl, NULL);
718 ok(r == E_INVALIDARG, "set path failed\n");
720 r = IShellLinkW_SetPath(sl, lnk);
721 ok(r == S_OK, "set path failed\n");
724 * The following crashes:
725 * r = IShellLinkDataList_GetFlags( dl, NULL );
729 r = IShellLinkDataList_GetFlags( dl, &flags );
730 ok( r == S_OK, "GetFlags failed\n");
731 /* SLDF_HAS_LOGO3ID is no longer supported on Vista+, filter it out */
732 ok( (flags & (~ SLDF_HAS_LOGO3ID)) == SLDF_HAS_DARWINID,
733 "GetFlags returned wrong flags\n");
736 r = IShellLinkDataList_CopyDataBlock( dl, EXP_DARWIN_ID_SIG, (LPVOID*) &dar );
737 ok( r == S_OK, "CopyDataBlock failed\n");
739 ok( dar && ((DATABLOCK_HEADER*)dar)->dwSignature == EXP_DARWIN_ID_SIG, "signature wrong\n");
740 ok( dar && 0==lstrcmpW(dar->szwDarwinID, comp ), "signature wrong\n");
744 IUnknown_Release( dl );
745 IShellLinkW_Release( sl );
748 static void test_shdefextracticon(void)
750 HICON hiconlarge=NULL, hiconsmall=NULL;
753 if (!pSHDefExtractIconA)
755 win_skip("SHDefExtractIconA is unavailable\n");
759 res = pSHDefExtractIconA("shell32.dll", 0, 0, &hiconlarge, &hiconsmall, MAKELONG(16,24));
760 ok(SUCCEEDED(res), "SHDefExtractIconA failed, res=%x\n", res);
761 ok(hiconlarge != NULL, "got null hiconlarge\n");
762 ok(hiconsmall != NULL, "got null hiconsmall\n");
763 DestroyIcon(hiconlarge);
764 DestroyIcon(hiconsmall);
767 res = pSHDefExtractIconA("shell32.dll", 0, 0, NULL, &hiconsmall, MAKELONG(16,24));
768 ok(SUCCEEDED(res), "SHDefExtractIconA failed, res=%x\n", res);
769 ok(hiconsmall != NULL, "got null hiconsmall\n");
770 DestroyIcon(hiconsmall);
772 res = pSHDefExtractIconA("shell32.dll", 0, 0, NULL, NULL, MAKELONG(16,24));
773 ok(SUCCEEDED(res), "SHDefExtractIconA failed, res=%x\n", res);
776 START_TEST(shelllink)
779 HMODULE hmod = GetModuleHandleA("shell32.dll");
780 HMODULE hkernel32 = GetModuleHandleA("kernel32.dll");
782 pILFree = (fnILFree) GetProcAddress(hmod, (LPSTR)155);
783 pILIsEqual = (fnILIsEqual) GetProcAddress(hmod, (LPSTR)21);
784 pSHILCreateFromPath = (fnSHILCreateFromPath) GetProcAddress(hmod, (LPSTR)28);
785 pSHDefExtractIconA = (fnSHDefExtractIconA) GetProcAddress(hmod, "SHDefExtractIconA");
787 pGetLongPathNameA = (void *)GetProcAddress(hkernel32, "GetLongPathNameA");
788 pGetShortPathNameA = (void *)GetProcAddress(hkernel32, "GetShortPathNameA");
790 r = CoInitialize(NULL);
791 ok(SUCCEEDED(r), "CoInitialize failed (0x%08x)\n", r);
798 test_shdefextracticon();