oleaut32: Add a test for loading/saving an empty picture.
[wine] / dlls / shell32 / tests / shfldr_special.c
1 /*
2  * Tests for special shell folders
3  *
4  * Copyright 2008 Robert Shearman for CodeWeavers
5  * Copyright 2008 Owen Rudge
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include <stdarg.h>
23 #include <stdio.h>
24
25 #define COBJMACROS
26 #define NONAMELESSUNION
27 #define NONAMELESSSTRUCT
28
29 #define WIN32_LEAN_AND_MEAN
30 #include <windows.h>
31 #include "shellapi.h"
32 #include "shlobj.h"
33
34 #include "wine/test.h"
35
36 static inline BOOL SHELL_OsIsUnicode(void)
37 {
38     return !(GetVersion() & 0x80000000);
39 }
40
41 /* Tests for My Network Places */
42 static void test_parse_for_entire_network(void)
43 {
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;
52     HRESULT hr;
53     DWORD eaten = 0xdeadbeef;
54     LPITEMIDLIST pidl;
55     DWORD attr = ~0;
56     DWORD expected_attr;
57
58     hr = SHGetDesktopFolder(&psfDesktop);
59     ok(hr == S_OK, "SHGetDesktopFolder failed with error 0x%x\n", hr);
60
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);
63     todo_wine
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;
66     todo_wine
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);
72
73     ILFree(pidl);
74
75     /* Start clean again */
76     eaten = 0xdeadbeef;
77     attr = ~0;
78
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))
83     {
84         win_skip("'EntireNetwork' is not available on Win9x, NT4 and Vista\n");
85         return;
86     }
87     ok(hr == S_OK, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr);
88     todo_wine
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;
91     todo_wine
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);
96
97     ILFree(pidl);
98 }
99
100 /* Tests for Control Panel */
101 static void test_parse_for_control_panel(void)
102 {
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;
108     HRESULT hr;
109     DWORD eaten = 0xdeadbeef;
110     LPITEMIDLIST pidl;
111     DWORD attr = ~0;
112
113     hr = SHGetDesktopFolder(&psfDesktop);
114     ok(hr == S_OK, "SHGetDesktopFolder failed with error 0x%x\n", hr);
115
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);
119     todo_wine
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);
126
127     ILFree(pidl);
128 }
129
130 static void test_printers_folder(void)
131 {
132     IShellFolder2 *folder;
133     IPersistFolder2 *pf;
134     SHELLDETAILS details;
135     SHCOLSTATEF state;
136     LPITEMIDLIST pidl1, pidl2;
137     HRESULT hr;
138     INT i;
139
140     CoInitialize( NULL );
141
142     hr = CoCreateInstance(&CLSID_Printers, NULL, CLSCTX_INPROC_SERVER, &IID_IShellFolder2, (void**)&folder);
143     if (hr != S_OK)
144     {
145         win_skip("Failed to created IShellFolder2 for Printers folder\n");
146         CoUninitialize();
147         return;
148     }
149
150 if (0)
151 {
152     /* crashes on XP */
153     IShellFolder2_GetDetailsOf(folder, NULL, 0, NULL);
154     IShellFolder2_GetDefaultColumnState(folder, 0, NULL);
155     IPersistFolder2_GetCurFolder(pf, NULL);
156 }
157
158     /* 5 columns defined */
159     hr = IShellFolder2_GetDetailsOf(folder, NULL, 6, &details);
160     ok(hr == E_NOTIMPL, "got 0x%08x\n", hr);
161
162     hr = IShellFolder2_GetDefaultColumnState(folder, 6, &state);
163     ok(broken(hr == E_NOTIMPL) || hr == E_INVALIDARG /* Win7 */, "got 0x%08x\n", hr);
164
165     details.str.u.pOleStr = NULL;
166     hr = IShellFolder2_GetDetailsOf(folder, NULL, 0, &details);
167     ok(hr == S_OK || broken(E_NOTIMPL) /* W2K */, "got 0x%08x\n", hr);
168     if (SHELL_OsIsUnicode()) SHFree(details.str.u.pOleStr);
169
170     /* test every column if method is implemented */
171     if (hr == S_OK)
172     {
173         ok(details.str.uType == STRRET_WSTR, "got %d\n", details.str.uType);
174
175         for(i = 0; i < 6; i++)
176         {
177             hr = IShellFolder2_GetDetailsOf(folder, NULL, i, &details);
178             ok(hr == S_OK, "got 0x%08x\n", hr);
179
180             /* all columns are left-aligned */
181             ok(details.fmt == LVCFMT_LEFT, "got 0x%x\n", details.fmt);
182             /* can't be on w9x at this point, IShellFolder2 unsupported there,
183                check present for running Wine with w9x setup */
184             if (SHELL_OsIsUnicode()) SHFree(details.str.u.pOleStr);
185
186             hr = IShellFolder2_GetDefaultColumnState(folder, i, &state);
187             ok(hr == S_OK, "got 0x%08x\n", hr);
188             /* all columns are string except document count */
189             if (i == 1)
190                 ok(state == (SHCOLSTATE_TYPE_INT | SHCOLSTATE_ONBYDEFAULT), "got 0x%x\n", state);
191             else
192                 ok(state == (SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT), "got 0x%x\n", state);
193         }
194     }
195
196     /* default pidl */
197     hr = IShellFolder2_QueryInterface(folder, &IID_IPersistFolder2, (void**)&pf);
198     ok(hr == S_OK, "got 0x%08x\n", hr);
199
200     /* not initialized */
201     pidl1 = (void*)0xdeadbeef;
202     hr = IPersistFolder2_GetCurFolder(pf, &pidl1);
203     ok(hr == S_FALSE, "got 0x%08x\n", hr);
204     ok(pidl1 == NULL, "got %p\n", pidl1);
205
206     hr = SHGetSpecialFolderLocation(NULL, CSIDL_PRINTERS, &pidl2);
207     ok(hr == S_OK, "got 0x%08x\n", hr);
208
209     hr = IPersistFolder2_Initialize(pf, pidl2);
210     ok(hr == S_OK, "got 0x%08x\n", hr);
211
212     hr = IPersistFolder2_GetCurFolder(pf, &pidl1);
213     ok(hr == S_OK, "got 0x%08x\n", hr);
214
215     ok(ILIsEqual(pidl1, pidl2), "expected same PIDL\n");
216     IPersistFolder2_Release(pf);
217
218     ILFree(pidl1);
219     ILFree(pidl2);
220     IShellFolder2_Release(folder);
221
222     CoUninitialize();
223 }
224
225 START_TEST(shfldr_special)
226 {
227     test_parse_for_entire_network();
228     test_parse_for_control_panel();
229     test_printers_folder();
230 }