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
e407dae3
Commit
e407dae3
authored
Apr 18, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 19, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qedit/tests: Add some tests for IBaseFilter::FindPin() on the null renderer.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bdf5e8f5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
nullrenderer.c
dlls/qedit/tests/nullrenderer.c
+31
-0
No files found.
dlls/qedit/tests/nullrenderer.c
View file @
e407dae3
...
@@ -22,6 +22,8 @@
...
@@ -22,6 +22,8 @@
#include "dshow.h"
#include "dshow.h"
#include "wine/test.h"
#include "wine/test.h"
static
const
WCHAR
sink_id
[]
=
{
'I'
,
'n'
,
0
};
static
IBaseFilter
*
create_null_renderer
(
void
)
static
IBaseFilter
*
create_null_renderer
(
void
)
{
{
IBaseFilter
*
filter
=
NULL
;
IBaseFilter
*
filter
=
NULL
;
...
@@ -170,6 +172,34 @@ static void test_enum_pins(void)
...
@@ -170,6 +172,34 @@ static void test_enum_pins(void)
ok
(
!
ref
,
"Got outstanding refcount %d.
\n
"
,
ref
);
ok
(
!
ref
,
"Got outstanding refcount %d.
\n
"
,
ref
);
}
}
static
void
test_find_pin
(
void
)
{
static
const
WCHAR
input_pinW
[]
=
{
'i'
,
'n'
,
'p'
,
'u'
,
't'
,
' '
,
'p'
,
'i'
,
'n'
,
0
};
IBaseFilter
*
filter
=
create_null_renderer
();
IEnumPins
*
enum_pins
;
IPin
*
pin
,
*
pin2
;
HRESULT
hr
;
ULONG
ref
;
hr
=
IBaseFilter_FindPin
(
filter
,
input_pinW
,
&
pin
);
ok
(
hr
==
VFW_E_NOT_FOUND
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IBaseFilter_EnumPins
(
filter
,
&
enum_pins
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IBaseFilter_FindPin
(
filter
,
sink_id
,
&
pin
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IEnumPins_Next
(
enum_pins
,
1
,
&
pin2
,
NULL
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
ok
(
pin2
==
pin
,
"Expected pin %p, got %p.
\n
"
,
pin
,
pin2
);
IPin_Release
(
pin2
);
IPin_Release
(
pin
);
IEnumPins_Release
(
enum_pins
);
ref
=
IBaseFilter_Release
(
filter
);
ok
(
!
ref
,
"Got outstanding refcount %d.
\n
"
,
ref
);
}
START_TEST
(
nullrenderer
)
START_TEST
(
nullrenderer
)
{
{
IBaseFilter
*
filter
;
IBaseFilter
*
filter
;
...
@@ -188,6 +218,7 @@ START_TEST(nullrenderer)
...
@@ -188,6 +218,7 @@ START_TEST(nullrenderer)
test_interfaces
();
test_interfaces
();
test_enum_pins
();
test_enum_pins
();
test_find_pin
();
CoUninitialize
();
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