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
85ce2157
Commit
85ce2157
authored
Feb 21, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Feb 21, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests/filesource: Add some tests for IBaseFilter_FindPin().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b5cdfb31
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
0 deletions
+42
-0
filesource.c
dlls/quartz/tests/filesource.c
+42
-0
No files found.
dlls/quartz/tests/filesource.c
View file @
85ce2157
...
...
@@ -25,6 +25,8 @@
static
const
WCHAR
avifile
[]
=
{
't'
,
'e'
,
's'
,
't'
,
'.'
,
'a'
,
'v'
,
'i'
,
0
};
static
const
WCHAR
source_id
[]
=
{
'O'
,
'u'
,
't'
,
'p'
,
'u'
,
't'
,
0
};
static
IBaseFilter
*
create_file_source
(
void
)
{
IBaseFilter
*
filter
=
NULL
;
...
...
@@ -351,12 +353,52 @@ todo_wine
ok
(
ret
,
"Failed to delete file, error %u.
\n
"
,
GetLastError
());
}
static
void
test_find_pin
(
void
)
{
const
WCHAR
*
filename
=
load_resource
(
avifile
);
IBaseFilter
*
filter
=
create_file_source
();
IEnumPins
*
enumpins
;
IPin
*
pin
,
*
pin2
;
HRESULT
hr
;
ULONG
ref
;
BOOL
ret
;
hr
=
IBaseFilter_FindPin
(
filter
,
source_id
,
&
pin
);
ok
(
hr
==
VFW_E_NOT_FOUND
,
"Got hr %#x.
\n
"
,
hr
);
load_file
(
filter
,
filename
);
hr
=
IBaseFilter_FindPin
(
filter
,
source_id
,
&
pin
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
ref
=
get_refcount
(
filter
);
todo_wine
ok
(
ref
==
2
,
"Got unexpected refcount %d.
\n
"
,
ref
);
ref
=
get_refcount
(
pin
);
ok
(
ref
==
2
,
"Got unexpected refcount %d.
\n
"
,
ref
);
hr
=
IBaseFilter_EnumPins
(
filter
,
&
enumpins
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
hr
=
IEnumPins_Next
(
enumpins
,
1
,
&
pin2
,
NULL
);
ok
(
hr
==
S_OK
,
"Got hr %#x.
\n
"
,
hr
);
ok
(
pin
==
pin2
,
"Expected pin %p, got %p.
\n
"
,
pin
,
pin2
);
IPin_Release
(
pin2
);
IPin_Release
(
pin
);
IEnumPins_Release
(
enumpins
);
ref
=
IBaseFilter_Release
(
filter
);
ok
(
!
ref
,
"Got outstanding refcount %d.
\n
"
,
ref
);
ret
=
DeleteFileW
(
filename
);
ok
(
ret
,
"Failed to delete file, error %u.
\n
"
,
GetLastError
());
}
START_TEST
(
filesource
)
{
CoInitialize
(
NULL
);
test_interfaces
();
test_enum_pins
();
test_find_pin
();
test_file_source_filter
();
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