fusion: Add the CorTokenType and use those constants in the assembly code.
[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 WIN32_LEAN_AND_MEAN
27 #include <windows.h>
28 #include "shellapi.h"
29 #include "shlobj.h"
30
31 #include "wine/test.h"
32
33 /* Tests for My Network Places */
34 static void test_parse_for_entire_network(void)
35 {
36     static const WCHAR entire_network_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',
39                 '}','\\','E','n','t','i','r','e','N','e','t','w','o','r','k',0 };
40     IShellFolder *psfDesktop;
41     HRESULT hr;
42     DWORD eaten = 0xdeadbeef;
43     LPITEMIDLIST pidl;
44     DWORD attr = ~0;
45     DWORD expected_attr;
46     DWORD alter_attr;
47
48     hr = SHGetDesktopFolder(&psfDesktop);
49     ok(hr == S_OK, "SHGetDesktopFolder failed with error 0x%x\n", hr);
50
51     hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, (LPWSTR)entire_network_path, &eaten, &pidl, &attr);
52     ok(hr == S_OK, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr);
53     todo_wine
54     ok(eaten == 0xdeadbeef, "eaten should not have been set to %u\n", eaten);
55     expected_attr = SFGAO_HASSUBFOLDER|SFGAO_FOLDER|SFGAO_FILESYSANCESTOR|SFGAO_STORAGEANCESTOR|SFGAO_HASPROPSHEET|SFGAO_CANLINK;
56     alter_attr = (expected_attr & (~SFGAO_STORAGEANCESTOR)) | SFGAO_STREAM;
57     todo_wine
58     ok(attr == expected_attr ||
59        attr == alter_attr, /* win2k */
60        "attr should be 0x%x or 0x%x, not 0x%x\n", expected_attr, alter_attr, attr);
61
62     ILFree(pidl);
63 }
64
65 /* Tests for Control Panel */
66 static void test_parse_for_control_panel(void)
67 {
68     /* path of My Computer\Control Panel */
69     static const WCHAR control_panel_path[] = {
70         ':',':','{','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','}','\\',
71         ':',':','{','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 };
72     IShellFolder *psfDesktop;
73     HRESULT hr;
74     DWORD eaten = 0xdeadbeef;
75     LPITEMIDLIST pidl;
76     DWORD attr = ~0;
77     DWORD expected_attr;
78
79     hr = SHGetDesktopFolder(&psfDesktop);
80     ok(hr == S_OK, "SHGetDesktopFolder failed with error 0x%x\n", hr);
81
82     hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, (LPWSTR)control_panel_path, &eaten, &pidl, &attr);
83     ok(hr == S_OK, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr);
84     todo_wine ok(eaten == 0xdeadbeef, "eaten should not have been set to %u\n", eaten);
85
86     expected_attr = SFGAO_CANLINK | SFGAO_FOLDER | SFGAO_HASSUBFOLDER;
87     todo_wine ok(attr == expected_attr, "attr should be 0x%x, not 0x%x\n", expected_attr, attr);
88
89     ILFree(pidl);
90 }
91
92
93 START_TEST(shfldr_special)
94 {
95     test_parse_for_entire_network();
96     test_parse_for_control_panel();
97 }