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
c1b92ca1
Commit
c1b92ca1
authored
Mar 28, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Mar 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
devenum: Add tests for devenum.
parent
303ce38b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
133 additions
and
0 deletions
+133
-0
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/devenum/tests/Makefile.in
+7
-0
devenum.c
dlls/devenum/tests/devenum.c
+124
-0
No files found.
configure
View file @
c1b92ca1
...
...
@@ -15001,6 +15001,7 @@ wine_fn_config_test dlls/ddraw/tests ddraw_test
wine_fn_config_dll ddrawex enable_ddrawex
wine_fn_config_test dlls/ddrawex/tests ddrawex_test
wine_fn_config_dll devenum enable_devenum po
wine_fn_config_test dlls/devenum/tests devenum_test
wine_fn_config_dll dhcpcsvc enable_dhcpcsvc
wine_fn_config_dll dinput enable_dinput implib,po,staticimplib
wine_fn_config_test dlls/dinput/tests dinput_test
...
...
configure.ac
View file @
c1b92ca1
...
...
@@ -2508,6 +2508,7 @@ WINE_CONFIG_TEST(dlls/ddraw/tests)
WINE_CONFIG_DLL(ddrawex)
WINE_CONFIG_TEST(dlls/ddrawex/tests)
WINE_CONFIG_DLL(devenum,,[po])
WINE_CONFIG_TEST(dlls/devenum/tests)
WINE_CONFIG_DLL(dhcpcsvc)
WINE_CONFIG_DLL(dinput,,[implib,po,staticimplib])
WINE_CONFIG_TEST(dlls/dinput/tests)
...
...
dlls/devenum/tests/Makefile.in
0 → 100644
View file @
c1b92ca1
TESTDLL
=
devenum.dll
IMPORTS
=
oleaut32 ole32 advapi32
C_SRCS
=
\
devenum.c
@MAKE_TEST_RULES@
dlls/devenum/tests/devenum.c
0 → 100644
View file @
c1b92ca1
/*
* Some unit tests for devenum
*
* Copyright (C) 2012 Christian Costa
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define COBJMACROS
#include <stdio.h>
#include "wine/test.h"
#include "initguid.h"
#include "ole2.h"
#include "strmif.h"
#include "uuids.h"
static
const
WCHAR
friendly_name
[]
=
{
'F'
,
'r'
,
'i'
,
'e'
,
'n'
,
'd'
,
'l'
,
'y'
,
'N'
,
'a'
,
'm'
,
'e'
,
0
};
struct
category
{
const
char
*
name
;
const
GUID
*
clsid
;
};
static
struct
category
am_categories
[]
=
{
{
"Legacy AM Filter category"
,
&
CLSID_LegacyAmFilterCategory
},
{
"Audio renderer category"
,
&
CLSID_AudioRendererCategory
},
{
"Midi renderer category"
,
&
CLSID_MidiRendererCategory
},
{
"Audio input device category"
,
&
CLSID_AudioInputDeviceCategory
},
{
"Video input device category"
,
&
CLSID_VideoInputDeviceCategory
},
{
"Audio compressor category"
,
&
CLSID_AudioCompressorCategory
},
{
"Video compressor category"
,
&
CLSID_VideoCompressorCategory
}
};
static
void
test_devenum
(
void
)
{
HRESULT
res
;
ICreateDevEnum
*
create_devenum
;
IEnumMoniker
*
enum_moniker
=
NULL
;
int
i
;
CoInitialize
(
NULL
);
res
=
CoCreateInstance
(
&
CLSID_SystemDeviceEnum
,
NULL
,
CLSCTX_INPROC
,
&
IID_ICreateDevEnum
,
(
LPVOID
*
)
&
create_devenum
);
if
(
res
!=
S_OK
)
{
skip
(
"Cannot create SystemDeviceEnum object (%x)
\n
"
,
res
);
CoUninitialize
();
return
;
}
trace
(
"
\n
"
);
for
(
i
=
0
;
i
<
(
sizeof
(
am_categories
)
/
sizeof
(
struct
category
));
i
++
)
{
trace
(
"%s:
\n
"
,
am_categories
[
i
].
name
);
res
=
ICreateDevEnum_CreateClassEnumerator
(
create_devenum
,
am_categories
[
i
].
clsid
,
&
enum_moniker
,
0
);
ok
(
SUCCEEDED
(
res
),
"Cannot create enum moniker (res = %x)
\n
"
,
res
);
if
(
res
==
S_OK
)
{
IMoniker
*
moniker
;
while
(
IEnumMoniker_Next
(
enum_moniker
,
1
,
&
moniker
,
NULL
)
==
S_OK
)
{
IPropertyBag
*
prop_bag
=
NULL
;
VARIANT
var
;
HRESULT
hr
;
VariantInit
(
&
var
);
hr
=
IMoniker_BindToStorage
(
moniker
,
NULL
,
NULL
,
&
IID_IPropertyBag
,
(
LPVOID
*
)
&
prop_bag
);
ok
(
hr
==
S_OK
,
"IMoniker_BindToStorage failed with error %x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
{
hr
=
IPropertyBag_Read
(
prop_bag
,
friendly_name
,
&
var
,
NULL
);
ok
((
hr
==
S_OK
)
||
broken
(
hr
==
0x80070002
),
"IPropertyBag_Read failed with error %x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
{
trace
(
" %s
\n
"
,
wine_dbgstr_w
(
V_UNION
(
&
var
,
bstrVal
)));
VariantClear
(
&
var
);
}
else
{
trace
(
" ???
\n
"
);
}
}
if
(
prop_bag
)
IPropertyBag_Release
(
prop_bag
);
IMoniker_Release
(
moniker
);
}
IEnumMoniker_Release
(
enum_moniker
);
}
trace
(
"
\n
"
);
}
ICreateDevEnum_Release
(
create_devenum
);
CoUninitialize
();
}
/* CLSID_CDeviceMoniker */
START_TEST
(
devenum
)
{
test_devenum
();
}
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