Michael Stefaniuc : dmcompos/tests: Add some basic IDirectMusicTrack8 tests.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Jun 25 08:19:40 CDT 2015


Module: wine
Branch: master
Commit: 1e421a26fbb458b3383d8df0e85b56ce8d40dc19
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=1e421a26fbb458b3383d8df0e85b56ce8d40dc19

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Thu Jun 25 00:39:44 2015 +0200

dmcompos/tests: Add some basic IDirectMusicTrack8 tests.

---

 dlls/dmcompos/tests/dmcompos.c | 75 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 75 insertions(+)

diff --git a/dlls/dmcompos/tests/dmcompos.c b/dlls/dmcompos/tests/dmcompos.c
index c4cf386..b0646a7 100644
--- a/dlls/dmcompos/tests/dmcompos.c
+++ b/dlls/dmcompos/tests/dmcompos.c
@@ -273,6 +273,42 @@ static void test_chordmaptrack(void)
             &IID_IDirectMusicTrack8, (void**)&dmt8);
     ok(hr == S_OK, "DirectMusicChordMapTrack create failed: %08x, expected S_OK\n", hr);
 
+    /* IDirectMusicTrack8 */
+    hr = IDirectMusicTrack8_Init(dmt8, NULL);
+    ok(hr == S_OK, "IDirectMusicTrack8_Init failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_InitPlay(dmt8, NULL, NULL, NULL, 0, 0);
+    ok(hr == S_OK, "IDirectMusicTrack8_InitPlay failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_EndPlay(dmt8, NULL);
+    ok(hr == S_OK, "IDirectMusicTrack8_EndPlay failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_Play(dmt8, NULL, 0, 0, 0, 0, NULL, NULL, 0);
+    ok(hr == S_OK, "IDirectMusicTrack8_Play failed: %08x\n", hr);
+    todo_wine {
+    hr = IDirectMusicTrack8_GetParam(dmt8, NULL, 0, NULL, NULL);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_GetParam failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_SetParam(dmt8, NULL, 0, NULL);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_SetParam failed: %08x\n", hr);
+    }
+    hr = IDirectMusicTrack8_IsParamSupported(dmt8, NULL);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_IsParamSupported failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_AddNotificationType(dmt8, NULL);
+    ok(hr == E_NOTIMPL, "IDirectMusicTrack8_AddNotificationType failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_RemoveNotificationType(dmt8, NULL);
+    ok(hr == E_NOTIMPL, "IDirectMusicTrack8_RemoveNotificationType failed: %08x\n", hr);
+    todo_wine {
+    hr = IDirectMusicTrack8_Clone(dmt8, 0, 0, NULL);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_Clone failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_PlayEx(dmt8, NULL, 0, 0, 0, 0, NULL, NULL, 0);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_PlayEx failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_GetParamEx(dmt8, NULL, 0, NULL, NULL, NULL, 0);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_GetParamEx failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_SetParamEx(dmt8, NULL, 0, NULL, NULL, 0);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_SetParamEx failed: %08x\n", hr);
+    }
+    hr = IDirectMusicTrack8_Compose(dmt8, NULL, 0, NULL);
+    ok(hr == E_NOTIMPL, "IDirectMusicTrack8_Compose failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_Join(dmt8, NULL, 0, NULL, 0, NULL);
+    todo_wine ok(hr == E_POINTER, "IDirectMusicTrack8_Join failed: %08x\n", hr);
+
     /* IPersistStream */
     hr = IDirectMusicTrack8_QueryInterface(dmt8, &IID_IPersistStream, (void**)&ps);
     ok(hr == S_OK, "QueryInterface for IID_IPersistStream failed: %08x\n", hr);
@@ -304,6 +340,45 @@ static void test_signposttrack(void)
             &IID_IDirectMusicTrack8, (void**)&dmt8);
     ok(hr == S_OK, "DirectMusicSignPostTrack create failed: %08x, expected S_OK\n", hr);
 
+    /* IDirectMusicTrack8 */
+    hr = IDirectMusicTrack8_Init(dmt8, NULL);
+    ok(hr == S_OK, "IDirectMusicTrack8_Init failed: %08x\n", hr);
+    if (0) {
+        /* Crashes on Windows */
+        hr = IDirectMusicTrack8_InitPlay(dmt8, NULL, NULL, NULL, 0, 0);
+        ok(hr == E_POINTER, "IDirectMusicTrack8_InitPlay failed: %08x\n", hr);
+    }
+    hr = IDirectMusicTrack8_EndPlay(dmt8, NULL);
+    ok(hr == S_OK, "IDirectMusicTrack8_EndPlay failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_Play(dmt8, NULL, 0, 0, 0, 0, NULL, NULL, 0);
+    ok(hr == S_OK, "IDirectMusicTrack8_Play failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_GetParam(dmt8, NULL, 0, NULL, NULL);
+    ok(hr == E_NOTIMPL, "IDirectMusicTrack8_GetParam failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_SetParam(dmt8, NULL, 0, NULL);
+    ok(hr == E_NOTIMPL, "IDirectMusicTrack8_SetParam failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_IsParamSupported(dmt8, NULL);
+    ok(hr == E_NOTIMPL, "IDirectMusicTrack8_IsParamSupported failed: %08x\n", hr);
+    todo_wine {
+    hr = IDirectMusicTrack8_AddNotificationType(dmt8, NULL);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_AddNotificationType failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_RemoveNotificationType(dmt8, NULL);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_RemoveNotificationType failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_Clone(dmt8, 0, 0, NULL);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_Clone failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_PlayEx(dmt8, NULL, 0, 0, 0, 0, NULL, NULL, 0);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_PlayEx failed: %08x\n", hr);
+    }
+    hr = IDirectMusicTrack8_GetParamEx(dmt8, NULL, 0, NULL, NULL, NULL, 0);
+    ok(hr == E_NOTIMPL, "IDirectMusicTrack8_GetParamEx failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_SetParamEx(dmt8, NULL, 0, NULL, NULL, 0);
+    ok(hr == E_NOTIMPL, "IDirectMusicTrack8_SetParamEx failed: %08x\n", hr);
+    todo_wine {
+    hr = IDirectMusicTrack8_Compose(dmt8, NULL, 0, NULL);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_Compose failed: %08x\n", hr);
+    hr = IDirectMusicTrack8_Join(dmt8, NULL, 0, NULL, 0, NULL);
+    ok(hr == E_POINTER, "IDirectMusicTrack8_Join failed: %08x\n", hr);
+    }
+
     /* IPersistStream */
     hr = IDirectMusicTrack8_QueryInterface(dmt8, &IID_IPersistStream, (void**)&ps);
     ok(hr == S_OK, "QueryInterface for IID_IPersistStream failed: %08x\n", hr);




More information about the wine-cvs mailing list