Zebediah Figura : quartz/tests/filesource: Add some tests for pin interfaces.

Alexandre Julliard julliard at winehq.org
Fri Feb 22 15:22:10 CST 2019


Module: wine
Branch: master
Commit: 59d46d62e678ec0894f6fb19b0ddaba524525f71
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=59d46d62e678ec0894f6fb19b0ddaba524525f71

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Thu Feb 21 18:42:59 2019 -0600

quartz/tests/filesource: Add some tests for pin interfaces.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/quartz/tests/filesource.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/dlls/quartz/tests/filesource.c b/dlls/quartz/tests/filesource.c
index 7330a83..d485211 100644
--- a/dlls/quartz/tests/filesource.c
+++ b/dlls/quartz/tests/filesource.c
@@ -97,7 +97,9 @@ static void check_interface_(unsigned int line, void *iface_ptr, REFIID iid, BOO
 
 static void test_interfaces(void)
 {
+    const WCHAR *filename = load_resource(avifile);
     IBaseFilter *filter = create_file_source();
+    IPin *pin;
 
     check_interface(filter, &IID_IBaseFilter, TRUE);
     check_interface(filter, &IID_IFileSourceFilter, TRUE);
@@ -115,6 +117,19 @@ static void test_interfaces(void)
     check_interface(filter, &IID_IReferenceClock, FALSE);
     check_interface(filter, &IID_IVideoWindow, FALSE);
 
+    load_file(filter, filename);
+    IBaseFilter_FindPin(filter, source_id, &pin);
+
+    check_interface(pin, &IID_IAsyncReader, TRUE);
+    check_interface(pin, &IID_IPin, TRUE);
+    todo_wine check_interface(pin, &IID_IQualityControl, TRUE);
+    check_interface(pin, &IID_IUnknown, TRUE);
+
+    check_interface(pin, &IID_IKsPropertySet, FALSE);
+    check_interface(pin, &IID_IMediaPosition, FALSE);
+    check_interface(pin, &IID_IMediaSeeking, FALSE);
+
+    IPin_Release(pin);
     IBaseFilter_Release(filter);
 }
 




More information about the wine-cvs mailing list