ReactOS 0.4.16-dev-942-g91fadeb
CertEnumSystemStoreLocation.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS API Tests
3 * LICENSE: MIT (https://spdx.org/licenses/MIT)
4 * PURPOSE: Test for CertEnumSystemStoreLocation
5 * COPYRIGHT: Copyright 2025 Ratin Gao <ratin@knsoft.org>
6 */
7
8#define WIN32_NO_STATUS
9#define _INC_WINDOWS
10#define COM_NO_WINDOWS_H
11
12#include <apitest.h>
13#include <windef.h>
14#include <wincrypt.h>
15
16#define ARG_CONTEXT ((PVOID)(ULONG_PTR)0x12345678)
17
19{
23
25 { CERT_SYSTEM_STORE_CURRENT_USER, L"CurrentUser" },
26 { CERT_SYSTEM_STORE_LOCAL_MACHINE, L"LocalMachine" },
27 { CERT_SYSTEM_STORE_CURRENT_SERVICE, L"CurrentService" },
28 { CERT_SYSTEM_STORE_SERVICES, L"Services" },
29 { CERT_SYSTEM_STORE_USERS, L"Users" },
30 { CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY, L"CurrentUserGroupPolicy" },
31 { CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY, L"LocalMachineGroupPolicy" },
32 { CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE, L"LocalMachineEnterprise" },
33};
34
35static ULONG g_Index = 0;
36
37static
38BOOL
41 _In_ LPCWSTR pwszStoreLocation,
44 _Inout_opt_ void* pvArg)
45{
46 ok(pvReserved == NULL, "pvReserved is not NULL\n");
47 ok(pvArg == ARG_CONTEXT, "pvArg incorrect\n");
48
50 {
51 ok(dwFlags == g_SystemStoreLocations[g_Index].dwFlags, "#%lu dwFlags incorrect\n", g_Index);
52 ok(wcscmp(pwszStoreLocation, g_SystemStoreLocations[g_Index].pwszStoreLocation) == 0,
53 "#%lu pwszStoreLocation incorrect\n",
54 g_Index);
55 }
56
57 g_Index++;
58 return TRUE;
59}
60
62{
63 BOOL bRet;
64
65 /* dwFlags should be 0, otherwise fail with E_INVALIDARG */
67 ok(bRet == FALSE && GetLastError() == E_INVALIDARG,
68 "CertEnumSystemStoreLocation should failed with E_INVALIDARG when dwFlags is not 0\n");
69
70 /* Start enumeration */
72 ok(bRet != FALSE, "CertEnumSystemStoreLocation failed with 0x%08lX\n", GetLastError());
73 ok(g_Index >= ARRAYSIZE(g_SystemStoreLocations), "Count of enumerated item incorrect\n");
74}
static const CERT_SYSTEM_STORE_LOCATION g_SystemStoreLocations[]
struct _CERT_SYSTEM_STORE_LOCATION CERT_SYSTEM_STORE_LOCATION
static BOOL WINAPI CertEnumSystemStoreLocationCallback(_In_ LPCWSTR pwszStoreLocation, _In_ DWORD dwFlags, _Reserved_ void *pvReserved, _Inout_opt_ void *pvArg)
#define ARG_CONTEXT
struct _CERT_SYSTEM_STORE_LOCATION * PCERT_SYSTEM_STORE_LOCATION
static ULONG g_Index
#define ok(value,...)
Definition: atltest.h:57
#define START_TEST(x)
Definition: atltest.h:75
#define E_INVALIDARG
Definition: ddrawi.h:101
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define ARRAYSIZE(array)
Definition: filtermapper.c:47
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
static LPCSTR DWORD void * pvReserved
Definition: str.c:196
#define _Inout_opt_
Definition: no_sal2.h:216
#define _In_
Definition: no_sal2.h:158
#define _Reserved_
Definition: no_sal2.h:504
#define L(x)
Definition: ntvdm.h:50
_Check_return_ _CRTIMP int __cdecl wcscmp(_In_z_ const wchar_t *_Str1, _In_z_ const wchar_t *_Str2)
const uint16_t * PCWSTR
Definition: typedefs.h:57
uint32_t ULONG
Definition: typedefs.h:59
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
#define CERT_SYSTEM_STORE_SERVICES
Definition: wincrypt.h:2330
_In_ PCCERT_CONTEXT _In_ DWORD dwFlags
Definition: wincrypt.h:1176
#define CERT_SYSTEM_STORE_CURRENT_SERVICE
Definition: wincrypt.h:2328
#define CERT_SYSTEM_STORE_USERS
Definition: wincrypt.h:2332
#define CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE
Definition: wincrypt.h:2338
#define CERT_SYSTEM_STORE_LOCAL_MACHINE
Definition: wincrypt.h:2326
BOOL WINAPI CertEnumSystemStoreLocation(_In_ DWORD dwFlags, _Inout_opt_ void *pvArg, __callback PFN_CERT_ENUM_SYSTEM_STORE_LOCATION pfnEnum)
#define CERT_SYSTEM_STORE_CURRENT_USER
Definition: wincrypt.h:2324
#define CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY
Definition: wincrypt.h:2334
#define CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY
Definition: wincrypt.h:2336
#define WINAPI
Definition: msvc.h:6
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185