[v2 PATCH 3/3] mplat/test: Added MFCreateMediaType test

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Tue May 30 20:09:39 CDT 2017


v2 - No Changes

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
---
 dlls/mfplat/tests/mfplat.c | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/dlls/mfplat/tests/mfplat.c b/dlls/mfplat/tests/mfplat.c
index 83e1538686..bd81ae5d39 100644
--- a/dlls/mfplat/tests/mfplat.c
+++ b/dlls/mfplat/tests/mfplat.c
@@ -191,6 +191,33 @@ static void init_functions(void)
 #undef X
 }
 
+void test_MFCreateMediaType(void)
+{
+    HRESULT hr;
+    IMFMediaType *mediatype;
+
+    hr = MFStartup(MF_VERSION, MFSTARTUP_FULL);
+    todo_wine ok(hr == S_OK, "got 0x%08x\n", hr);
+
+if(0)
+{
+    /* Crash on Windows Vista/7 */
+    hr = MFCreateMediaType(NULL);
+    ok(hr == E_INVALIDARG, "got 0x%08x\n", hr);
+}
+
+    hr = MFCreateMediaType(&mediatype);
+    ok(hr == S_OK, "got 0x%08x\n", hr);
+
+    hr = IMFMediaType_SetGUID(mediatype, &MF_MT_MAJOR_TYPE, &MFMediaType_Video);
+    todo_wine ok(hr == S_OK, "got 0x%08x\n", hr);
+
+    IMFMediaType_Release(mediatype);
+
+    MFShutdown();
+}
+
+
 START_TEST(mfplat)
 {
     CoInitialize(NULL);
@@ -199,6 +226,7 @@ START_TEST(mfplat)
 
     test_register();
     test_source_resolver();
+    test_MFCreateMediaType();
 
     CoUninitialize();
 }
-- 
2.11.0




More information about the wine-patches mailing list