Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
22ae86f6
Commit
22ae86f6
authored
Aug 28, 2019
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox/tests: Add tests for Win32_Baseboard.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e4f1f9b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
14 deletions
+68
-14
query.c
dlls/wbemprox/tests/query.c
+68
-14
No files found.
dlls/wbemprox/tests/query.c
View file @
22ae86f6
...
@@ -329,7 +329,7 @@ static void _check_property( ULONG line, IWbemClassObject *obj, const WCHAR *pro
...
@@ -329,7 +329,7 @@ static void _check_property( ULONG line, IWbemClassObject *obj, const WCHAR *pro
static
void
test_Win32_Bios
(
IWbemServices
*
services
)
static
void
test_Win32_Bios
(
IWbemServices
*
services
)
{
{
static
const
WCHAR
queryW
[]
=
static
const
WCHAR
queryW
[]
=
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
' '
,
'*'
,
' '
,
'F'
,
'R'
,
'O'
,
'M'
,
' '
,
'W'
,
'i'
,
'n'
,
'3'
,
'2'
,
'_'
,
'B'
,
'i'
,
'o'
,
's'
,
0
};
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
' '
,
'*'
,
' '
,
'F'
,
'R'
,
'O'
,
'M'
,
' '
,
'W'
,
'i'
,
'n'
,
'3'
,
'2'
,
'_'
,
'B'
,
'i'
,
'o'
,
's'
,
0
};
static
const
WCHAR
descriptionW
[]
=
{
'D'
,
'e'
,
's'
,
'c'
,
'r'
,
'i'
,
'p'
,
't'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
descriptionW
[]
=
{
'D'
,
'e'
,
's'
,
'c'
,
'r'
,
'i'
,
'p'
,
't'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
identificationcodeW
[]
=
{
'I'
,
'd'
,
'e'
,
'n'
,
't'
,
'i'
,
'f'
,
'i'
,
'c'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'C'
,
'o'
,
'd'
,
'e'
,
0
};
static
const
WCHAR
identificationcodeW
[]
=
{
'I'
,
'd'
,
'e'
,
'n'
,
't'
,
'i'
,
'f'
,
'i'
,
'c'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'C'
,
'o'
,
'd'
,
'e'
,
0
};
static
const
WCHAR
manufacturerW
[]
=
{
'M'
,
'a'
,
'n'
,
'u'
,
'f'
,
'a'
,
'c'
,
't'
,
'u'
,
'r'
,
'e'
,
'r'
,
0
};
static
const
WCHAR
manufacturerW
[]
=
{
'M'
,
'a'
,
'n'
,
'u'
,
'f'
,
'a'
,
'c'
,
't'
,
'u'
,
'r'
,
'e'
,
'r'
,
0
};
...
@@ -380,6 +380,57 @@ static void test_Win32_Bios( IWbemServices *services )
...
@@ -380,6 +380,57 @@ static void test_Win32_Bios( IWbemServices *services )
SysFreeString
(
wql
);
SysFreeString
(
wql
);
}
}
static
void
test_Win32_Baseboard
(
IWbemServices
*
services
)
{
static
const
WCHAR
queryW
[]
=
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
' '
,
'*'
,
' '
,
'F'
,
'R'
,
'O'
,
'M'
,
' '
,
'W'
,
'i'
,
'n'
,
'3'
,
'2'
,
'_'
,
'B'
,
'a'
,
's'
,
'e'
,
'b'
,
'o'
,
'a'
,
'r'
,
'd'
,
0
};
static
const
WCHAR
manufacturerW
[]
=
{
'M'
,
'a'
,
'n'
,
'u'
,
'f'
,
'a'
,
'c'
,
't'
,
'u'
,
'r'
,
'e'
,
'r'
,
0
};
static
const
WCHAR
modelW
[]
=
{
'M'
,
'o'
,
'd'
,
'e'
,
'l'
,
0
};
static
const
WCHAR
nameW
[]
=
{
'N'
,
'a'
,
'm'
,
'e'
,
0
};
static
const
WCHAR
productW
[]
=
{
'P'
,
'r'
,
'o'
,
'd'
,
'u'
,
'c'
,
't'
,
0
};
static
const
WCHAR
tagW
[]
=
{
'T'
,
'a'
,
'g'
,
0
};
static
const
WCHAR
versionW
[]
=
{
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
0
};
BSTR
wql
=
SysAllocString
(
wqlW
),
query
=
SysAllocString
(
queryW
);
IEnumWbemClassObject
*
result
;
IWbemClassObject
*
obj
;
CIMTYPE
type
;
ULONG
count
;
VARIANT
val
;
HRESULT
hr
;
hr
=
IWbemServices_ExecQuery
(
services
,
wql
,
query
,
0
,
NULL
,
&
result
);
ok
(
hr
==
S_OK
,
"IWbemServices_ExecQuery failed %08x
\n
"
,
hr
);
hr
=
IEnumWbemClassObject_Next
(
result
,
10000
,
1
,
&
obj
,
&
count
);
if
(
hr
!=
S_OK
)
{
win_skip
(
"Win32_Baseboard not available
\n
"
);
return
;
}
ok
(
hr
==
S_OK
,
"IEnumWbemClassObject_Next failed %08x
\n
"
,
hr
);
check_property
(
obj
,
manufacturerW
,
VT_BSTR
,
CIM_STRING
);
type
=
0xdeadbeef
;
VariantInit
(
&
val
);
hr
=
IWbemClassObject_Get
(
obj
,
modelW
,
0
,
&
val
,
&
type
,
NULL
);
ok
(
hr
==
S_OK
,
"failed to get model %08x
\n
"
,
hr
);
ok
(
V_VT
(
&
val
)
==
VT_BSTR
||
V_VT
(
&
val
)
==
VT_NULL
,
"unexpected variant type 0x%x
\n
"
,
V_VT
(
&
val
)
);
ok
(
type
==
CIM_STRING
,
"unexpected type 0x%x
\n
"
,
type
);
trace
(
"model: %s
\n
"
,
wine_dbgstr_w
(
V_BSTR
(
&
val
))
);
VariantClear
(
&
val
);
check_property
(
obj
,
nameW
,
VT_BSTR
,
CIM_STRING
);
check_property
(
obj
,
productW
,
VT_BSTR
,
CIM_STRING
);
check_property
(
obj
,
tagW
,
VT_BSTR
,
CIM_STRING
);
check_property
(
obj
,
versionW
,
VT_BSTR
,
CIM_STRING
);
IWbemClassObject_Release
(
obj
);
IEnumWbemClassObject_Release
(
result
);
SysFreeString
(
query
);
SysFreeString
(
wql
);
}
static
void
test_Win32_Process
(
IWbemServices
*
services
,
BOOL
use_full_path
)
static
void
test_Win32_Process
(
IWbemServices
*
services
,
BOOL
use_full_path
)
{
{
static
const
WCHAR
returnvalueW
[]
=
{
'R'
,
'e'
,
't'
,
'u'
,
'r'
,
'n'
,
'V'
,
'a'
,
'l'
,
'u'
,
'e'
,
0
};
static
const
WCHAR
returnvalueW
[]
=
{
'R'
,
'e'
,
't'
,
'u'
,
'r'
,
'n'
,
'V'
,
'a'
,
'l'
,
'u'
,
'e'
,
0
};
...
@@ -1591,28 +1642,31 @@ START_TEST(query)
...
@@ -1591,28 +1642,31 @@ START_TEST(query)
RPC_C_AUTHN_LEVEL_CALL
,
RPC_C_IMP_LEVEL_IMPERSONATE
,
NULL
,
EOAC_NONE
);
RPC_C_AUTHN_LEVEL_CALL
,
RPC_C_IMP_LEVEL_IMPERSONATE
,
NULL
,
EOAC_NONE
);
ok
(
hr
==
S_OK
,
"failed to set proxy blanket %08x
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"failed to set proxy blanket %08x
\n
"
,
hr
);
test_
select
(
services
);
test_
GetNames
(
services
);
test_associators
(
services
);
test_associators
(
services
);
test_Win32_Bios
(
services
);
test_Win32_Process
(
services
,
FALSE
);
test_Win32_Process
(
services
,
TRUE
);
test_Win32_Service
(
services
);
test_Win32_ComputerSystem
(
services
);
test_Win32_SystemEnclosure
(
services
);
test_StdRegProv
(
services
);
test_notification_query_async
(
services
);
test_notification_query_async
(
services
);
test_query_async
(
services
);
test_query_async
(
services
);
test_query_semisync
(
services
);
test_query_semisync
(
services
);
test_GetNames
(
services
);
test_select
(
services
);
/* classes */
test_StdRegProv
(
services
);
test_SystemSecurity
(
services
);
test_SystemSecurity
(
services
);
test_Win32_OperatingSystem
(
services
);
test_Win32_Baseboard
(
services
);
test_Win32_ComputerSystem
(
services
);
test_Win32_ComputerSystemProduct
(
services
);
test_Win32_ComputerSystemProduct
(
services
);
test_Win32_
PhysicalMemory
(
services
);
test_Win32_
Bios
(
services
);
test_Win32_IP4RouteTable
(
services
);
test_Win32_IP4RouteTable
(
services
);
test_Win32_OperatingSystem
(
services
);
test_Win32_PhysicalMemory
(
services
);
test_Win32_PnPEntity
(
services
);
test_Win32_Printer
(
services
);
test_Win32_Process
(
services
,
FALSE
);
test_Win32_Process
(
services
,
TRUE
);
test_Win32_Processor
(
services
);
test_Win32_Processor
(
services
);
test_Win32_Service
(
services
);
test_Win32_SystemEnclosure
(
services
);
test_Win32_VideoController
(
services
);
test_Win32_VideoController
(
services
);
test_Win32_Printer
(
services
);
test_Win32_PnPEntity
(
services
);
SysFreeString
(
path
);
SysFreeString
(
path
);
IWbemServices_Release
(
services
);
IWbemServices_Release
(
services
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment