Zebediah Figura : quartz/tests: Add tests for IBaseFilter::FindPin() on the VMR9 filter.

Alexandre Julliard julliard at winehq.org
Thu Apr 4 15:38:08 CDT 2019


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

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Wed Apr  3 22:13:51 2019 -0500

quartz/tests: Add tests for IBaseFilter::FindPin() on the VMR9 filter.

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

---

 dlls/quartz/tests/vmr9.c | 65 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 65 insertions(+)

diff --git a/dlls/quartz/tests/vmr9.c b/dlls/quartz/tests/vmr9.c
index cbaf081..6df3470 100644
--- a/dlls/quartz/tests/vmr9.c
+++ b/dlls/quartz/tests/vmr9.c
@@ -386,6 +386,70 @@ static void test_enum_pins(void)
     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};
+    static const WCHAR inW[] = {'I','n',0};
+
+    WCHAR sink_id[] = {'V','M','R',' ','I','n','p','u','t','0',0};
+    IBaseFilter *filter = create_vmr9(0);
+    IEnumPins *enum_pins;
+    IPin *pin, *pin2;
+    HRESULT hr;
+    ULONG ref;
+
+    IBaseFilter_EnumPins(filter, &enum_pins);
+
+    hr = IBaseFilter_FindPin(filter, input_pinW, &pin);
+    ok(hr == VFW_E_NOT_FOUND, "Got hr %#x.\n", hr);
+
+    hr = IBaseFilter_FindPin(filter, inW, &pin);
+    ok(hr == VFW_E_NOT_FOUND, "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(pin == pin2, "Pins did not match.\n");
+    IPin_Release(pin);
+    IPin_Release(pin2);
+
+    sink_id[9] = '1';
+    hr = IBaseFilter_FindPin(filter, sink_id, &pin);
+    ok(hr == VFW_E_NOT_FOUND, "Got hr %#x.\n", hr);
+
+    if (SUCCEEDED(set_mixing_mode(filter)))
+    {
+        IEnumPins_Reset(enum_pins);
+
+        sink_id[9] = '0';
+        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(pin == pin2, "Pins did not match.\n");
+        IPin_Release(pin);
+        IPin_Release(pin2);
+
+        sink_id[9] = '1';
+        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(pin == pin2, "Pins did not match.\n");
+        IPin_Release(pin);
+        IPin_Release(pin2);
+
+        sink_id[9] = '2';
+        hr = IBaseFilter_FindPin(filter, sink_id, &pin);
+        ok(hr == VFW_E_NOT_FOUND, "Got hr %#x.\n", hr);
+    }
+
+    IEnumPins_Release(enum_pins);
+    ref = IBaseFilter_Release(filter);
+    ok(!ref, "Got outstanding refcount %d.\n", ref);
+}
+
 START_TEST(vmr9)
 {
     IBaseFilter *filter;
@@ -404,6 +468,7 @@ START_TEST(vmr9)
     test_filter_config();
     test_interfaces();
     test_enum_pins();
+    test_find_pin();
 
     CoUninitialize();
 }




More information about the wine-cvs mailing list