Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
046981e6
Commit
046981e6
authored
Mar 13, 2014
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 14, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dswave/tests: Add COM tests for DirectSoundWave.
parent
2fe96053
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
109 additions
and
0 deletions
+109
-0
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/dswave/tests/Makefile.in
+5
-0
dswave.c
dlls/dswave/tests/dswave.c
+102
-0
No files found.
configure
View file @
046981e6
...
...
@@ -16840,6 +16840,7 @@ wine_fn_config_test dlls/dsound/tests dsound_test
wine_fn_config_dll dssenh enable_dssenh
wine_fn_config_test dlls/dssenh/tests dssenh_test
wine_fn_config_dll dswave enable_dswave clean
wine_fn_config_test dlls/dswave/tests dswave_test
wine_fn_config_dll dwmapi enable_dwmapi implib
wine_fn_config_dll dwrite enable_dwrite implib
wine_fn_config_test dlls/dwrite/tests dwrite_test
...
...
configure.ac
View file @
046981e6
...
...
@@ -2844,6 +2844,7 @@ WINE_CONFIG_TEST(dlls/dsound/tests)
WINE_CONFIG_DLL(dssenh)
WINE_CONFIG_TEST(dlls/dssenh/tests)
WINE_CONFIG_DLL(dswave,,[clean])
WINE_CONFIG_TEST(dlls/dswave/tests)
WINE_CONFIG_DLL(dwmapi,,[implib])
WINE_CONFIG_DLL(dwrite,,[implib])
WINE_CONFIG_TEST(dlls/dwrite/tests)
...
...
dlls/dswave/tests/Makefile.in
0 → 100644
View file @
046981e6
TESTDLL
=
dswave.dll
IMPORTS
=
ole32
C_SRCS
=
\
dswave.c
dlls/dswave/tests/dswave.c
0 → 100644
View file @
046981e6
/*
* Copyright 2014 Michael Stefaniuc
*
* 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 <stdarg.h>
#include <windef.h>
#include <initguid.h>
#include <wine/test.h>
#include <dmusici.h>
static
BOOL
missing_dswave
(
void
)
{
IDirectMusicObject
*
dmo
;
HRESULT
hr
=
CoCreateInstance
(
&
CLSID_DirectSoundWave
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IDirectMusicObject
,
(
void
**
)
&
dmo
);
if
(
hr
==
S_OK
&&
dmo
)
{
IDirectMusicObject_Release
(
dmo
);
return
FALSE
;
}
return
TRUE
;
}
static
void
test_COM
(
void
)
{
IDirectMusicObject
*
dmo
=
(
IDirectMusicObject
*
)
0xdeadbeef
;
IPersistStream
*
ps
;
IUnknown
*
unk
;
ULONG
refcount
;
HRESULT
hr
;
/* COM aggregation */
hr
=
CoCreateInstance
(
&
CLSID_DirectSoundWave
,
(
IUnknown
*
)
&
dmo
,
CLSCTX_INPROC_SERVER
,
&
IID_IUnknown
,
(
void
**
)
&
dmo
);
ok
(
hr
==
CLASS_E_NOAGGREGATION
,
"DirectSoundWave create failed: %08x, expected CLASS_E_NOAGGREGATION
\n
"
,
hr
);
ok
(
!
dmo
,
"dmo = %p
\n
"
,
dmo
);
/* Invalid RIID */
hr
=
CoCreateInstance
(
&
CLSID_DirectSoundWave
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IDirectMusicSegment8
,
(
void
**
)
&
dmo
);
todo_wine
ok
(
hr
==
E_NOINTERFACE
,
"DirectSoundWave create failed: %08x, expected E_NOINTERFACE
\n
"
,
hr
);
/* Same refcount for all DirectSoundWave interfaces */
hr
=
CoCreateInstance
(
&
CLSID_DirectSoundWave
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IDirectMusicObject
,
(
void
**
)
&
dmo
);
ok
(
hr
==
S_OK
,
"DirectSoundWave create failed: %08x, expected S_OK
\n
"
,
hr
);
refcount
=
IDirectMusicObject_AddRef
(
dmo
);
ok
(
refcount
==
2
,
"refcount == %u, expected 2
\n
"
,
refcount
);
hr
=
IDirectMusicObject_QueryInterface
(
dmo
,
&
IID_IPersistStream
,
(
void
**
)
&
ps
);
ok
(
hr
==
S_OK
,
"QueryInterface for IID_IPersistStream failed: %08x
\n
"
,
hr
);
refcount
=
IPersistStream_AddRef
(
ps
);
ok
(
refcount
==
4
,
"refcount == %u, expected 4
\n
"
,
refcount
);
refcount
=
IPersistStream_Release
(
ps
);
hr
=
IDirectMusicObject_QueryInterface
(
dmo
,
&
IID_IUnknown
,
(
void
**
)
&
unk
);
ok
(
hr
==
S_OK
,
"QueryInterface for IID_IUnknown failed: %08x
\n
"
,
hr
);
refcount
=
IUnknown_AddRef
(
unk
);
ok
(
refcount
==
5
,
"refcount == %u, expected 5
\n
"
,
refcount
);
refcount
=
IUnknown_Release
(
unk
);
/* Interfaces that native does not support */
hr
=
IDirectMusicObject_QueryInterface
(
dmo
,
&
IID_IDirectMusicSegment
,
(
void
**
)
&
unk
);
todo_wine
ok
(
hr
==
E_NOINTERFACE
,
"QueryInterface for IID_IDirectMusicSegment failed: %08x
\n
"
,
hr
);
hr
=
IDirectMusicObject_QueryInterface
(
dmo
,
&
IID_IDirectMusicSegment8
,
(
void
**
)
&
unk
);
todo_wine
ok
(
hr
==
E_NOINTERFACE
,
"QueryInterface for IID_IDirectMusicSegment8 failed: %08x
\n
"
,
hr
);
while
(
IDirectMusicObject_Release
(
dmo
));
}
START_TEST
(
dswave
)
{
CoInitialize
(
NULL
);
if
(
missing_dswave
())
{
skip
(
"dswave not available
\n
"
);
CoUninitialize
();
return
;
}
test_COM
();
CoUninitialize
();
}
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