ReactOS 0.4.15-dev-7953-g1f49173
ShellState.cpp
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS API tests
3 * LICENSE: LGPLv2.1+ - See COPYING.LIB in the top level directory
4 * PURPOSE: Test for SHELLSTATE
5 * PROGRAMMERS: Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
6 */
7#include "shelltest.h"
8
9#define NDEBUG
10#include <debug.h>
11#include <stdio.h>
12#include <shellutils.h>
13#include <strsafe.h>
14#include <shlwapi.h>
15#include <shlwapi_undoc.h>
16
17/* [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer] */
18/* The contents of RegValue ShellState. */
19typedef struct REGSHELLSTATE
20{
24
25static void dump(const char *name, const void *ptr, size_t siz)
26{
27 char buf[256], sz[16];
28
29 StringCbCopyA(buf, sizeof(buf), name);
30 StringCbCatA(buf, sizeof(buf), ": ");
31
32 const BYTE *pb = reinterpret_cast<const BYTE *>(ptr);
33 while (siz--)
34 {
35 StringCbPrintfA(sz, sizeof(sz), "%02X ", *pb++);
36 StringCbCatA(buf, sizeof(buf), sz);
37 }
38
39 trace("%s\n", buf);
40}
41
42static int read_key(REGSHELLSTATE *prss)
43{
44 HKEY hKey;
46 DWORD cb;
47 static const LPCWSTR s_pszExplorer =
48 L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer";
49
50 memset(prss, 0, sizeof(*prss));
51
52 result = RegOpenKeyExW(HKEY_CURRENT_USER, s_pszExplorer, 0, KEY_READ, &hKey);
53 ok(result == ERROR_SUCCESS, "result was %ld\n", result);
54 ok(hKey != NULL, "hKey was NULL\n");
55
56 if (result != ERROR_SUCCESS || !hKey)
57 {
58 skip("RegOpenKeyEx failed: %ld\n", result);
59 return 1;
60 }
61
62 cb = sizeof(*prss);
63 result = RegQueryValueExW(hKey, L"ShellState", NULL, NULL, reinterpret_cast<LPBYTE>(prss), &cb);
65
66 ok(result == ERROR_SUCCESS, "result was %ld\n", result);
67 if (result != ERROR_SUCCESS)
68 {
69 skip("RegQueryValueEx failed: %ld\n", result);
70 return 2;
71 }
72
73 return 0;
74}
75
77{
78 HKEY hKey;
79 DWORD dwValue, dwSize;
80
81 hKey = SHGetShellKey(1, L"Advanced", FALSE);
82 if (hKey == NULL)
83 {
84 return 0;
85 }
86
87 dwSize = sizeof(dwValue);
88 if (SHQueryValueExW(hKey, L"Hidden", NULL, NULL, &dwValue, &dwSize) == ERROR_SUCCESS)
89 {
90 pss->fShowAllObjects = (dwValue == 1);
91 pss->fShowSysFiles = (dwValue == 2);
92 }
93
94 dwSize = sizeof(dwValue);
95 if (SHQueryValueExW(hKey, L"HideFileExt", NULL, NULL, &dwValue, &dwSize) == ERROR_SUCCESS)
96 {
97 pss->fShowExtensions = (dwValue == 0);
98 }
99
100 dwSize = sizeof(dwValue);
101 if (SHQueryValueExW(hKey, L"DontPrettyPath", NULL, NULL, &dwValue, &dwSize) == ERROR_SUCCESS)
102 {
103 pss->fDontPrettyPath = (dwValue != 0);
104 }
105
106 dwSize = sizeof(dwValue);
107 if (SHQueryValueExW(hKey, L"MapNetDrvBtn", NULL, NULL, &dwValue, &dwSize) == ERROR_SUCCESS)
108 {
109 pss->fMapNetDrvBtn = (dwValue != 0);
110 }
111
112 dwSize = sizeof(dwValue);
113 if (SHQueryValueExW(hKey, L"ShowInfoTip", NULL, NULL, &dwValue, &dwSize) == ERROR_SUCCESS)
114 {
115 pss->fShowInfoTip = (dwValue != 0);
116 }
117
118 dwSize = sizeof(dwValue);
119 if (SHQueryValueExW(hKey, L"HideIcons", NULL, NULL, &dwValue, &dwSize) == ERROR_SUCCESS)
120 {
121 pss->fHideIcons = (dwValue != 0);
122 }
123
124 dwSize = sizeof(dwValue);
125 if (SHQueryValueExW(hKey, L"WebView", NULL, NULL, &dwValue, &dwSize) == ERROR_SUCCESS)
126 {
127 pss->fWebView = (dwValue != 0);
128 }
129
130 dwSize = sizeof(dwValue);
131 if (SHQueryValueExW(hKey, L"Filter", NULL, NULL, &dwValue, &dwSize) == ERROR_SUCCESS)
132 {
133 pss->fFilter = (dwValue != 0);
134 }
135
136 dwSize = sizeof(dwValue);
137 if (SHQueryValueExW(hKey, L"ShowSuperHidden", NULL, NULL, &dwValue, &dwSize) == ERROR_SUCCESS)
138 {
139 pss->fShowSuperHidden = (dwValue != 0);
140 }
141
142 dwSize = sizeof(dwValue);
143 if (SHQueryValueExW(hKey, L"NoNetCrawling", NULL, NULL, &dwValue, &dwSize) == ERROR_SUCCESS)
144 {
145 pss->fNoNetCrawling = (dwValue != 0);
146 }
147
149 return 0;
150}
151
152static int dump_pss(SHELLSTATE *pss)
153{
154 dump("SHELLSTATE", pss, sizeof(*pss));
155 return 0;
156}
157
158START_TEST(ShellState)
159{
160 OSVERSIONINFO osinfo;
161 REGSHELLSTATE rss;
162 SHELLSTATE ss, *pss;
163 SHELLFLAGSTATE FlagState;
164 LPBYTE pb;
165 int ret;
166
167 trace("GetVersion(): 0x%08lX\n", GetVersion());
168
169 osinfo.dwOSVersionInfoSize = sizeof(osinfo);
170 GetVersionEx(&osinfo);
171 trace("osinfo.dwMajorVersion: 0x%08lX\n", osinfo.dwMajorVersion);
172 trace("osinfo.dwMinorVersion: 0x%08lX\n", osinfo.dwMinorVersion);
173 trace("osinfo.dwBuildNumber: 0x%08lX\n", osinfo.dwBuildNumber);
174 trace("osinfo.dwPlatformId: 0x%08lX\n", osinfo.dwPlatformId);
175
176 trace("WINVER: 0x%04X\n", WINVER);
177 trace("_WIN32_WINNT: 0x%04X\n", _WIN32_WINNT);
178 trace("_WIN32_IE: 0x%04X\n", _WIN32_IE);
179 trace("NTDDI_VERSION: 0x%08X\n", NTDDI_VERSION);
180
181#ifdef _MSC_VER
182 trace("_MSC_VER: 0x%08X\n", int(_MSC_VER));
183#elif defined(__MINGW32__)
184 trace("__MINGW32__: 0x%08X\n", int(__MINGW32__));
185#elif defined(__clang__)
186 trace("__clang__: 0x%08X\n", int(__clang__));
187#else
188 #error Unknown compiler.
189#endif
190
191 ok(sizeof(REGSHELLSTATE) >= 0x24, "sizeof(REGSHELLSTATE) was %d\n", (int)sizeof(REGSHELLSTATE));
192 trace("sizeof(SHELLSTATE): %d\n", (int)sizeof(SHELLSTATE));
193 trace("__alignof(SHELLSTATE): %d\n", (int)__alignof(SHELLSTATE));
194 trace("sizeof(SHELLFLAGSTATE): %d\n", (int)sizeof(SHELLFLAGSTATE));
195 trace("sizeof(CABINETSTATE): %d\n", (int)sizeof(CABINETSTATE));
196
197 pss = &rss.ss;
198 pb = reinterpret_cast<LPBYTE>(pss);
199
200 ret = read_key(&rss);
201 if (ret)
202 {
203 return;
204 }
205
206 dump_pss(pss);
207 ok(rss.dwSize >= 0x24, "rss.dwSize was %ld (0x%lX).\n", rss.dwSize, rss.dwSize);
208
209 read_advanced_key(&rss.ss);
210
211#define DUMP_LONG(x) trace(#x ": 0x%08X\n", int(x));
212#define DUMP_BOOL(x) trace(#x ": %d\n", !!int(x));
225 DUMP_BOOL(pss->fHideIcons);
226 DUMP_BOOL(pss->fWebView);
227 DUMP_BOOL(pss->fFilter);
230 DUMP_LONG(pss->lParamSort);
232 DUMP_LONG(pss->version);
233 DUMP_LONG(pss->lParamSort);
235 DUMP_LONG(pss->version);
239#if NTDDI_VERSION >= 0x06000000 // for future use
240 DUMP_BOOL(pss->fIconsOnly);
241 DUMP_BOOL(pss->fShowTypeOverlay);
242 DUMP_BOOL(pss->fShowStatusBar);
243#endif
244
245#define SSF_MASK \
246 (SSF_SHOWALLOBJECTS | SSF_SHOWEXTENSIONS | SSF_NOCONFIRMRECYCLE | \
247 SSF_SHOWCOMPCOLOR | SSF_DOUBLECLICKINWEBVIEW | SSF_DESKTOPHTML | \
248 SSF_WIN95CLASSIC | SSF_DONTPRETTYPATH | SSF_SHOWATTRIBCOL | \
249 SSF_MAPNETDRVBUTTON | SSF_SHOWINFOTIP | SSF_HIDEICONS)
250 // For future:
251 // SSF_AUTOCHECKSELECT, SSF_ICONSONLY, SSF_SHOWTYPEOVERLAY, SSF_SHOWSTATUSBAR
252
253 /* Get the settings */
254 memset(&ss, 0, sizeof(ss));
256#define CHECK_REG_FLAG(x) ok(pss->x == ss.x, "ss.%s expected %d, was %d\n", #x, (int)pss->x, (int)ss.x)
257 CHECK_REG_FLAG(fShowAllObjects);
258 CHECK_REG_FLAG(fShowExtensions);
259 CHECK_REG_FLAG(fNoConfirmRecycle);
260 CHECK_REG_FLAG(fShowSysFiles); // No use
261 CHECK_REG_FLAG(fShowCompColor);
262 CHECK_REG_FLAG(fDoubleClickInWebView);
263 CHECK_REG_FLAG(fDesktopHTML);
264 CHECK_REG_FLAG(fWin95Classic);
265 CHECK_REG_FLAG(fDontPrettyPath);
266 CHECK_REG_FLAG(fShowAttribCol);
267 CHECK_REG_FLAG(fMapNetDrvBtn);
268 CHECK_REG_FLAG(fShowInfoTip);
269 CHECK_REG_FLAG(fHideIcons);
270#if NTDDI_VERSION >= 0x06000000 // for future use
271 CHECK_REG_FLAG(fAutoCheckSelect);
272 CHECK_REG_FLAG(fIconsOnly);
273#endif
274
275 /* Get the flag settings */
276 memset(&FlagState, 0, sizeof(FlagState));
277 SHGetSettings(&FlagState, SSF_MASK);
278#define CHECK_FLAG(x) ok(ss.x == FlagState.x, "FlagState.%s expected %d, was %d\n", #x, (int)ss.x, (int)FlagState.x)
279 CHECK_FLAG(fShowAllObjects);
280 CHECK_FLAG(fShowExtensions);
281 CHECK_FLAG(fNoConfirmRecycle);
282 CHECK_FLAG(fShowSysFiles); // No use
283 CHECK_FLAG(fShowCompColor);
284 CHECK_FLAG(fDoubleClickInWebView);
285 CHECK_FLAG(fDesktopHTML);
286 CHECK_FLAG(fWin95Classic);
287 CHECK_FLAG(fDontPrettyPath);
288 CHECK_FLAG(fShowAttribCol);
289 CHECK_FLAG(fMapNetDrvBtn);
290 CHECK_FLAG(fShowInfoTip);
291 CHECK_FLAG(fHideIcons);
292#if NTDDI_VERSION >= 0x06000000 // for future use
293 CHECK_FLAG(fAutoCheckSelect);
294 CHECK_FLAG(fIconsOnly);
295#endif
296
297#if 1
298 #define DO_IT(x) x
299#else
300 #define DO_IT(x) do { trace(#x ";\n"); x; } while (0)
301#endif
302
303 DO_IT(memset(pss, 0, sizeof(*pss)));
304 DO_IT(pss->dwWin95Unused = 1);
305 ok(pb[4] == 0x01 || dump_pss(pss), "Unexpected pss ^\n");
306
307 DO_IT(memset(pss, 0, sizeof(*pss)));
308 DO_IT(pss->lParamSort = 1);
309 ok(pb[12] == 0x01 || dump_pss(pss), "Unexpected pss ^\n");
310
311 DO_IT(memset(pss, 0, sizeof(*pss)));
312 DO_IT(pss->iSortDirection = 0xDEADBEEF);
313 ok(*(UNALIGNED DWORD *)(pb + 16) == 0xDEADBEEF || dump_pss(pss), "Unexpected pss ^\n");
314
315 DO_IT(memset(pss, 0, sizeof(*pss)));
316 DO_IT(pss->version = 0xDEADBEEF);
317 ok(*(UNALIGNED DWORD *)(pb + 20) == 0xDEADBEEF || dump_pss(pss), "Unexpected pss ^\n");
318
319 DO_IT(memset(pss, 0, sizeof(*pss)));
320 DO_IT(pss->fSepProcess = TRUE);
321 ok(pb[28] == 0x01 || dump_pss(pss), "Unexpected pss ^\n");
322}
#define SSF_MASK
#define DUMP_LONG(x)
static void dump(const char *name, const void *ptr, size_t siz)
Definition: ShellState.cpp:25
#define CHECK_REG_FLAG(x)
static int dump_pss(SHELLSTATE *pss)
Definition: ShellState.cpp:152
#define DO_IT(x)
#define DUMP_BOOL(x)
struct REGSHELLSTATE * PREGSHELLSTATE
#define CHECK_FLAG(x)
static int read_advanced_key(SHELLSTATE *pss)
Definition: ShellState.cpp:76
static int read_key(REGSHELLSTATE *prss)
Definition: ShellState.cpp:42
#define trace
Definition: atltest.h:70
#define ok(value,...)
Definition: atltest.h:57
#define skip(...)
Definition: atltest.h:64
#define START_TEST(x)
Definition: atltest.h:75
#define _WIN32_WINNT
Definition: precomp.h:14
#define _WIN32_IE
Definition: treeview.c:11
#define RegCloseKey(hKey)
Definition: registry.h:49
#define UNALIGNED
Definition: crtdefs.h:144
#define ERROR_SUCCESS
Definition: deptool.c:10
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
LONG WINAPI RegOpenKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult)
Definition: reg.c:3333
LONG WINAPI RegQueryValueExW(_In_ HKEY hkeyorg, _In_ LPCWSTR name, _In_ LPDWORD reserved, _In_ LPDWORD type, _In_ LPBYTE data, _In_ LPDWORD count)
Definition: reg.c:4103
HKEY WINAPI SHGetShellKey(DWORD flags, LPCWSTR sub_key, BOOL create)
Definition: ordinal.c:4585
DWORD WINAPI SHQueryValueExW(HKEY hKey, LPCWSTR lpszValue, LPDWORD lpReserved, LPDWORD pwType, LPVOID pvData, LPDWORD pcbData)
Definition: reg.c:1461
unsigned long DWORD
Definition: ntddk_ex.h:95
FxAutoRegKey hKey
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751
GLuint64EXT * result
Definition: glext.h:11304
#define ss
Definition: i386-dis.c:441
#define NTDDI_VERSION
Definition: k32.h:33
PSDBQUERYRESULT_VISTA PVOID DWORD * dwSize
Definition: env.c:56
static PVOID ptr
Definition: dispmode.c:27
static HMODULE MODULEINFO DWORD cb
Definition: module.c:33
#define KEY_READ
Definition: nt_native.h:1023
#define L(x)
Definition: ntvdm.h:50
long LONG
Definition: pedump.c:60
DWORD WINAPI GetVersion()
Definition: redirtest.c:5
#define memset(x, y, z)
Definition: compat.h:39
VOID WINAPI SHGetSettings(LPSHELLFLAGSTATE lpsfs, DWORD dwMask)
Definition: shellord.c:222
VOID WINAPI SHGetSetSettings(LPSHELLSTATE lpss, DWORD dwMask, BOOL bSet)
Definition: shellord.c:202
STRSAFEAPI StringCbCatA(STRSAFE_LPSTR pszDest, size_t cbDest, STRSAFE_LPCSTR pszSrc)
Definition: strsafe.h:337
STRSAFEAPI StringCbPrintfA(STRSAFE_LPSTR pszDest, size_t cbDest, STRSAFE_LPCSTR pszFormat,...)
Definition: strsafe.h:547
STRSAFEAPI StringCbCopyA(STRSAFE_LPSTR pszDest, size_t cbDest, STRSAFE_LPCSTR pszSrc)
Definition: strsafe.h:161
DWORD dwSize
Definition: general.cpp:28
SHELLSTATE ss
Definition: general.cpp:29
BOOL fShowStartPage
Definition: shlobj.h:1560
BOOL fShowSysFiles
Definition: shlobj.h:1536
BOOL fWin95Classic
Definition: shlobj.h:1540
BOOL fDesktopHTML
Definition: shlobj.h:1539
BOOL fShowSuperHidden
Definition: shlobj.h:1548
BOOL fMapNetDrvBtn
Definition: shlobj.h:1543
BOOL fHideIcons
Definition: shlobj.h:1545
DWORD dwWin95Unused
Definition: shlobj.h:1552
BOOL fShowExtensions
Definition: shlobj.h:1533
LONG lParamSort
Definition: shlobj.h:1554
BOOL fWebView
Definition: shlobj.h:1546
BOOL fNoNetCrawling
Definition: shlobj.h:1549
BOOL fShowAttribCol
Definition: shlobj.h:1542
BOOL fNoConfirmRecycle
Definition: shlobj.h:1534
BOOL fShowCompColor
Definition: shlobj.h:1537
BOOL fShowInfoTip
Definition: shlobj.h:1544
UINT version
Definition: shlobj.h:1556
BOOL fFilter
Definition: shlobj.h:1547
BOOL fSepProcess
Definition: shlobj.h:1558
int iSortDirection
Definition: shlobj.h:1555
BOOL fShowAllObjects
Definition: shlobj.h:1532
BOOL fDoubleClickInWebView
Definition: shlobj.h:1538
BOOL fStartPanelOn
Definition: shlobj.h:1559
BOOL fDontPrettyPath
Definition: shlobj.h:1541
ULONG dwPlatformId
Definition: rtltypes.h:241
ULONG dwOSVersionInfoSize
Definition: rtltypes.h:237
ULONG dwMajorVersion
Definition: rtltypes.h:238
ULONG dwBuildNumber
Definition: rtltypes.h:240
ULONG dwMinorVersion
Definition: rtltypes.h:239
Definition: name.c:39
#define WINVER
Definition: targetver.h:11
unsigned char * LPBYTE
Definition: typedefs.h:53
int ret
#define GetVersionEx
Definition: winbase.h:3852
#define HKEY_CURRENT_USER
Definition: winreg.h:11
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185
unsigned char BYTE
Definition: xxhash.c:193