push 4d5485f9b89f417d46b39b93e8d940437007f325
[wine/hacks.git] / dlls / shell32 / tests / shelllink.c
blobbdf537e0365c25e9b1cf791ebfb5e86ad3209449
1 /*
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 filesytem path or a LPITEMIDLIST (shell
21 * namespace) path for a given folder (CSIDL value).
25 #define COBJMACROS
27 #include <windows.h>
28 #include "shlguid.h"
29 #include "shobjidl.h"
30 #include "shlobj.h"
31 #include "wine/test.h"
33 #include "shell32_test.h"
36 typedef void (WINAPI *fnILFree)(LPITEMIDLIST);
37 typedef BOOL (WINAPI *fnILIsEqual)(LPCITEMIDLIST, LPCITEMIDLIST);
38 typedef HRESULT (WINAPI *fnSHILCreateFromPath)(LPCWSTR, LPITEMIDLIST *,DWORD*);
40 static fnILFree pILFree;
41 static fnILIsEqual pILIsEqual;
42 static fnSHILCreateFromPath pSHILCreateFromPath;
44 static DWORD (WINAPI *pGetLongPathNameA)(LPCSTR, LPSTR, DWORD);
46 static const GUID _IID_IShellLinkDataList = {
47 0x45e2b4ae, 0xb1c3, 0x11d0,
48 { 0xb9, 0x2f, 0x00, 0xa0, 0xc9, 0x03, 0x12, 0xe1 }
51 static const WCHAR lnkfile[]= { 'C',':','\\','t','e','s','t','.','l','n','k',0 };
52 static const WCHAR notafile[]= { 'C',':','\\','n','o','n','e','x','i','s','t','e','n','t','\\','f','i','l','e',0 };
55 /* For some reason SHILCreateFromPath does not work on Win98 and
56 * SHSimpleIDListFromPathA does not work on NT4. But if we call both we
57 * get what we want on all platforms.
59 static LPITEMIDLIST (WINAPI *pSHSimpleIDListFromPathAW)(LPCVOID);
61 static LPITEMIDLIST path_to_pidl(const char* path)
63 LPITEMIDLIST pidl;
65 if (!pSHSimpleIDListFromPathAW)
67 HMODULE hdll=LoadLibraryA("shell32.dll");
68 pSHSimpleIDListFromPathAW=(void*)GetProcAddress(hdll, (char*)162);
69 if (!pSHSimpleIDListFromPathAW)
70 trace("SHSimpleIDListFromPathAW not found in shell32.dll\n");
73 pidl=NULL;
74 /* pSHSimpleIDListFromPathAW maps to A on non NT platforms */
75 if (pSHSimpleIDListFromPathAW && (GetVersion() & 0x80000000))
76 pidl=pSHSimpleIDListFromPathAW(path);
78 if (!pidl)
80 WCHAR* pathW;
81 HRESULT r;
82 int len;
84 len=MultiByteToWideChar(CP_ACP, 0, path, -1, NULL, 0);
85 pathW=HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
86 MultiByteToWideChar(CP_ACP, 0, path, -1, pathW, len);
88 r=pSHILCreateFromPath(pathW, &pidl, NULL);
89 todo_wine {
90 ok(SUCCEEDED(r), "SHILCreateFromPath failed (0x%08x)\n", r);
92 HeapFree(GetProcessHeap(), 0, pathW);
94 return pidl;
99 * Test manipulation of an IShellLink's properties.
102 static void test_get_set(void)
104 HRESULT r;
105 IShellLinkA *sl;
106 char mypath[MAX_PATH];
107 char buffer[INFOTIPSIZE];
108 LPITEMIDLIST pidl, tmp_pidl;
109 const char * str;
110 int i;
111 WORD w;
113 r = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
114 &IID_IShellLinkA, (LPVOID*)&sl);
115 ok(SUCCEEDED(r), "no IID_IShellLinkA (0x%08x)\n", r);
116 if (!SUCCEEDED(r))
117 return;
119 /* Test Getting / Setting the description */
120 strcpy(buffer,"garbage");
121 r = IShellLinkA_GetDescription(sl, buffer, sizeof(buffer));
122 ok(SUCCEEDED(r), "GetDescription failed (0x%08x)\n", r);
123 ok(*buffer=='\0', "GetDescription returned '%s'\n", buffer);
125 str="Some description";
126 r = IShellLinkA_SetDescription(sl, str);
127 ok(SUCCEEDED(r), "SetDescription failed (0x%08x)\n", r);
129 strcpy(buffer,"garbage");
130 r = IShellLinkA_GetDescription(sl, buffer, sizeof(buffer));
131 ok(SUCCEEDED(r), "GetDescription failed (0x%08x)\n", r);
132 ok(lstrcmp(buffer,str)==0, "GetDescription returned '%s'\n", buffer);
134 /* Test Getting / Setting the work directory */
135 strcpy(buffer,"garbage");
136 r = IShellLinkA_GetWorkingDirectory(sl, buffer, sizeof(buffer));
137 ok(SUCCEEDED(r), "GetWorkingDirectory failed (0x%08x)\n", r);
138 ok(*buffer=='\0', "GetWorkingDirectory returned '%s'\n", buffer);
140 str="c:\\nonexistent\\directory";
141 r = IShellLinkA_SetWorkingDirectory(sl, str);
142 ok(SUCCEEDED(r), "SetWorkingDirectory failed (0x%08x)\n", r);
144 strcpy(buffer,"garbage");
145 r = IShellLinkA_GetWorkingDirectory(sl, buffer, sizeof(buffer));
146 ok(SUCCEEDED(r), "GetWorkingDirectory failed (0x%08x)\n", r);
147 ok(lstrcmpi(buffer,str)==0, "GetWorkingDirectory returned '%s'\n", buffer);
149 /* Test Getting / Setting the work directory */
150 strcpy(buffer,"garbage");
151 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
152 ok(SUCCEEDED(r), "GetPath failed (0x%08x)\n", r);
153 ok(*buffer=='\0', "GetPath returned '%s'\n", buffer);
155 r = IShellLinkA_SetPath(sl, "");
156 ok(r==S_OK, "SetPath failed (0x%08x)\n", r);
158 strcpy(buffer,"garbage");
159 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
160 ok(SUCCEEDED(r), "GetPath failed (0x%08x)\n", r);
161 ok(*buffer=='\0', "GetPath returned '%s'\n", buffer);
163 /* Win98 returns S_FALSE, but WinXP returns S_OK */
164 str="c:\\nonexistent\\file";
165 r = IShellLinkA_SetPath(sl, str);
166 ok(r==S_FALSE || r==S_OK, "SetPath failed (0x%08x)\n", r);
168 strcpy(buffer,"garbage");
169 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
170 ok(SUCCEEDED(r), "GetPath failed (0x%08x)\n", r);
171 ok(lstrcmpi(buffer,str)==0, "GetPath returned '%s'\n", buffer);
173 /* Get some a real path to play with */
174 r=GetModuleFileName(NULL, mypath, sizeof(mypath));
175 ok(r>=0 && r<sizeof(mypath), "GetModuleFileName failed (%d)\n", r);
177 /* Test the interaction of SetPath and SetIDList */
178 tmp_pidl=NULL;
179 r = IShellLinkA_GetIDList(sl, &tmp_pidl);
180 ok(SUCCEEDED(r), "GetIDList failed (0x%08x)\n", r);
181 if (SUCCEEDED(r))
183 strcpy(buffer,"garbage");
184 r=SHGetPathFromIDListA(tmp_pidl, buffer);
185 todo_wine {
186 ok(r, "SHGetPathFromIDListA failed\n");
188 if (r)
189 ok(lstrcmpi(buffer,str)==0, "GetIDList returned '%s'\n", buffer);
192 pidl=path_to_pidl(mypath);
193 todo_wine {
194 ok(pidl!=NULL, "path_to_pidl returned a NULL pidl\n");
197 if (pidl)
199 r = IShellLinkA_SetIDList(sl, pidl);
200 ok(SUCCEEDED(r), "SetIDList failed (0x%08x)\n", r);
202 tmp_pidl=NULL;
203 r = IShellLinkA_GetIDList(sl, &tmp_pidl);
204 ok(SUCCEEDED(r), "GetIDList failed (0x%08x)\n", r);
205 ok(tmp_pidl && pILIsEqual(pidl, tmp_pidl),
206 "GetIDList returned an incorrect pidl\n");
208 /* tmp_pidl is owned by IShellLink so we don't free it */
209 pILFree(pidl);
211 strcpy(buffer,"garbage");
212 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
213 ok(SUCCEEDED(r), "GetPath failed (0x%08x)\n", r);
214 ok(lstrcmpi(buffer, mypath)==0, "GetPath returned '%s'\n", buffer);
217 /* test path with quotes (Win98 IShellLinkA_SetPath returns S_FALSE, WinXP returns S_OK) */
218 r = IShellLinkA_SetPath(sl, "\"c:\\nonexistent\\file\"");
219 ok(r==S_FALSE || r == S_OK, "SetPath failed (0x%08x)\n", r);
221 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
222 ok(r==S_OK, "GetPath failed (0x%08x)\n", r);
223 ok(!lstrcmp(buffer, "C:\\nonexistent\\file"), "case doesn't match\n");
225 r = IShellLinkA_SetPath(sl, "\"c:\\foo");
226 ok(r==S_FALSE || r == S_OK, "SetPath failed (0x%08x)\n", r);
228 r = IShellLinkA_SetPath(sl, "\"\"c:\\foo");
229 ok(r==S_FALSE || r == S_OK, "SetPath failed (0x%08x)\n", r);
231 r = IShellLinkA_SetPath(sl, "c:\\foo\"");
232 ok(r==S_FALSE || r == S_OK, "SetPath failed (0x%08x)\n", r);
234 r = IShellLinkA_SetPath(sl, "\"\"c:\\foo\"");
235 ok(r==S_FALSE || r == S_OK, "SetPath failed (0x%08x)\n", r);
237 r = IShellLinkA_SetPath(sl, "\"\"c:\\foo\"\"");
238 ok(r==S_FALSE || r == S_OK, "SetPath failed (0x%08x)\n", r);
240 /* Test Getting / Setting the arguments */
241 strcpy(buffer,"garbage");
242 r = IShellLinkA_GetArguments(sl, buffer, sizeof(buffer));
243 ok(SUCCEEDED(r), "GetArguments failed (0x%08x)\n", r);
244 ok(*buffer=='\0', "GetArguments returned '%s'\n", buffer);
246 str="param1 \"spaced param2\"";
247 r = IShellLinkA_SetArguments(sl, str);
248 ok(SUCCEEDED(r), "SetArguments failed (0x%08x)\n", r);
250 strcpy(buffer,"garbage");
251 r = IShellLinkA_GetArguments(sl, buffer, sizeof(buffer));
252 ok(SUCCEEDED(r), "GetArguments failed (0x%08x)\n", r);
253 ok(lstrcmp(buffer,str)==0, "GetArguments returned '%s'\n", buffer);
255 /* Test Getting / Setting showcmd */
256 i=0xdeadbeef;
257 r = IShellLinkA_GetShowCmd(sl, &i);
258 ok(SUCCEEDED(r), "GetShowCmd failed (0x%08x)\n", r);
259 ok(i==SW_SHOWNORMAL, "GetShowCmd returned %d\n", i);
261 r = IShellLinkA_SetShowCmd(sl, SW_SHOWMAXIMIZED);
262 ok(SUCCEEDED(r), "SetShowCmd failed (0x%08x)\n", r);
264 i=0xdeadbeef;
265 r = IShellLinkA_GetShowCmd(sl, &i);
266 ok(SUCCEEDED(r), "GetShowCmd failed (0x%08x)\n", r);
267 ok(i==SW_SHOWMAXIMIZED, "GetShowCmd returned %d'\n", i);
269 /* Test Getting / Setting the icon */
270 i=0xdeadbeef;
271 strcpy(buffer,"garbage");
272 r = IShellLinkA_GetIconLocation(sl, buffer, sizeof(buffer), &i);
273 todo_wine {
274 ok(SUCCEEDED(r), "GetIconLocation failed (0x%08x)\n", r);
276 ok(*buffer=='\0', "GetIconLocation returned '%s'\n", buffer);
277 ok(i==0, "GetIconLocation returned %d\n", i);
279 str="c:\\nonexistent\\file";
280 r = IShellLinkA_SetIconLocation(sl, str, 0xbabecafe);
281 ok(SUCCEEDED(r), "SetIconLocation failed (0x%08x)\n", r);
283 i=0xdeadbeef;
284 r = IShellLinkA_GetIconLocation(sl, buffer, sizeof(buffer), &i);
285 ok(SUCCEEDED(r), "GetIconLocation failed (0x%08x)\n", r);
286 ok(lstrcmpi(buffer,str)==0, "GetArguments returned '%s'\n", buffer);
287 ok(i==0xbabecafe, "GetIconLocation returned %d'\n", i);
289 /* Test Getting / Setting the hot key */
290 w=0xbeef;
291 r = IShellLinkA_GetHotkey(sl, &w);
292 ok(SUCCEEDED(r), "GetHotkey failed (0x%08x)\n", r);
293 ok(w==0, "GetHotkey returned %d\n", w);
295 r = IShellLinkA_SetHotkey(sl, 0x5678);
296 ok(SUCCEEDED(r), "SetHotkey failed (0x%08x)\n", r);
298 w=0xbeef;
299 r = IShellLinkA_GetHotkey(sl, &w);
300 ok(SUCCEEDED(r), "GetHotkey failed (0x%08x)\n", r);
301 ok(w==0x5678, "GetHotkey returned %d'\n", w);
303 IShellLinkA_Release(sl);
308 * Test saving and loading .lnk files
311 #define lok ok_(__FILE__, line)
312 #define lok_todo_4(todo_flag,a,b,c,d) \
313 if ((todo & todo_flag) == 0) lok((a), (b), (c), (d)); \
314 else todo_wine lok((a), (b), (c), (d));
315 #define lok_todo_2(todo_flag,a,b) \
316 if ((todo & todo_flag) == 0) lok((a), (b)); \
317 else todo_wine lok((a), (b));
318 #define check_lnk(a,b,c) check_lnk_(__LINE__, (a), (b), (c))
320 void create_lnk_(int line, const WCHAR* path, lnk_desc_t* desc, int save_fails)
322 HRESULT r;
323 IShellLinkA *sl;
324 IPersistFile *pf;
326 r = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
327 &IID_IShellLinkA, (LPVOID*)&sl);
328 lok(SUCCEEDED(r), "no IID_IShellLinkA (0x%08x)\n", r);
329 if (!SUCCEEDED(r))
330 return;
332 if (desc->description)
334 r = IShellLinkA_SetDescription(sl, desc->description);
335 lok(SUCCEEDED(r), "SetDescription failed (0x%08x)\n", r);
337 if (desc->workdir)
339 r = IShellLinkA_SetWorkingDirectory(sl, desc->workdir);
340 lok(SUCCEEDED(r), "SetWorkingDirectory failed (0x%08x)\n", r);
342 if (desc->path)
344 r = IShellLinkA_SetPath(sl, desc->path);
345 lok(SUCCEEDED(r), "SetPath failed (0x%08x)\n", r);
347 if (desc->pidl)
349 r = IShellLinkA_SetIDList(sl, desc->pidl);
350 lok(SUCCEEDED(r), "SetIDList failed (0x%08x)\n", r);
352 if (desc->arguments)
354 r = IShellLinkA_SetArguments(sl, desc->arguments);
355 lok(SUCCEEDED(r), "SetArguments failed (0x%08x)\n", r);
357 if (desc->showcmd)
359 r = IShellLinkA_SetShowCmd(sl, desc->showcmd);
360 lok(SUCCEEDED(r), "SetShowCmd failed (0x%08x)\n", r);
362 if (desc->icon)
364 r = IShellLinkA_SetIconLocation(sl, desc->icon, desc->icon_id);
365 lok(SUCCEEDED(r), "SetIconLocation failed (0x%08x)\n", r);
367 if (desc->hotkey)
369 r = IShellLinkA_SetHotkey(sl, desc->hotkey);
370 lok(SUCCEEDED(r), "SetHotkey failed (0x%08x)\n", r);
373 r = IShellLinkW_QueryInterface(sl, &IID_IPersistFile, (LPVOID*)&pf);
374 lok(SUCCEEDED(r), "no IID_IPersistFile (0x%08x)\n", r);
375 if (SUCCEEDED(r))
377 r = IPersistFile_Save(pf, path, TRUE);
378 if (save_fails)
380 todo_wine {
381 lok(SUCCEEDED(r), "save failed (0x%08x)\n", r);
384 else
386 lok(SUCCEEDED(r), "save failed (0x%08x)\n", r);
388 IPersistFile_Release(pf);
391 IShellLinkA_Release(sl);
394 static void check_lnk_(int line, const WCHAR* path, lnk_desc_t* desc, int todo)
396 HRESULT r;
397 IShellLinkA *sl;
398 IPersistFile *pf;
399 char buffer[INFOTIPSIZE];
401 r = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
402 &IID_IShellLinkA, (LPVOID*)&sl);
403 lok(SUCCEEDED(r), "no IID_IShellLinkA (0x%08x)\n", r);
404 if (!SUCCEEDED(r))
405 return;
407 r = IShellLinkA_QueryInterface(sl, &IID_IPersistFile, (LPVOID*)&pf);
408 lok(SUCCEEDED(r), "no IID_IPersistFile (0x%08x)\n", r);
409 if (!SUCCEEDED(r))
411 IShellLinkA_Release(sl);
412 return;
415 r = IPersistFile_Load(pf, path, STGM_READ);
416 lok(SUCCEEDED(r), "load failed (0x%08x)\n", r);
417 IPersistFile_Release(pf);
418 if (!SUCCEEDED(r))
420 IShellLinkA_Release(sl);
421 return;
424 if (desc->description)
426 strcpy(buffer,"garbage");
427 r = IShellLinkA_GetDescription(sl, buffer, sizeof(buffer));
428 lok(SUCCEEDED(r), "GetDescription failed (0x%08x)\n", r);
429 lok_todo_4(0x1, lstrcmp(buffer, desc->description)==0,
430 "GetDescription returned '%s' instead of '%s'\n",
431 buffer, desc->description);
433 if (desc->workdir)
435 strcpy(buffer,"garbage");
436 r = IShellLinkA_GetWorkingDirectory(sl, buffer, sizeof(buffer));
437 lok(SUCCEEDED(r), "GetWorkingDirectory failed (0x%08x)\n", r);
438 lok_todo_4(0x2, lstrcmpi(buffer, desc->workdir)==0,
439 "GetWorkingDirectory returned '%s' instead of '%s'\n",
440 buffer, desc->workdir);
442 if (desc->path)
444 strcpy(buffer,"garbage");
445 r = IShellLinkA_GetPath(sl, buffer, sizeof(buffer), NULL, SLGP_RAWPATH);
446 lok(SUCCEEDED(r), "GetPath failed (0x%08x)\n", r);
447 lok_todo_4(0x4, lstrcmpi(buffer, desc->path)==0,
448 "GetPath returned '%s' instead of '%s'\n",
449 buffer, desc->path);
451 if (desc->pidl)
453 LPITEMIDLIST pidl=NULL;
454 r = IShellLinkA_GetIDList(sl, &pidl);
455 lok(SUCCEEDED(r), "GetIDList failed (0x%08x)\n", r);
456 lok_todo_2(0x8, pILIsEqual(pidl, desc->pidl),
457 "GetIDList returned an incorrect pidl\n");
459 if (desc->showcmd)
461 int i=0xdeadbeef;
462 r = IShellLinkA_GetShowCmd(sl, &i);
463 lok(SUCCEEDED(r), "GetShowCmd failed (0x%08x)\n", r);
464 lok_todo_4(0x10, i==desc->showcmd,
465 "GetShowCmd returned 0x%0x instead of 0x%0x\n",
466 i, desc->showcmd);
468 if (desc->icon)
470 int i=0xdeadbeef;
471 strcpy(buffer,"garbage");
472 r = IShellLinkA_GetIconLocation(sl, buffer, sizeof(buffer), &i);
473 lok(SUCCEEDED(r), "GetIconLocation failed (0x%08x)\n", r);
474 lok_todo_4(0x20, lstrcmpi(buffer, desc->icon)==0,
475 "GetIconLocation returned '%s' instead of '%s'\n",
476 buffer, desc->icon);
477 lok_todo_4(0x20, i==desc->icon_id,
478 "GetIconLocation returned 0x%0x instead of 0x%0x\n",
479 i, desc->icon_id);
481 if (desc->hotkey)
483 WORD i=0xbeef;
484 r = IShellLinkA_GetHotkey(sl, &i);
485 lok(SUCCEEDED(r), "GetHotkey failed (0x%08x)\n", r);
486 lok_todo_4(0x40, i==desc->hotkey,
487 "GetHotkey returned 0x%04x instead of 0x%04x\n",
488 i, desc->hotkey);
491 IShellLinkA_Release(sl);
494 static void test_load_save(void)
496 lnk_desc_t desc;
497 char mypath[MAX_PATH];
498 char mydir[MAX_PATH];
499 char realpath[MAX_PATH];
500 char* p;
501 HANDLE hf;
502 DWORD r;
504 /* Save an empty .lnk file */
505 memset(&desc, 0, sizeof(desc));
506 create_lnk(lnkfile, &desc, 0);
508 /* It should come back as a bunch of empty strings */
509 desc.description="";
510 desc.workdir="";
511 desc.path="";
512 desc.arguments="";
513 desc.icon="";
514 check_lnk(lnkfile, &desc, 0x0);
516 /* Point a .lnk file to nonexistent files */
517 desc.description="";
518 desc.workdir="c:\\Nonexitent\\work\\directory";
519 desc.path="c:\\nonexistent\\path";
520 desc.pidl=NULL;
521 desc.arguments="";
522 desc.showcmd=0;
523 desc.icon="c:\\nonexistent\\icon\\file";
524 desc.icon_id=1234;
525 desc.hotkey=0;
526 create_lnk(lnkfile, &desc, 0);
527 check_lnk(lnkfile, &desc, 0x0);
529 r=GetModuleFileName(NULL, mypath, sizeof(mypath));
530 ok(r>=0 && r<sizeof(mypath), "GetModuleFileName failed (%d)\n", r);
531 strcpy(mydir, mypath);
532 p=strrchr(mydir, '\\');
533 if (p)
534 *p='\0';
536 /* Overwrite the existing lnk file and point it to existing files */
537 desc.description="test 2";
538 desc.workdir=mydir;
539 desc.path=mypath;
540 desc.pidl=NULL;
541 desc.arguments="/option1 /option2 \"Some string\"";
542 desc.showcmd=SW_SHOWNORMAL;
543 desc.icon=mypath;
544 desc.icon_id=0;
545 desc.hotkey=0x1234;
546 create_lnk(lnkfile, &desc, 0);
547 check_lnk(lnkfile, &desc, 0x0);
549 /* Overwrite the existing lnk file and test link to a command on the path */
550 desc.description="command on path";
551 desc.workdir=mypath;
552 desc.path="rundll32.exe";
553 desc.pidl=NULL;
554 desc.arguments="/option1 /option2 \"Some string\"";
555 desc.showcmd=SW_SHOWNORMAL;
556 desc.icon=mypath;
557 desc.icon_id=0;
558 desc.hotkey=0x1234;
559 create_lnk(lnkfile, &desc, 0);
560 /* Check that link is created to proper location */
561 SearchPathA( NULL, desc.path, NULL, MAX_PATH, realpath, NULL);
562 desc.path=realpath;
563 check_lnk(lnkfile, &desc, 0x0);
565 /* Create a temporary non-executable file */
566 r=GetTempPath(sizeof(mypath), mypath);
567 ok(r>=0 && r<sizeof(mypath), "GetTempPath failed (%d), err %d\n", r, GetLastError());
568 r=pGetLongPathNameA(mypath, mydir, sizeof(mydir));
569 ok(r>=0 && r<sizeof(mydir), "GetLongPathName failed (%d), err %d\n", r, GetLastError());
570 p=strrchr(mydir, '\\');
571 if (p)
572 *p='\0';
574 strcpy(mypath, mydir);
575 strcat(mypath, "\\test.txt");
576 hf = CreateFile(mypath, GENERIC_WRITE, 0, NULL,
577 CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
578 CloseHandle(hf);
580 /* Overwrite the existing lnk file and test link to an existing non-executable file */
581 desc.description="non-executable file";
582 desc.workdir=mydir;
583 desc.path=mypath;
584 desc.pidl=NULL;
585 desc.arguments="";
586 desc.showcmd=SW_SHOWNORMAL;
587 desc.icon=mypath;
588 desc.icon_id=0;
589 desc.hotkey=0x1234;
590 create_lnk(lnkfile, &desc, 0);
591 check_lnk(lnkfile, &desc, 0x0);
593 r = DeleteFileA(mypath);
594 ok(r, "failed to delete file %s (%d)\n", mypath, GetLastError());
596 /* FIXME: Also test saving a .lnk pointing to a pidl that cannot be
597 * represented as a path.
600 /* DeleteFileW is not implemented on Win9x */
601 r=DeleteFileA("c:\\test.lnk");
602 ok(r, "failed to delete link (%d)\n", GetLastError());
605 static void test_datalink(void)
607 static const WCHAR lnk[] = {
608 ':',':','{','9','d','b','1','1','8','6','f','-','4','0','d','f','-','1',
609 '1','d','1','-','a','a','8','c','-','0','0','c','0','4','f','b','6','7',
610 '8','6','3','}',':','{','0','0','0','1','0','4','0','9','-','7','8','E',
611 '1','-','1','1','D','2','-','B','6','0','F','-','0','0','6','0','9','7',
612 'C','9','9','8','E','7','}',':',':','{','9','d','b','1','1','8','6','e',
613 '-','4','0','d','f','-','1','1','d','1','-','a','a','8','c','-','0','0',
614 'c','0','4','f','b','6','7','8','6','3','}',':','2','6',',','!','!','g',
615 'x','s','f','(','N','g',']','q','F','`','H','{','L','s','A','C','C','E',
616 'S','S','F','i','l','e','s','>','p','l','T',']','j','I','{','j','f','(',
617 '=','1','&','L','[','-','8','1','-',']',':',':',0 };
618 static const WCHAR comp[] = {
619 '2','6',',','!','!','g','x','s','f','(','N','g',']','q','F','`','H','{',
620 'L','s','A','C','C','E','S','S','F','i','l','e','s','>','p','l','T',']',
621 'j','I','{','j','f','(','=','1','&','L','[','-','8','1','-',']',0 };
622 IShellLinkDataList *dl = NULL;
623 IShellLinkW *sl = NULL;
624 HRESULT r;
625 DWORD flags = 0;
626 EXP_DARWIN_LINK *dar;
628 r = CoCreateInstance( &CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
629 &IID_IShellLinkW, (LPVOID*)&sl );
630 ok( r == S_OK || r == E_NOINTERFACE, "CoCreateInstance failed (0x%08x)\n", r);
631 if (!sl)
633 skip("no shelllink\n");
634 return;
637 r = IShellLinkW_QueryInterface( sl, &_IID_IShellLinkDataList, (LPVOID*) &dl );
638 ok(r == S_OK, "IShellLinkW_QueryInterface failed (0x%08x)\n", r);
640 if (!dl)
642 skip("no datalink interface\n");
643 return;
646 flags = 0;
647 r = dl->lpVtbl->GetFlags( dl, &flags );
648 ok( r == S_OK, "GetFlags failed\n");
649 ok( flags == 0, "GetFlags returned wrong flags\n");
651 dar = (void*)-1;
652 r = dl->lpVtbl->CopyDataBlock( dl, EXP_DARWIN_ID_SIG, (LPVOID*) &dar );
653 ok( r == E_FAIL, "CopyDataBlock failed\n");
654 ok( dar == NULL, "should be null\n");
656 r = IShellLinkW_SetPath(sl, lnk);
657 ok(r == S_OK, "set path failed\n");
660 * The following crashes:
661 * r = dl->lpVtbl->GetFlags( dl, NULL );
664 flags = 0;
665 r = dl->lpVtbl->GetFlags( dl, &flags );
666 ok( r == S_OK, "GetFlags failed\n");
667 ok( flags == (SLDF_HAS_DARWINID|SLDF_HAS_LOGO3ID),
668 "GetFlags returned wrong flags\n");
670 dar = NULL;
671 r = dl->lpVtbl->CopyDataBlock( dl, EXP_DARWIN_ID_SIG, (LPVOID*) &dar );
672 ok( r == S_OK, "CopyDataBlock failed\n");
674 ok( dar && ((DATABLOCK_HEADER*)dar)->dwSignature == EXP_DARWIN_ID_SIG, "signature wrong\n");
675 ok( dar && 0==lstrcmpW(dar->szwDarwinID, comp ), "signature wrong\n");
677 LocalFree( dar );
679 IUnknown_Release( dl );
680 IShellLinkW_Release( sl );
683 START_TEST(shelllink)
685 HRESULT r;
686 HMODULE hmod = GetModuleHandleA("shell32.dll");
687 HMODULE hkernel32 = GetModuleHandleA("kernel32.dll");
689 pILFree = (fnILFree) GetProcAddress(hmod, (LPSTR)155);
690 pILIsEqual = (fnILIsEqual) GetProcAddress(hmod, (LPSTR)21);
691 pSHILCreateFromPath = (fnSHILCreateFromPath) GetProcAddress(hmod, (LPSTR)28);
693 pGetLongPathNameA = (void *)GetProcAddress(hkernel32, "GetLongPathNameA");
695 r = CoInitialize(NULL);
696 ok(SUCCEEDED(r), "CoInitialize failed (0x%08x)\n", r);
697 if (!SUCCEEDED(r))
698 return;
700 test_get_set();
701 test_load_save();
702 test_datalink();
704 CoUninitialize();