Moved mciavi32 to the top-level dlls directory.
[wine] / dlls / shell32 / tests / shlfolder.c
1 /*
2  * Unit test of the IShellFolder functions.
3  *
4  * Copyright 2004 Vitaliy Margolen
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <stdarg.h>
22 #include <stdio.h>
23
24 #define COBJMACROS
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wtypes.h"
29 #include "shellapi.h"
30
31
32 #include "shlguid.h"
33 #include "shlobj.h"
34 #include "shobjidl.h"
35 #include "shlwapi.h"
36 #include "ocidl.h"
37 #include "oleauto.h"
38
39
40 #include "wine/unicode.h"
41 #include "wine/test.h"
42
43
44 static IMalloc *ppM;
45
46 static HRESULT (WINAPI *pSHBindToParent)(LPCITEMIDLIST, REFIID, LPVOID*, LPCITEMIDLIST*);
47 static BOOL (WINAPI *pSHGetSpecialFolderPathW)(HWND, LPWSTR, int, BOOL);
48 static HRESULT (WINAPI *pStrRetToBufW)(STRRET*,LPCITEMIDLIST,LPWSTR,UINT);
49
50 static void init_function_pointers(void)
51 {
52     HMODULE hmod;
53     HRESULT hr;
54
55     hmod = GetModuleHandleA("shell32.dll");
56     if(hmod)
57     {
58         pSHBindToParent = (void*)GetProcAddress(hmod, "SHBindToParent");
59         pSHGetSpecialFolderPathW = (void*)GetProcAddress(hmod, "SHGetSpecialFolderPathW");
60     }
61
62     hmod = GetModuleHandleA("shlwapi.dll");
63     if(hmod)
64     {
65         pStrRetToBufW = (void*)GetProcAddress(hmod, "StrRetToBufW");
66     }
67
68     hr = SHGetMalloc(&ppM);
69     ok(hr == S_OK, "SHGetMalloc failed %08lx\n", hr);
70 }
71
72 static void test_ParseDisplayName(void)
73 {
74     HRESULT hr;
75     IShellFolder *IDesktopFolder;
76     static const char *cNonExistDir1A = "c:\\nonexist_subdir";
77     static const char *cNonExistDir2A = "c:\\\\nonexist_subdir";
78     DWORD res;
79     WCHAR cTestDirW [MAX_PATH] = {0};
80     ITEMIDLIST *newPIDL;
81
82     hr = SHGetDesktopFolder(&IDesktopFolder);
83     if(hr != S_OK) return;
84
85     res = GetFileAttributesA(cNonExistDir1A);
86     if(res != INVALID_FILE_ATTRIBUTES) return;
87
88     MultiByteToWideChar(CP_ACP, 0, cNonExistDir1A, -1, cTestDirW, MAX_PATH);
89     hr = IShellFolder_ParseDisplayName(IDesktopFolder, 
90         NULL, NULL, cTestDirW, NULL, &newPIDL, 0);
91     ok((hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)) || (hr == E_FAIL), 
92         "ParseDisplayName returned %08lx, expected 80070002 or E_FAIL\n", hr);
93
94     res = GetFileAttributesA(cNonExistDir2A);
95     if(res != INVALID_FILE_ATTRIBUTES) return;
96
97     MultiByteToWideChar(CP_ACP, 0, cNonExistDir2A, -1, cTestDirW, MAX_PATH);
98     hr = IShellFolder_ParseDisplayName(IDesktopFolder, 
99         NULL, NULL, cTestDirW, NULL, &newPIDL, 0);
100     ok((hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)) || (hr == E_FAIL) || (hr == E_INVALIDARG), 
101         "ParseDisplayName returned %08lx, expected 80070002, E_FAIL or E_INVALIDARG\n", hr);
102 }
103
104 /* creates a file with the specified name for tests */
105 static void CreateTestFile(const CHAR *name)
106 {
107     HANDLE file;
108     DWORD written;
109
110     file = CreateFileA(name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL);
111     if (file != INVALID_HANDLE_VALUE)
112     {
113         WriteFile(file, name, strlen(name), &written, NULL);
114         WriteFile(file, "\n", strlen("\n"), &written, NULL);
115         CloseHandle(file);
116     }
117 }
118
119
120 /* initializes the tests */
121 static void CreateFilesFolders(void)
122 {
123     CreateDirectoryA(".\\testdir", NULL);
124     CreateDirectoryA(".\\testdir\\test.txt", NULL);
125     CreateTestFile  (".\\testdir\\test1.txt ");
126     CreateTestFile  (".\\testdir\\test2.txt ");
127     CreateTestFile  (".\\testdir\\test3.txt ");
128     CreateDirectoryA(".\\testdir\\testdir2 ", NULL);
129     CreateDirectoryA(".\\testdir\\testdir2\\subdir", NULL);
130 }
131
132 /* cleans after tests */
133 static void Cleanup(void)
134 {
135     DeleteFileA(".\\testdir\\test1.txt");
136     DeleteFileA(".\\testdir\\test2.txt");
137     DeleteFileA(".\\testdir\\test3.txt");
138     RemoveDirectoryA(".\\testdir\\test.txt");
139     RemoveDirectoryA(".\\testdir\\testdir2\\subdir");
140     RemoveDirectoryA(".\\testdir\\testdir2");
141     RemoveDirectoryA(".\\testdir");
142 }
143
144
145 /* perform test */
146 static void test_EnumObjects(IShellFolder *iFolder)
147 {
148     IEnumIDList *iEnumList;
149     LPITEMIDLIST newPIDL, idlArr[10];
150     ULONG NumPIDLs;
151     int i=0, j;
152     HRESULT hr;
153
154     static const WORD iResults [5][5] =
155     {
156         { 0,-1,-1,-1,-1},
157         { 1, 0,-1,-1,-1},
158         { 1, 1, 0,-1,-1},
159         { 1, 1, 1, 0,-1},
160         { 1, 1, 1, 1, 0}
161     };
162
163     /* Just test SFGAO_FILESYSTEM | SFGAO_FOLDER | SFGAO_FILESYSANCESTOR for now */
164     static const ULONG attrs[5] =
165     {
166         SFGAO_FILESYSTEM | SFGAO_FOLDER | SFGAO_FILESYSANCESTOR,
167         SFGAO_FILESYSTEM | SFGAO_FOLDER | SFGAO_FILESYSANCESTOR,
168         SFGAO_FILESYSTEM,
169         SFGAO_FILESYSTEM,
170         SFGAO_FILESYSTEM,
171     };
172
173     hr = IShellFolder_EnumObjects(iFolder, NULL, SHCONTF_FOLDERS | SHCONTF_NONFOLDERS | SHCONTF_INCLUDEHIDDEN, &iEnumList);
174     ok(hr == S_OK, "EnumObjects failed %08lx\n", hr);
175
176     /* This is to show that, contrary to what is said on MSDN, on IEnumIDList::Next,
177      * the filesystem shellfolders return S_OK even if less than 'celt' items are
178      * returned (in contrast to S_FALSE). We have to do it in a loop since WinXP
179      * only ever returns a single entry per call. */
180     while (IEnumIDList_Next(iEnumList, 10-i, &idlArr[i], &NumPIDLs) == S_OK) 
181         i += NumPIDLs;
182     ok (i == 5, "i: %d\n", i);
183
184     hr = IEnumIDList_Release(iEnumList);
185     ok(hr == S_OK, "IEnumIDList_Release failed %08lx\n", hr);
186     
187     /* Sort them first in case of wrong order from system */
188     for (i=0;i<5;i++) for (j=0;j<5;j++)
189         if ((SHORT)IShellFolder_CompareIDs(iFolder, 0, idlArr[i], idlArr[j]) < 0)
190         {
191             newPIDL = idlArr[i];
192             idlArr[i] = idlArr[j];
193             idlArr[j] = newPIDL;
194         }
195             
196     for (i=0;i<5;i++) for (j=0;j<5;j++)
197     {
198         hr = IShellFolder_CompareIDs(iFolder, 0, idlArr[i], idlArr[j]);
199         ok(hr == iResults[i][j], "Got %lx expected [%d]-[%d]=%x\n", hr, i, j, iResults[i][j]);
200     }
201
202
203     for (i = 0; i < 5; i++)
204     {
205         SFGAOF flags;
206         flags = SFGAO_FILESYSTEM | SFGAO_FOLDER | SFGAO_FILESYSANCESTOR;
207         hr = IShellFolder_GetAttributesOf(iFolder, 1, (LPCITEMIDLIST*)(idlArr + i), &flags);
208         flags &= SFGAO_FILESYSTEM | SFGAO_FOLDER | SFGAO_FILESYSANCESTOR;
209         ok(hr == S_OK, "GetAttributesOf returns %08lx\n", hr);
210         ok(flags == attrs[i], "GetAttributesOf gets attrs %08lx, expects %08lx\n", flags, attrs[i]);
211     }
212
213     for (i=0;i<5;i++)
214         IMalloc_Free(ppM, idlArr[i]);
215 }
216
217 static void test_BindToObject(void)
218 {
219     HRESULT hr;
220     UINT cChars;
221     IShellFolder *psfDesktop, *psfChild, *psfMyComputer, *psfSystemDir;
222     SHITEMID emptyitem = { 0, { 0 } };
223     LPITEMIDLIST pidlMyComputer, pidlSystemDir, pidlEmpty = (LPITEMIDLIST)&emptyitem;
224     WCHAR wszSystemDir[MAX_PATH];
225     char szSystemDir[MAX_PATH];
226     WCHAR wszMyComputer[] = { 
227         ':',':','{','2','0','D','0','4','F','E','0','-','3','A','E','A','-','1','0','6','9','-',
228         'A','2','D','8','-','0','8','0','0','2','B','3','0','3','0','9','D','}',0 };
229
230     /* The following tests shows that BindToObject should fail with E_INVALIDARG if called
231      * with an empty pidl. This is tested for Desktop, MyComputer and the FS ShellFolder
232      */
233     hr = SHGetDesktopFolder(&psfDesktop);
234     ok (SUCCEEDED(hr), "SHGetDesktopFolder failed! hr = %08lx\n", hr);
235     if (FAILED(hr)) return;
236     
237     hr = IShellFolder_BindToObject(psfDesktop, pidlEmpty, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
238     ok (hr == E_INVALIDARG, "Desktop's BindToObject should fail, when called with empty pidl! hr = %08lx\n", hr);
239
240     hr = IShellFolder_BindToObject(psfDesktop, NULL, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
241     ok (hr == E_INVALIDARG, "Desktop's BindToObject should fail, when called with NULL pidl! hr = %08lx\n", hr);
242
243     hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, wszMyComputer, NULL, &pidlMyComputer, NULL);
244     ok (SUCCEEDED(hr), "Desktop's ParseDisplayName failed to parse MyComputer's CLSID! hr = %08lx\n", hr);
245     if (FAILED(hr)) {
246         IShellFolder_Release(psfDesktop);
247         return;
248     }
249     
250     hr = IShellFolder_BindToObject(psfDesktop, pidlMyComputer, NULL, &IID_IShellFolder, (LPVOID*)&psfMyComputer);
251     ok (SUCCEEDED(hr), "Desktop failed to bind to MyComputer object! hr = %08lx\n", hr);
252     IShellFolder_Release(psfDesktop);
253     IMalloc_Free(ppM, pidlMyComputer);
254     if (FAILED(hr)) return;
255
256     hr = IShellFolder_BindToObject(psfMyComputer, pidlEmpty, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
257     ok (hr == E_INVALIDARG, "MyComputers's BindToObject should fail, when called with empty pidl! hr = %08lx\n", hr);
258
259     hr = IShellFolder_BindToObject(psfMyComputer, NULL, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
260     ok (hr == E_INVALIDARG, "MyComputers's BindToObject should fail, when called with NULL pidl! hr = %08lx\n", hr);
261
262     cChars = GetSystemDirectoryA(szSystemDir, MAX_PATH);
263     ok (cChars > 0 && cChars < MAX_PATH, "GetSystemDirectoryA failed! LastError: %08lx\n", GetLastError());
264     if (cChars == 0 || cChars >= MAX_PATH) {
265         IShellFolder_Release(psfMyComputer);
266         return;
267     }
268     MultiByteToWideChar(CP_ACP, 0, szSystemDir, -1, wszSystemDir, MAX_PATH);
269     
270     hr = IShellFolder_ParseDisplayName(psfMyComputer, NULL, NULL, wszSystemDir, NULL, &pidlSystemDir, NULL);
271     ok (SUCCEEDED(hr), "MyComputers's ParseDisplayName failed to parse the SystemDirectory! hr = %08lx\n", hr);
272     if (FAILED(hr)) {
273         IShellFolder_Release(psfMyComputer);
274         return;
275     }
276
277     hr = IShellFolder_BindToObject(psfMyComputer, pidlSystemDir, NULL, &IID_IShellFolder, (LPVOID*)&psfSystemDir);
278     ok (SUCCEEDED(hr), "MyComputer failed to bind to a FileSystem ShellFolder! hr = %08lx\n", hr);
279     IShellFolder_Release(psfMyComputer);
280     IMalloc_Free(ppM, pidlSystemDir);
281     if (FAILED(hr)) return;
282
283     hr = IShellFolder_BindToObject(psfSystemDir, pidlEmpty, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
284     ok (hr == E_INVALIDARG, 
285         "FileSystem ShellFolder's BindToObject should fail, when called with empty pidl! hr = %08lx\n", hr);
286     
287     hr = IShellFolder_BindToObject(psfSystemDir, NULL, NULL, &IID_IShellFolder, (LPVOID*)&psfChild);
288     ok (hr == E_INVALIDARG, 
289         "FileSystem ShellFolder's BindToObject should fail, when called with NULL pidl! hr = %08lx\n", hr);
290
291     IShellFolder_Release(psfSystemDir);
292 }
293   
294 static void test_GetDisplayName(void)
295 {
296     BOOL result;
297     HRESULT hr;
298     HANDLE hTestFile;
299     WCHAR wszTestFile[MAX_PATH], wszTestFile2[MAX_PATH], wszTestDir[MAX_PATH];
300     char szTestFile[MAX_PATH], szTestDir[MAX_PATH];
301     STRRET strret;
302     LPSHELLFOLDER psfDesktop, psfPersonal;
303     IUnknown *psfFile;
304     LPITEMIDLIST pidlTestFile;
305     LPCITEMIDLIST pidlLast;
306     static const WCHAR wszFileName[] = { 'w','i','n','e','t','e','s','t','.','f','o','o',0 };
307     static const WCHAR wszDirName[] = { 'w','i','n','e','t','e','s','t',0 };
308
309     /* I'm trying to figure if there is a functional difference between calling
310      * SHGetPathFromIDList and calling GetDisplayNameOf(SHGDN_FORPARSING) after
311      * binding to the shellfolder. One thing I thought of was that perhaps 
312      * SHGetPathFromIDList would be able to get the path to a file, which does
313      * not exist anymore, while the other method would'nt. It turns out there's
314      * no functional difference in this respect.
315      */
316
317     if(!pSHGetSpecialFolderPathW) return;
318
319     /* First creating a directory in MyDocuments and a file in this directory. */
320     result = pSHGetSpecialFolderPathW(NULL, wszTestDir, CSIDL_PERSONAL, FALSE);
321     ok(result, "SHGetSpecialFolderPathW failed! Last error: %08lx\n", GetLastError());
322     if (!result) return;
323
324     PathAddBackslashW(wszTestDir);
325     lstrcatW(wszTestDir, wszDirName);
326     WideCharToMultiByte(CP_ACP, 0, wszTestDir, -1, szTestDir, MAX_PATH, 0, 0);
327     result = CreateDirectoryA(szTestDir, NULL);
328     ok(result, "CreateDirectoryA failed! Last error: %08lx\n", GetLastError());
329     if (!result) return;
330
331     lstrcpyW(wszTestFile, wszTestDir);
332     PathAddBackslashW(wszTestFile);
333     lstrcatW(wszTestFile, wszFileName);
334     WideCharToMultiByte(CP_ACP, 0, wszTestFile, -1, szTestFile, MAX_PATH, 0, 0);
335
336     hTestFile = CreateFileA(szTestFile, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL);
337     ok((hTestFile != INVALID_HANDLE_VALUE), "CreateFileA failed! Last error: %08lx\n", GetLastError());
338     if (hTestFile == INVALID_HANDLE_VALUE) return;
339     CloseHandle(hTestFile);
340
341     /* Getting an itemidlist for the file. */
342     hr = SHGetDesktopFolder(&psfDesktop);
343     ok(SUCCEEDED(hr), "SHGetDesktopFolder failed! hr = %08lx\n", hr);
344     if (FAILED(hr)) return;
345
346     hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, wszTestFile, NULL, &pidlTestFile, NULL);
347     ok(SUCCEEDED(hr), "Desktop->ParseDisplayName failed! hr = %08lx\n", hr);
348     if (FAILED(hr)) {
349         IShellFolder_Release(psfDesktop);
350         return;
351     }
352
353     /* It seems as if we cannot bind to regular files on windows, but only directories. 
354      */
355     hr = IShellFolder_BindToObject(psfDesktop, pidlTestFile, NULL, &IID_IUnknown, (VOID**)&psfFile);
356     todo_wine { ok (hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND), "hr = %08lx\n", hr); }
357     if (SUCCEEDED(hr)) {
358         IShellFolder_Release(psfFile);
359     }
360     
361     /* Deleting the file and the directory */
362     DeleteFileA(szTestFile);
363     RemoveDirectoryA(szTestDir);
364
365     /* SHGetPathFromIDListW still works, although the file is not present anymore. */
366     result = SHGetPathFromIDListW(pidlTestFile, wszTestFile2);
367     ok (result, "SHGetPathFromIDListW failed! Last error: %08lx\n", GetLastError());
368     ok (!lstrcmpiW(wszTestFile, wszTestFile2), "SHGetPathFromIDListW returns incorrect path!\n");
369
370     if(!pSHBindToParent) return;
371
372     /* Binding to the folder and querying the display name of the file also works. */
373     hr = pSHBindToParent(pidlTestFile, &IID_IShellFolder, (VOID**)&psfPersonal, &pidlLast); 
374     ok (SUCCEEDED(hr), "SHBindToParent failed! hr = %08lx\n", hr);
375     if (FAILED(hr)) {
376         IShellFolder_Release(psfDesktop);
377         return;
378     }
379
380     hr = IShellFolder_GetDisplayNameOf(psfPersonal, pidlLast, SHGDN_FORPARSING, &strret);
381     ok (SUCCEEDED(hr), "Personal->GetDisplayNameOf failed! hr = %08lx\n", hr);
382     if (FAILED(hr)) {
383         IShellFolder_Release(psfDesktop);
384         IShellFolder_Release(psfPersonal);
385         return;
386     }
387
388     if (pStrRetToBufW)
389     {
390         hr = pStrRetToBufW(&strret, pidlLast, wszTestFile2, MAX_PATH);
391         ok (SUCCEEDED(hr), "StrRetToBufW failed! hr = %08lx\n", hr);
392         ok (!lstrcmpiW(wszTestFile, wszTestFile2), "GetDisplayNameOf returns incorrect path!\n");
393     }
394     
395     IShellFolder_Release(psfDesktop);
396     IShellFolder_Release(psfPersonal);
397 }
398
399 static void test_CallForAttributes(void)
400 {
401     HKEY hKey;
402     LONG lResult;
403     HRESULT hr;
404     DWORD dwSize;
405     LPSHELLFOLDER psfDesktop;
406     LPITEMIDLIST pidlMyDocuments;
407     DWORD dwAttributes, dwCallForAttributes, dwOrigAttributes, dwOrigCallForAttributes;
408     static const WCHAR wszAttributes[] = { 'A','t','t','r','i','b','u','t','e','s',0 };
409     static const WCHAR wszCallForAttributes[] = { 
410         'C','a','l','l','F','o','r','A','t','t','r','i','b','u','t','e','s',0 };
411     static const WCHAR wszMyDocumentsKey[] = {
412         'C','L','S','I','D','\\','{','4','5','0','D','8','F','B','A','-','A','D','2','5','-',
413         '1','1','D','0','-','9','8','A','8','-','0','8','0','0','3','6','1','B','1','1','0','3','}',
414         '\\','S','h','e','l','l','F','o','l','d','e','r',0 };
415     WCHAR wszMyDocuments[] = {
416         ':',':','{','4','5','0','D','8','F','B','A','-','A','D','2','5','-','1','1','D','0','-',
417         '9','8','A','8','-','0','8','0','0','3','6','1','B','1','1','0','3','}',0 };
418     
419     /* For the root of a namespace extension, the attributes are not queried by binding
420      * to the object and calling GetAttributesOf. Instead, the attributes are read from 
421      * the registry value HKCR/CLSID/{...}/ShellFolder/Attributes. This is documented on MSDN.
422      *
423      * The MyDocuments shellfolder on WinXP has a HKCR/CLSID/{...}/ShellFolder/CallForAttributes
424      * value. It seems that if the folder is queried for one of the flags set in CallForAttributes,
425      * the shell does bind to the folder object and calls GetAttributesOf. This is not documented
426      * on MSDN. This test is meant to document the observed behaviour on WinXP SP2.
427      */
428     hr = SHGetDesktopFolder(&psfDesktop);
429     ok (SUCCEEDED(hr), "SHGetDesktopFolder failed! hr = %08lx\n", hr);
430     if (FAILED(hr)) return;
431     
432     hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, wszMyDocuments, NULL, 
433                                        &pidlMyDocuments, NULL);
434     ok (SUCCEEDED(hr), 
435         "Desktop's ParseDisplayName failed to parse MyDocuments's CLSID! hr = %08lx\n", hr);
436     if (FAILED(hr)) {
437         IShellFolder_Release(psfDesktop);
438         return;
439     }
440
441     dwAttributes = 0xffffffff;
442     hr = IShellFolder_GetAttributesOf(psfDesktop, 1, 
443                                       (LPCITEMIDLIST*)&pidlMyDocuments, &dwAttributes);
444     ok (SUCCEEDED(hr), "Desktop->GetAttributesOf(MyDocuments) failed! hr = %08lx\n", hr);
445
446     /* We need the following setup (as observed on WinXP SP2), for the tests to make sense. */
447     todo_wine{ ok (dwAttributes & SFGAO_FILESYSTEM, 
448                    "SFGAO_FILESYSTEM attribute is not set for MyDocuments!\n"); }
449     ok (!(dwAttributes & SFGAO_ISSLOW), "SFGAO_ISSLOW attribute is set for MyDocuments!\n");
450     ok (!(dwAttributes & SFGAO_GHOSTED), "SFGAO_GHOSTED attribute is set for MyDocuments!\n");
451
452     /* We don't have the MyDocuments shellfolder in wine yet, and thus we don't have the registry
453      * key. So the test will return at this point, if run on wine. 
454      */
455     lResult = RegOpenKeyExW(HKEY_CLASSES_ROOT, wszMyDocumentsKey, 0, KEY_WRITE|KEY_READ, &hKey);
456     todo_wine { ok (lResult == ERROR_SUCCESS, "RegOpenKeyEx failed! result: %08lx\n", lResult); }
457     if (lResult != ERROR_SUCCESS) {
458         IMalloc_Free(ppM, pidlMyDocuments);
459         IShellFolder_Release(psfDesktop);
460         return;
461     }
462     
463     /* Query MyDocuments' Attributes value, to be able to restore it later. */
464     dwSize = sizeof(DWORD);
465     lResult = RegQueryValueExW(hKey, wszAttributes, NULL, NULL, (LPBYTE)&dwOrigAttributes, &dwSize);
466     ok (lResult == ERROR_SUCCESS, "RegQueryValueEx failed! result: %08lx\n", lResult);
467     if (lResult != ERROR_SUCCESS) {
468         RegCloseKey(hKey);
469         IMalloc_Free(ppM, pidlMyDocuments);
470         IShellFolder_Release(psfDesktop);
471         return;
472     }
473
474     /* Query MyDocuments' CallForAttributes value, to be able to restore it later. */
475     dwSize = sizeof(DWORD);
476     lResult = RegQueryValueExW(hKey, wszCallForAttributes, NULL, NULL, 
477                               (LPBYTE)&dwOrigCallForAttributes, &dwSize);
478     ok (lResult == ERROR_SUCCESS, "RegQueryValueEx failed! result: %08lx\n", lResult);
479     if (lResult != ERROR_SUCCESS) {
480         RegCloseKey(hKey);
481         IMalloc_Free(ppM, pidlMyDocuments);
482         IShellFolder_Release(psfDesktop);
483         return;
484     }
485     
486     /* Define via the Attributes value that MyDocuments attributes are SFGAO_ISSLOW and 
487      * SFGAO_GHOSTED and that MyDocuments should be called for the SFGAO_ISSLOW and
488      * SFGAO_FILESYSTEM attributes. */
489     dwAttributes = SFGAO_ISSLOW|SFGAO_GHOSTED;
490     RegSetValueExW(hKey, wszAttributes, 0, REG_DWORD, (LPBYTE)&dwAttributes, sizeof(DWORD));
491     dwCallForAttributes = SFGAO_ISSLOW|SFGAO_FILESYSTEM;
492     RegSetValueExW(hKey, wszCallForAttributes, 0, REG_DWORD, 
493                    (LPBYTE)&dwCallForAttributes, sizeof(DWORD));
494
495     /* Although it is not set in CallForAttributes, the SFGAO_GHOSTED flag is reset by 
496      * GetAttributesOf. It seems that once there is a single attribute queried, for which
497      * CallForAttributes is set, all flags are taken from the GetAttributesOf call and
498      * the flags in Attributes are ignored. 
499      */
500     dwAttributes = SFGAO_ISSLOW|SFGAO_GHOSTED|SFGAO_FILESYSTEM;
501     hr = IShellFolder_GetAttributesOf(psfDesktop, 1, 
502                                       (LPCITEMIDLIST*)&pidlMyDocuments, &dwAttributes);
503     ok (SUCCEEDED(hr), "Desktop->GetAttributesOf(MyDocuments) failed! hr = %08lx\n", hr);
504     if (SUCCEEDED(hr)) 
505         ok (dwAttributes == SFGAO_FILESYSTEM, 
506             "Desktop->GetAttributes(MyDocuments) returned unexpected attributes: %08lx\n", 
507             dwAttributes);
508
509     /* Restore MyDocuments' original Attributes and CallForAttributes registry values */
510     RegSetValueExW(hKey, wszAttributes, 0, REG_DWORD, (LPBYTE)&dwOrigAttributes, sizeof(DWORD));
511     RegSetValueExW(hKey, wszCallForAttributes, 0, REG_DWORD, 
512                    (LPBYTE)&dwOrigCallForAttributes, sizeof(DWORD));
513     RegCloseKey(hKey);
514     IMalloc_Free(ppM, pidlMyDocuments);
515     IShellFolder_Release(psfDesktop);
516 }
517
518 static void test_GetAttributesOf(void) 
519 {
520     HRESULT hr;
521     LPSHELLFOLDER psfDesktop, psfMyComputer;
522     SHITEMID emptyitem = { 0, { 0 } };
523     LPCITEMIDLIST pidlEmpty = (LPCITEMIDLIST)&emptyitem;
524     LPITEMIDLIST pidlMyComputer;
525     DWORD dwFlags;
526     const static DWORD dwDesktopFlags = /* As observed on WinXP SP2 */
527         SFGAO_STORAGE | SFGAO_HASPROPSHEET | SFGAO_STORAGEANCESTOR |
528         SFGAO_FILESYSANCESTOR | SFGAO_FOLDER | SFGAO_FILESYSTEM | SFGAO_HASSUBFOLDER;
529     const static DWORD dwMyComputerFlags = /* As observed on WinXP SP2 */
530         SFGAO_CANRENAME | SFGAO_CANDELETE | SFGAO_HASPROPSHEET |
531         SFGAO_DROPTARGET | SFGAO_FILESYSANCESTOR | SFGAO_FOLDER | SFGAO_HASSUBFOLDER;
532     WCHAR wszMyComputer[] = { 
533         ':',':','{','2','0','D','0','4','F','E','0','-','3','A','E','A','-','1','0','6','9','-',
534         'A','2','D','8','-','0','8','0','0','2','B','3','0','3','0','9','D','}',0 };
535
536     hr = SHGetDesktopFolder(&psfDesktop);
537     ok (SUCCEEDED(hr), "SHGetDesktopFolder failed! hr = %08lx\n", hr);
538     if (FAILED(hr)) return;
539
540     /* The Desktop attributes can be queried with a single empty itemidlist, .. */
541     dwFlags = 0xffffffff;
542     hr = IShellFolder_GetAttributesOf(psfDesktop, 1, &pidlEmpty, &dwFlags);
543     ok (SUCCEEDED(hr), "Desktop->GetAttributesOf(empty pidl) failed! hr = %08lx\n", hr);
544     ok (dwFlags == dwDesktopFlags, "Wrong Desktop attributes: %08lx, expected: %08lx\n", 
545         dwFlags, dwDesktopFlags);
546
547     /* .. or with no itemidlist at all. */
548     dwFlags = 0xffffffff;
549     hr = IShellFolder_GetAttributesOf(psfDesktop, 0, NULL, &dwFlags);
550     ok (SUCCEEDED(hr), "Desktop->GetAttributesOf(NULL) failed! hr = %08lx\n", hr);
551     ok (dwFlags == dwDesktopFlags, "Wrong Desktop attributes: %08lx, expected: %08lx\n", 
552         dwFlags, dwDesktopFlags);
553    
554     /* Testing the attributes of the MyComputer shellfolder */
555     hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, wszMyComputer, NULL, &pidlMyComputer, NULL);
556     ok (SUCCEEDED(hr), "Desktop's ParseDisplayName failed to parse MyComputer's CLSID! hr = %08lx\n", hr);
557     if (FAILED(hr)) {
558         IShellFolder_Release(psfDesktop);
559         return;
560     }
561
562     /* WinXP SP2 sets the SFGAO_CANLINK flag, when MyComputer is queried via the Desktop 
563      * folder object. It doesn't do this, if MyComputer is queried directly (see below).
564      * SFGAO_CANLINK is the same as DROPEFFECT_LINK, which MSDN says means: "Drag source
565      * should create a link to the original data". You can't create links on MyComputer on
566      * Windows, so this flag shouldn't be set. Seems like a bug in Windows. As long as nobody
567      * depends on this bug, we probably shouldn't imitate it.
568      */
569     dwFlags = 0xffffffff;
570     hr = IShellFolder_GetAttributesOf(psfDesktop, 1, (LPCITEMIDLIST*)&pidlMyComputer, &dwFlags);
571     ok (SUCCEEDED(hr), "Desktop->GetAttributesOf(MyComputer) failed! hr = %08lx\n", hr);
572     todo_wine { ok ((dwFlags & ~(DWORD)SFGAO_CANLINK) == dwMyComputerFlags, 
573                     "Wrong MyComputer attributes: %08lx, expected: %08lx\n", dwFlags, dwMyComputerFlags); }
574
575     hr = IShellFolder_BindToObject(psfDesktop, pidlMyComputer, NULL, &IID_IShellFolder, (LPVOID*)&psfMyComputer);
576     ok (SUCCEEDED(hr), "Desktop failed to bind to MyComputer object! hr = %08lx\n", hr);
577     IShellFolder_Release(psfDesktop);
578     IMalloc_Free(ppM, pidlMyComputer);
579     if (FAILED(hr)) return;
580
581     hr = IShellFolder_GetAttributesOf(psfMyComputer, 1, &pidlEmpty, &dwFlags);
582     todo_wine {ok (hr == E_INVALIDARG, "MyComputer->GetAttributesOf(emtpy pidl) should fail! hr = %08lx\n", hr); }
583
584     dwFlags = 0xffffffff;
585     hr = IShellFolder_GetAttributesOf(psfMyComputer, 0, NULL, &dwFlags);
586     ok (SUCCEEDED(hr), "MyComputer->GetAttributesOf(NULL) failed! hr = %08lx\n", hr); 
587     todo_wine { ok (dwFlags == dwMyComputerFlags, 
588                     "Wrong MyComputer attributes: %08lx, expected: %08lx\n", dwFlags, dwMyComputerFlags); }
589
590     IShellFolder_Release(psfMyComputer);
591 }    
592
593 static void test_SHGetPathFromIDList(void)
594 {
595     SHITEMID emptyitem = { 0, { 0 } };
596     LPCITEMIDLIST pidlEmpty = (LPCITEMIDLIST)&emptyitem;
597     LPITEMIDLIST pidlMyComputer;
598     WCHAR wszPath[MAX_PATH], wszDesktop[MAX_PATH];
599     BOOL result;
600     HRESULT hr;
601     LPSHELLFOLDER psfDesktop;
602     WCHAR wszMyComputer[] = { 
603         ':',':','{','2','0','D','0','4','F','E','0','-','3','A','E','A','-','1','0','6','9','-',
604         'A','2','D','8','-','0','8','0','0','2','B','3','0','3','0','9','D','}',0 };
605     WCHAR wszFileName[MAX_PATH];
606     LPITEMIDLIST pidlTestFile;
607     HANDLE hTestFile;
608     STRRET strret;
609     static WCHAR wszTestFile[] = {
610         'w','i','n','e','t','e','s','t','.','f','o','o',0 };
611
612     if(!pSHGetSpecialFolderPathW) return;
613
614     /* Calling SHGetPathFromIDList with an empty pidl should return the desktop folder's path. */
615     result = pSHGetSpecialFolderPathW(NULL, wszDesktop, CSIDL_DESKTOP, FALSE);
616     ok(result, "SHGetSpecialFolderPathW(CSIDL_DESKTOP) failed! Last error: %08lx\n", GetLastError());
617     if (!result) return;
618     
619     result = SHGetPathFromIDListW(pidlEmpty, wszPath);
620     ok(result, "SHGetPathFromIDListW failed! Last error: %08lx\n", GetLastError());
621     if (!result) return;
622     ok(!lstrcmpiW(wszDesktop, wszPath), "SHGetPathFromIDList didn't return desktop path for empty pidl!\n");
623
624     /* MyComputer does not map to a filesystem path. SHGetPathFromIDList should fail. */
625     hr = SHGetDesktopFolder(&psfDesktop);
626     ok (SUCCEEDED(hr), "SHGetDesktopFolder failed! hr = %08lx\n", hr);
627     if (FAILED(hr)) return;
628
629     hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, wszMyComputer, NULL, &pidlMyComputer, NULL);
630     ok (SUCCEEDED(hr), "Desktop's ParseDisplayName failed to parse MyComputer's CLSID! hr = %08lx\n", hr);
631     if (FAILED(hr)) {
632         IShellFolder_Release(psfDesktop);
633         return;
634     }
635
636     SetLastError(0xdeadbeef);
637     result = SHGetPathFromIDListW(pidlMyComputer, wszPath);
638     ok (!result, "SHGetPathFromIDList succeeded where it shouldn't!\n");
639     ok (GetLastError()==0xdeadbeef, "SHGetPathFromIDList shouldn't set last error! Last error: %08lx\n", GetLastError());
640     if (result) {
641         IShellFolder_Release(psfDesktop);
642         return;
643     }
644
645     IMalloc_Free(ppM, pidlMyComputer);
646
647     result = pSHGetSpecialFolderPathW(NULL, wszFileName, CSIDL_DESKTOPDIRECTORY, FALSE);
648     ok(result, "SHGetSpecialFolderPathW failed! Last error: %08lx\n", GetLastError());
649     if (!result) {
650         IShellFolder_Release(psfDesktop);
651         return;
652     }
653     PathAddBackslashW(wszFileName);
654     lstrcatW(wszFileName, wszTestFile);
655     hTestFile = CreateFileW(wszFileName, GENERIC_WRITE, 0, NULL, CREATE_NEW, 0, NULL);
656     ok(hTestFile != INVALID_HANDLE_VALUE, "CreateFileW failed! Last error: %08lx\n", GetLastError());
657     if (hTestFile == INVALID_HANDLE_VALUE) {
658         IShellFolder_Release(psfDesktop);
659         return;
660     }
661     CloseHandle(hTestFile);
662
663     hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, wszTestFile, NULL, &pidlTestFile, NULL);
664     ok (SUCCEEDED(hr), "Desktop's ParseDisplayName failed to parse filename hr = %08lx\n", hr);
665     if (FAILED(hr)) {
666         IShellFolder_Release(psfDesktop);
667         DeleteFileW(wszFileName);
668         IMalloc_Free(ppM, pidlTestFile);
669         return;
670     }
671
672     /* This test is to show that the Desktop shellfolder prepends the CSIDL_DESKTOPDIRECTORY
673      * path for files placed on the desktop, if called with SHGDN_FORPARSING. */
674     hr = IShellFolder_GetDisplayNameOf(psfDesktop, pidlTestFile, SHGDN_FORPARSING, &strret);
675     ok (SUCCEEDED(hr), "Desktop's GetDisplayNamfOf failed! hr = %08lx\n", hr);
676     IShellFolder_Release(psfDesktop);
677     DeleteFileW(wszFileName);
678     if (FAILED(hr)) {
679         IMalloc_Free(ppM, pidlTestFile);
680         return;
681     }
682     if (pStrRetToBufW)
683     {
684         pStrRetToBufW(&strret, pidlTestFile, wszPath, MAX_PATH);
685         ok(0 == lstrcmpW(wszFileName, wszPath), 
686            "Desktop->GetDisplayNameOf(pidlTestFile, SHGDN_FORPARSING) "
687            "returned incorrect path for file placed on desktop\n");
688     }
689
690     result = SHGetPathFromIDListW(pidlTestFile, wszPath);
691     ok(result, "SHGetPathFromIDListW failed! Last error: %08lx\n", GetLastError());
692     IMalloc_Free(ppM, pidlTestFile);
693     if (!result) return;
694     ok(0 == lstrcmpW(wszFileName, wszPath), "SHGetPathFromIDListW returned incorrect path for file placed on desktop\n");
695 }
696
697 static void test_EnumObjects_and_CompareIDs(void)
698 {
699     ITEMIDLIST *newPIDL;
700     IShellFolder *IDesktopFolder, *testIShellFolder;
701     char  cCurrDirA [MAX_PATH] = {0};
702     WCHAR cCurrDirW [MAX_PATH];
703     static const WCHAR cTestDirW[] = {'\\','t','e','s','t','d','i','r',0};
704     int len;
705     HRESULT hr;
706
707     GetCurrentDirectoryA(MAX_PATH, cCurrDirA);
708     len = lstrlenA(cCurrDirA);
709
710     if(len == 0) {
711         trace("GetCurrentDirectoryA returned empty string. Skipping test_EnumObjects_and_CompareIDs\n");
712         return;
713     }
714     if(cCurrDirA[len-1] == '\\')
715         cCurrDirA[len-1] = 0;
716
717     MultiByteToWideChar(CP_ACP, 0, cCurrDirA, -1, cCurrDirW, MAX_PATH);
718     strcatW(cCurrDirW, cTestDirW);
719
720     hr = SHGetDesktopFolder(&IDesktopFolder);
721     ok(hr == S_OK, "SHGetDesktopfolder failed %08lx\n", hr);
722
723     CreateFilesFolders();
724
725     hr = IShellFolder_ParseDisplayName(IDesktopFolder, NULL, NULL, cCurrDirW, NULL, &newPIDL, 0);
726     ok(hr == S_OK, "ParseDisplayName failed %08lx\n", hr);
727
728     hr = IShellFolder_BindToObject(IDesktopFolder, newPIDL, NULL, (REFIID)&IID_IShellFolder, (LPVOID *)&testIShellFolder);
729     ok(hr == S_OK, "BindToObject failed %08lx\n", hr);
730
731     test_EnumObjects(testIShellFolder);
732
733     hr = IShellFolder_Release(testIShellFolder);
734     ok(hr == S_OK, "IShellFolder_Release failed %08lx\n", hr);
735
736     Cleanup();
737
738     IMalloc_Free(ppM, newPIDL);
739 }
740
741 /* A simple implementation of an IPropertyBag, which returns fixed values for
742  * 'Target' and 'Attributes' properties.
743  */
744 static HRESULT WINAPI InitPropertyBag_IPropertyBag_QueryInterface(IPropertyBag *iface, REFIID riid,
745     void **ppvObject) 
746 {
747     if (!ppvObject)
748         return E_INVALIDARG;
749
750     if (IsEqualIID(&IID_IUnknown, riid) || IsEqualIID(&IID_IPropertyBag, riid)) {
751         *ppvObject = iface;
752     } else {
753         ok (FALSE, "InitPropertyBag asked for unknown interface!\n");
754         return E_NOINTERFACE;
755     }
756
757     IPropertyBag_AddRef(iface);
758     return S_OK;
759 }
760
761 static ULONG WINAPI InitPropertyBag_IPropertyBag_AddRef(IPropertyBag *iface) {
762     return 2;
763 }
764
765 static ULONG WINAPI InitPropertyBag_IPropertyBag_Release(IPropertyBag *iface) {
766     return 1;
767 }
768
769 static HRESULT WINAPI InitPropertyBag_IPropertyBag_Read(IPropertyBag *iface, LPCOLESTR pszPropName,
770     VARIANT *pVar, IErrorLog *pErrorLog)
771 {
772     static const WCHAR wszTargetSpecialFolder[] = {
773         'T','a','r','g','e','t','S','p','e','c','i','a','l','F','o','l','d','e','r',0 };
774     static const WCHAR wszTarget[] = {
775         'T','a','r','g','e','t',0 };
776     static const WCHAR wszAttributes[] = {
777         'A','t','t','r','i','b','u','t','e','s',0 };
778     static const WCHAR wszResolveLinkFlags[] = {
779         'R','e','s','o','l','v','e','L','i','n','k','F','l','a','g','s',0 };
780         
781     if (!lstrcmpW(pszPropName, wszTargetSpecialFolder) || 
782         !lstrcmpW(pszPropName, wszResolveLinkFlags)) 
783     {
784         return E_INVALIDARG;
785     }
786
787     if (!lstrcmpW(pszPropName, wszTarget)) {
788         WCHAR wszPath[MAX_PATH];
789         BOOL result;
790         
791         ok(V_VT(pVar) == VT_BSTR, "Wrong variant type for 'Target' property!\n");
792         if (V_VT(pVar) != VT_BSTR) return E_INVALIDARG;
793
794         result = pSHGetSpecialFolderPathW(NULL, wszPath, CSIDL_DESKTOPDIRECTORY, FALSE);
795         ok(result, "SHGetSpecialFolderPathW(DESKTOPDIRECTORY) failed! x%08lx\n", GetLastError());
796         if (!result) return E_INVALIDARG;
797
798         V_BSTR(pVar) = SysAllocString(wszPath);
799         return S_OK;
800     }
801
802     if (!lstrcmpW(pszPropName, wszAttributes)) {
803         ok(V_VT(pVar) == VT_UI4, "Wrong variant type for 'Attributes' property!\n");
804         if (V_VT(pVar) != VT_UI4) return E_INVALIDARG;
805         V_UI4(pVar) = SFGAO_FOLDER|SFGAO_HASSUBFOLDER|SFGAO_FILESYSANCESTOR|
806                       SFGAO_CANRENAME|SFGAO_FILESYSTEM;
807         return S_OK;
808     }
809
810     ok(FALSE, "PropertyBag was asked for unknown property (vt=%d)!\n", V_VT(pVar));
811     return E_INVALIDARG;
812 }
813
814 static HRESULT WINAPI InitPropertyBag_IPropertyBag_Write(IPropertyBag *iface, LPCOLESTR pszPropName,
815     VARIANT *pVar)
816 {
817     ok(FALSE, "Unexpected call to IPropertyBag_Write\n");
818     return E_NOTIMPL;
819 }
820     
821 static const IPropertyBagVtbl InitPropertyBag_IPropertyBagVtbl = {
822     InitPropertyBag_IPropertyBag_QueryInterface,
823     InitPropertyBag_IPropertyBag_AddRef,
824     InitPropertyBag_IPropertyBag_Release,
825     InitPropertyBag_IPropertyBag_Read,
826     InitPropertyBag_IPropertyBag_Write
827 };
828
829 struct IPropertyBag InitPropertyBag = {
830     &InitPropertyBag_IPropertyBagVtbl
831 };
832
833 void test_FolderShortcut(void) {
834     IPersistPropertyBag *pPersistPropertyBag;
835     IShellFolder *pShellFolder;
836     IPersistFolder3 *pPersistFolder3;
837     HRESULT hr;
838     STRRET strret;
839     WCHAR wszPath[MAX_PATH], wszBuffer[MAX_PATH];
840     BOOL result;
841     CLSID clsid;
842     LPITEMIDLIST pidlCurrentFolder;
843        
844     if (!pSHGetSpecialFolderPathW || !pStrRetToBufW) return;
845    
846     /* These tests basically show, that CLSID_FolderShortcuts are initialized
847      * via their IPersistPropertyBag interface. And that the target folder
848      * is taken from the IPropertyBag's 'Target' property.
849      */
850     hr = CoCreateInstance(&CLSID_FolderShortcut, NULL, CLSCTX_INPROC_SERVER, 
851                           &IID_IPersistPropertyBag, (LPVOID*)&pPersistPropertyBag);
852     ok (SUCCEEDED(hr), "CoCreateInstance failed! hr = 0x%08lx\n", hr);
853     if (FAILED(hr)) return;
854
855     hr = IPersistPropertyBag_Load(pPersistPropertyBag, &InitPropertyBag, NULL);
856     todo_wine { ok(SUCCEEDED(hr), "IPersistPropertyBag_Load failed! hr = %08lx\n", hr); }
857     if (FAILED(hr)) {
858         IPersistPropertyBag_Release(pPersistPropertyBag);
859         return;
860     }
861     
862     hr = IPersistPropertyBag_QueryInterface(pPersistPropertyBag, &IID_IShellFolder, 
863                                             (LPVOID*)&pShellFolder);
864     IPersistPropertyBag_Release(pPersistPropertyBag);
865     ok(SUCCEEDED(hr), "IPersistPropertyBag_QueryInterface(IShellFolder) failed! hr = %08lx\n", hr);
866     if (FAILED(hr)) return;
867
868     hr = IShellFolder_GetDisplayNameOf(pShellFolder, NULL, SHGDN_FORPARSING, &strret);
869     ok(SUCCEEDED(hr), "IShellFolder_GetDisplayNameOf(NULL) failed! hr = %08lx\n", hr);
870     if (FAILED(hr)) {
871         IShellFolder_Release(pShellFolder);
872         return;
873     }
874
875     result = pSHGetSpecialFolderPathW(NULL, wszPath, CSIDL_DESKTOPDIRECTORY, FALSE);
876     ok(result, "SHGetSpecialFolderPathW(CSIDL_MYDOCUMENTS) failed! 0x%08lx\n", GetLastError());
877     if (!result) return;
878
879     pStrRetToBufW(&strret, NULL, wszBuffer, MAX_PATH);
880     ok(!lstrcmpiW(wszPath, wszBuffer), "FolderShortcut returned incorrect folder!\n");
881
882     hr = IShellFolder_QueryInterface(pShellFolder, &IID_IPersistFolder3, (LPVOID*)&pPersistFolder3);
883     IShellFolder_Release(pShellFolder);
884     ok(SUCCEEDED(hr), "IShellFolder_QueryInterface(IID_IPersistFolder3 failed! hr = 0x%08lx\n", hr);
885     if (FAILED(hr)) return;
886
887     hr = IPersistFolder3_GetClassID(pPersistFolder3, &clsid);
888     ok(SUCCEEDED(hr), "IPersistFolder3_GetClassID failed! hr=0x%08lx\n", hr);
889     ok(IsEqualCLSID(&clsid, &CLSID_FolderShortcut), "Unexpected CLSID!\n");
890
891     hr = IPersistFolder3_GetCurFolder(pPersistFolder3, &pidlCurrentFolder);
892     ok(SUCCEEDED(hr), "IPersistFolder3_GetCurFolder failed! hr=0x%08lx\n", hr);
893     ok(!pidlCurrentFolder, "IPersistFolder3_GetCurFolder should return a NULL pidl!\n");
894                     
895     IPersistFolder3_Release(pPersistFolder3);
896 }
897
898 START_TEST(shlfolder)
899 {
900     init_function_pointers();
901     /* if OleInitialize doesn't get called, ParseDisplayName returns
902        CO_E_NOTINITIALIZED for malformed directory names on win2k. */
903     OleInitialize(NULL);
904
905     test_ParseDisplayName();
906     test_BindToObject();
907     test_EnumObjects_and_CompareIDs();
908     test_GetDisplayName();
909     test_GetAttributesOf();
910     test_SHGetPathFromIDList();
911     test_CallForAttributes();
912     test_FolderShortcut();
913
914     OleUninitialize();
915 }