push e1d8a1293d44015bb0894687d02c5c53339996f7
[wine/hacks.git] / dlls / shell32 / tests / shfldr_special.c
blob8c14e517d4b894399faedd7b6827137e87900f3c
1 /*
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
22 #include <stdarg.h>
23 #include <stdio.h>
25 #define COBJMACROS
26 #define WIN32_LEAN_AND_MEAN
27 #include <windows.h>
28 #include "shellapi.h"
29 #include "shlobj.h"
31 #include "wine/test.h"
33 /* Tests for My Network Places */
34 static void test_parse_for_entire_network(void)
36 static WCHAR my_network_places_path[] = {
37 ':',':','{','2','0','8','D','2','C','6','0','-','3','A','E','A','-',
38 '1','0','6','9','-','A','2','D','7','-','0','8','0','0','2','B','3','0','3','0','9','D','}', 0 };
39 static WCHAR entire_network_path[] = {
40 ':',':','{','2','0','8','D','2','C','6','0','-','3','A','E','A','-',
41 '1','0','6','9','-','A','2','D','7','-','0','8','0','0','2','B','3','0','3','0','9','D',
42 '}','\\','E','n','t','i','r','e','N','e','t','w','o','r','k',0 };
43 IShellFolder *psfDesktop;
44 HRESULT hr;
45 DWORD eaten = 0xdeadbeef;
46 LPITEMIDLIST pidl;
47 DWORD attr = ~0;
48 DWORD expected_attr;
49 DWORD alter_attr;
51 hr = SHGetDesktopFolder(&psfDesktop);
52 ok(hr == S_OK, "SHGetDesktopFolder failed with error 0x%x\n", hr);
54 hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, my_network_places_path, &eaten, &pidl, &attr);
55 ok(hr == S_OK, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr);
56 todo_wine
57 ok(eaten == 0xdeadbeef, "eaten should not have been set to %u\n", eaten);
58 expected_attr = SFGAO_HASSUBFOLDER|SFGAO_FOLDER|SFGAO_FILESYSANCESTOR|SFGAO_DROPTARGET|SFGAO_HASPROPSHEET|SFGAO_CANRENAME|SFGAO_CANLINK;
59 todo_wine
60 ok((attr == expected_attr) || /* Win9x, NT4 */
61 (attr == (expected_attr | SFGAO_STREAM)) || /* W2K */
62 (attr == (expected_attr | SFGAO_CANDELETE)) || /* XP, W2K3 */
63 (attr == (expected_attr | SFGAO_CANDELETE | SFGAO_NONENUMERATED)), /* Vista */
64 "Unexpected attributes : %08x\n", attr);
66 ILFree(pidl);
68 /* Start clean again */
69 eaten = 0xdeadbeef;
70 attr = ~0;
72 hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, entire_network_path, &eaten, &pidl, &attr);
73 if (hr == HRESULT_FROM_WIN32(ERROR_BAD_NET_NAME) || hr == HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER))
75 win_skip("'EntireNetwork' is not available on Win9x, NT4 and Vista\n");
76 return;
78 ok(hr == S_OK, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr);
79 todo_wine
80 ok(eaten == 0xdeadbeef, "eaten should not have been set to %u\n", eaten);
81 expected_attr = SFGAO_HASSUBFOLDER|SFGAO_FOLDER|SFGAO_FILESYSANCESTOR|SFGAO_STORAGEANCESTOR|SFGAO_HASPROPSHEET|SFGAO_CANLINK;
82 alter_attr = (expected_attr & (~SFGAO_STORAGEANCESTOR)) | SFGAO_STREAM;
83 todo_wine
84 ok(attr == expected_attr ||
85 attr == alter_attr, /* win2k */
86 "attr should be 0x%x or 0x%x, not 0x%x\n", expected_attr, alter_attr, attr);
88 ILFree(pidl);
91 /* Tests for Control Panel */
92 static void test_parse_for_control_panel(void)
94 /* path of My Computer\Control Panel */
95 static WCHAR control_panel_path[] = {
96 ':',':','{','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','}','\\',
97 ':',':','{','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 };
98 IShellFolder *psfDesktop;
99 HRESULT hr;
100 DWORD eaten = 0xdeadbeef;
101 LPITEMIDLIST pidl;
102 DWORD attr = ~0;
104 hr = SHGetDesktopFolder(&psfDesktop);
105 ok(hr == S_OK, "SHGetDesktopFolder failed with error 0x%x\n", hr);
107 hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, control_panel_path, &eaten, &pidl, &attr);
108 ok(hr == S_OK, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr);
109 todo_wine ok(eaten == 0xdeadbeef, "eaten should not have been set to %u\n", eaten);
110 todo_wine
111 ok((attr == (SFGAO_CANLINK | SFGAO_FOLDER)) || /* Win9x, NT4 */
112 (attr == (SFGAO_CANLINK | SFGAO_FOLDER | SFGAO_HASSUBFOLDER | SFGAO_STREAM)) || /* W2K */
113 (attr == (SFGAO_CANLINK | SFGAO_FOLDER | SFGAO_HASSUBFOLDER)) || /* W2K, XP, W2K3 */
114 (attr == (SFGAO_CANLINK | SFGAO_NONENUMERATED)) || /* Vista */
115 (attr == SFGAO_CANLINK), /* Vista, W2K8 */
116 "Unexpected attributes : %08x\n", attr);
118 ILFree(pidl);
122 START_TEST(shfldr_special)
124 test_parse_for_entire_network();
125 test_parse_for_control_panel();