2 * Tests for special shell folders
4 * Copyright 2008 Robert Shearman for CodeWeavers
5 * Copyright 2008 Owen Rudge
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #define NONAMELESSUNION
27 #define NONAMELESSSTRUCT
29 #define WIN32_LEAN_AND_MEAN
34 #include "wine/test.h"
36 static inline BOOL
SHELL_OsIsUnicode(void)
38 return !(GetVersion() & 0x80000000);
41 /* Tests for My Network Places */
42 static void test_parse_for_entire_network(void)
44 static WCHAR my_network_places_path
[] = {
45 ':',':','{','2','0','8','D','2','C','6','0','-','3','A','E','A','-',
46 '1','0','6','9','-','A','2','D','7','-','0','8','0','0','2','B','3','0','3','0','9','D','}', 0 };
47 static WCHAR entire_network_path
[] = {
48 ':',':','{','2','0','8','D','2','C','6','0','-','3','A','E','A','-',
49 '1','0','6','9','-','A','2','D','7','-','0','8','0','0','2','B','3','0','3','0','9','D',
50 '}','\\','E','n','t','i','r','e','N','e','t','w','o','r','k',0 };
51 IShellFolder
*psfDesktop
;
53 DWORD eaten
= 0xdeadbeef;
58 hr
= SHGetDesktopFolder(&psfDesktop
);
59 ok(hr
== S_OK
, "SHGetDesktopFolder failed with error 0x%x\n", hr
);
61 hr
= IShellFolder_ParseDisplayName(psfDesktop
, NULL
, NULL
, my_network_places_path
, &eaten
, &pidl
, &attr
);
62 ok(hr
== S_OK
, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr
);
64 ok(eaten
== 0xdeadbeef, "eaten should not have been set to %u\n", eaten
);
65 expected_attr
= SFGAO_HASSUBFOLDER
|SFGAO_FOLDER
|SFGAO_FILESYSANCESTOR
|SFGAO_DROPTARGET
|SFGAO_HASPROPSHEET
|SFGAO_CANRENAME
|SFGAO_CANLINK
;
67 ok((attr
== expected_attr
) || /* Win9x, NT4 */
68 (attr
== (expected_attr
| SFGAO_STREAM
)) || /* W2K */
69 (attr
== (expected_attr
| SFGAO_CANDELETE
)) || /* XP, W2K3 */
70 (attr
== (expected_attr
| SFGAO_CANDELETE
| SFGAO_NONENUMERATED
)), /* Vista */
71 "Unexpected attributes : %08x\n", attr
);
75 /* Start clean again */
79 hr
= IShellFolder_ParseDisplayName(psfDesktop
, NULL
, NULL
, entire_network_path
, &eaten
, &pidl
, &attr
);
80 if (hr
== HRESULT_FROM_WIN32(ERROR_BAD_NET_NAME
) ||
81 hr
== HRESULT_FROM_WIN32(ERROR_NO_NET_OR_BAD_PATH
) ||
82 hr
== HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER
))
84 win_skip("'EntireNetwork' is not available on Win9x, NT4 and Vista\n");
87 ok(hr
== S_OK
, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr
);
89 ok(eaten
== 0xdeadbeef, "eaten should not have been set to %u\n", eaten
);
90 expected_attr
= SFGAO_HASSUBFOLDER
|SFGAO_FOLDER
|SFGAO_FILESYSANCESTOR
|SFGAO_HASPROPSHEET
|SFGAO_CANLINK
;
92 ok(attr
== expected_attr
|| /* winme, nt4 */
93 attr
== (expected_attr
| SFGAO_STREAM
) || /* win2k */
94 attr
== (expected_attr
| SFGAO_STORAGEANCESTOR
), /* others */
95 "attr should be 0x%x, not 0x%x\n", expected_attr
, attr
);
100 /* Tests for Control Panel */
101 static void test_parse_for_control_panel(void)
103 /* path of My Computer\Control Panel */
104 static WCHAR control_panel_path
[] = {
105 ':',':','{','2','0','D','0','4','F','E','0','-','3','A','E','A','-','1','0','6','9','-','A','2','D','8','-','0','8','0','0','2','B','3','0','3','0','9','D','}','\\',
106 ':',':','{','2','1','E','C','2','0','2','0','-','3','A','E','A','-','1','0','6','9','-','A','2','D','D','-','0','8','0','0','2','B','3','0','3','0','9','D','}', 0 };
107 IShellFolder
*psfDesktop
;
109 DWORD eaten
= 0xdeadbeef;
113 hr
= SHGetDesktopFolder(&psfDesktop
);
114 ok(hr
== S_OK
, "SHGetDesktopFolder failed with error 0x%x\n", hr
);
116 hr
= IShellFolder_ParseDisplayName(psfDesktop
, NULL
, NULL
, control_panel_path
, &eaten
, &pidl
, &attr
);
117 ok(hr
== S_OK
, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr
);
118 todo_wine
ok(eaten
== 0xdeadbeef, "eaten should not have been set to %u\n", eaten
);
120 ok((attr
== (SFGAO_CANLINK
| SFGAO_FOLDER
)) || /* Win9x, NT4 */
121 (attr
== (SFGAO_CANLINK
| SFGAO_FOLDER
| SFGAO_HASSUBFOLDER
| SFGAO_STREAM
)) || /* W2K */
122 (attr
== (SFGAO_CANLINK
| SFGAO_FOLDER
| SFGAO_HASSUBFOLDER
)) || /* W2K, XP, W2K3 */
123 (attr
== (SFGAO_CANLINK
| SFGAO_NONENUMERATED
)) || /* Vista */
124 (attr
== SFGAO_CANLINK
), /* Vista, W2K8 */
125 "Unexpected attributes : %08x\n", attr
);
130 static void test_printers_folder(void)
132 IShellFolder2
*folder
;
134 SHELLDETAILS details
;
136 LPITEMIDLIST pidl1
, pidl2
;
140 CoInitialize( NULL
);
142 hr
= CoCreateInstance(&CLSID_Printers
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IShellFolder2
, (void**)&folder
);
145 win_skip("Failed to created IShellFolder2 for Printers folder\n");
153 hr
= IShellFolder2_GetDetailsOf(folder
, NULL
, 0, NULL
);
154 hr
= IShellFolder2_GetDefaultColumnState(folder
, 0, NULL
);
155 hr
= IPersistFolder2_GetCurFolder(pf
, NULL
);
158 /* 5 columns defined */
159 hr
= IShellFolder2_GetDetailsOf(folder
, NULL
, 6, &details
);
160 ok(hr
== E_NOTIMPL
, "got 0x%08x\n", hr
);
162 hr
= IShellFolder2_GetDefaultColumnState(folder
, 6, &state
);
163 ok(broken(hr
== E_NOTIMPL
) || hr
== E_INVALIDARG
/* Win7 */, "got 0x%08x\n", hr
);
165 hr
= IShellFolder2_GetDetailsOf(folder
, NULL
, 0, &details
);
166 ok(hr
== S_OK
|| broken(E_NOTIMPL
) /* W2K */, "got 0x%08x\n", hr
);
167 /* test every column if method is implemented */
170 ok(details
.str
.uType
== STRRET_WSTR
, "got %d\n", details
.str
.uType
);
172 for(i
= 0; i
< 6; i
++)
174 hr
= IShellFolder2_GetDetailsOf(folder
, NULL
, i
, &details
);
175 ok(hr
== S_OK
, "got 0x%08x\n", hr
);
177 /* all columns are left-aligned */
178 ok(details
.fmt
== LVCFMT_LEFT
, "got 0x%x\n", details
.fmt
);
179 /* can't be on w9x at this point, IShellFolder2 unsupported there,
180 check present for running Wine with w9x setup */
181 if (SHELL_OsIsUnicode()) SHFree(details
.str
.u
.pOleStr
);
183 hr
= IShellFolder2_GetDefaultColumnState(folder
, i
, &state
);
184 ok(hr
== S_OK
, "got 0x%08x\n", hr
);
185 /* all columns are string except document count */
187 ok(state
== (SHCOLSTATE_TYPE_INT
| SHCOLSTATE_ONBYDEFAULT
), "got 0x%x\n", state
);
189 ok(state
== (SHCOLSTATE_TYPE_STR
| SHCOLSTATE_ONBYDEFAULT
), "got 0x%x\n", state
);
194 hr
= IShellFolder2_QueryInterface(folder
, &IID_IPersistFolder2
, (void**)&pf
);
195 ok(hr
== S_OK
, "got 0x%08x\n", hr
);
197 /* not initialized */
198 pidl1
= (void*)0xdeadbeef;
199 hr
= IPersistFolder2_GetCurFolder(pf
, &pidl1
);
200 ok(hr
== S_FALSE
, "got 0x%08x\n", hr
);
201 ok(pidl1
== NULL
, "got %p\n", pidl1
);
203 hr
= SHGetSpecialFolderLocation(NULL
, CSIDL_PRINTERS
, &pidl2
);
204 ok(hr
== S_OK
, "got 0x%08x\n", hr
);
206 hr
= IPersistFolder2_Initialize(pf
, pidl2
);
207 ok(hr
== S_OK
, "got 0x%08x\n", hr
);
209 hr
= IPersistFolder2_GetCurFolder(pf
, &pidl1
);
210 ok(hr
== S_OK
, "got 0x%08x\n", hr
);
212 ok(ILIsEqual(pidl1
, pidl2
), "expected same PIDL\n");
213 IPersistFolder2_Release(pf
);
217 IShellFolder2_Release(folder
);
222 START_TEST(shfldr_special
)
224 test_parse_for_entire_network();
225 test_parse_for_control_panel();
226 test_printers_folder();