Louis Lenders : dpnet/tests: Add tests for IDirectPlay8Peer_EnumServiceProviders.

Alexandre Julliard julliard at winehq.org
Thu Sep 8 14:52:12 CDT 2011


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

Author: Louis Lenders <xerox_xerox2000 at yahoo.co.uk>
Date:   Mon Aug 29 22:56:35 2011 +0200

dpnet/tests: Add tests for IDirectPlay8Peer_EnumServiceProviders.

---

 configure                    |    1 +
 configure.ac                 |    1 +
 dlls/dpnet/tests/Makefile.in |    7 ++
 dlls/dpnet/tests/peer.c      |  135 ++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 144 insertions(+), 0 deletions(-)

diff --git a/configure b/configure
index 0379352..caef433 100755
--- a/configure
+++ b/configure
@@ -14800,6 +14800,7 @@ wine_fn_config_dll dplayx enable_dplayx implib
 wine_fn_config_test dlls/dplayx/tests dplayx_test
 wine_fn_config_dll dpnaddr enable_dpnaddr
 wine_fn_config_dll dpnet enable_dpnet implib
+wine_fn_config_test dlls/dpnet/tests dpnet_test
 wine_fn_config_dll dpnhpast enable_dpnhpast
 wine_fn_config_dll dpnlobby enable_dpnlobby
 wine_fn_config_dll dpwsockx enable_dpwsockx
diff --git a/configure.ac b/configure.ac
index 40ea431..e12fb37 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2493,6 +2493,7 @@ WINE_CONFIG_DLL(dplayx,,[implib])
 WINE_CONFIG_TEST(dlls/dplayx/tests)
 WINE_CONFIG_DLL(dpnaddr)
 WINE_CONFIG_DLL(dpnet,,[implib])
+WINE_CONFIG_TEST(dlls/dpnet/tests)
 WINE_CONFIG_DLL(dpnhpast)
 WINE_CONFIG_DLL(dpnlobby)
 WINE_CONFIG_DLL(dpwsockx)
diff --git a/dlls/dpnet/tests/Makefile.in b/dlls/dpnet/tests/Makefile.in
new file mode 100644
index 0000000..58d5c94
--- /dev/null
+++ b/dlls/dpnet/tests/Makefile.in
@@ -0,0 +1,7 @@
+TESTDLL   = dpnet.dll
+IMPORTS   = dpnet ole32
+
+C_SRCS = \
+	peer.c
+
+ at MAKE_TEST_RULES@
diff --git a/dlls/dpnet/tests/peer.c b/dlls/dpnet/tests/peer.c
new file mode 100644
index 0000000..afbea42
--- /dev/null
+++ b/dlls/dpnet/tests/peer.c
@@ -0,0 +1,135 @@
+/*
+ * Copyright 2011 Louis Lenders
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#define INITGUID
+#define WIN32_LEAN_AND_MEAN
+#include <stdio.h>
+
+#include <dplay8.h>
+#include "wine/test.h"
+
+static char *show_guid(const GUID *guid, char *buf)
+{
+    sprintf(buf,
+        "{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
+        guid->Data1, guid->Data2, guid->Data3,
+        guid->Data4[0], guid->Data4[1], guid->Data4[2], guid->Data4[3],
+        guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7]);
+
+    return buf;
+}
+
+static IDirectPlay8Peer* peer = NULL;
+
+static HRESULT WINAPI DirectPlayMessageHandler(PVOID context, DWORD message_id, PVOID buffer)
+{
+    return S_OK;
+}
+
+static void test_init_dp(void)
+{
+    HRESULT hr;
+
+    hr = CoInitialize(0);
+    ok(hr == S_OK, "CoInitialize failed with %x\n", hr);
+
+    hr = CoCreateInstance(&CLSID_DirectPlay8Peer, NULL, CLSCTX_INPROC_SERVER, &IID_IDirectPlay8Peer, (void **)&peer);
+    ok(hr == S_OK, "CoCreateInstance failed with 0x%x\n", hr);
+
+    hr = IDirectPlay8Peer_Initialize(peer, NULL, DirectPlayMessageHandler, 0);
+    todo_wine ok(hr == S_OK, "IDirectPlay8Peer_Initialize failed with %x\n", hr);
+}
+
+static void test_enum_service_providers(void)
+{
+    DPN_SERVICE_PROVIDER_INFO *serv_prov_info;
+    DWORD items, size;
+    DWORD i;
+    HRESULT hr;
+    char guid[39] ;
+
+    size = 0;
+    items = 0;
+
+    hr = IDirectPlay8Peer_EnumServiceProviders(peer, NULL, NULL, NULL, &size, &items, 0);
+    todo_wine ok(hr == DPNERR_BUFFERTOOSMALL, "IDirectPlay8Peer_EnumServiceProviders failed with %x\n", hr);
+    todo_wine ok(size != 0, "size is unexpectedly 0\n");
+
+    serv_prov_info = (DPN_SERVICE_PROVIDER_INFO*) HeapAlloc(GetProcessHeap(), 0, size);
+
+    hr = IDirectPlay8Peer_EnumServiceProviders(peer, NULL, NULL, serv_prov_info, &size, &items, 0);
+    todo_wine ok(hr == S_OK, "IDirectPlay8Peer_EnumServiceProviders failed with %x\n", hr);
+    todo_wine ok(items != 0, "Found unexpectedly no service providers\n");
+
+    trace("number of items found: %d\n", items);
+
+    for (i=0;i<items;i++)
+    {
+        trace("Found Service Provider: %s\n", wine_dbgstr_w(serv_prov_info->pwszName));
+        trace("Found guid: %s\n", show_guid(&serv_prov_info->guid, guid));
+
+        serv_prov_info++;
+    }
+
+    serv_prov_info -= items; /* set pointer back */
+    ok(HeapFree(GetProcessHeap(), 0, serv_prov_info), "Failed freeing server provider info\n");
+
+    size = 0;
+    items = 0;
+
+    hr = IDirectPlay8Peer_EnumServiceProviders(peer, &CLSID_DP8SP_TCPIP, NULL, NULL, &size, &items, 0);
+    todo_wine ok(hr == DPNERR_BUFFERTOOSMALL, "IDirectPlay8Peer_EnumServiceProviders failed with %x\n", hr);
+    todo_wine ok(size != 0, "size is unexpectedly 0\n");
+
+    serv_prov_info = (DPN_SERVICE_PROVIDER_INFO*) HeapAlloc(GetProcessHeap(), 0, size);
+
+    hr = IDirectPlay8Peer_EnumServiceProviders(peer, &CLSID_DP8SP_TCPIP, NULL, serv_prov_info, &size, &items, 0);
+    todo_wine ok(hr == S_OK, "IDirectPlay8Peer_EnumServiceProviders failed with %x\n", hr);
+    todo_wine ok(items != 0, "Found unexpectedly no adapter\n");
+
+    for (i=0;i<items;i++)
+    {
+        trace("Found adapter: %s\n", wine_dbgstr_w(serv_prov_info->pwszName));
+        trace("Found adapter guid: %s\n", show_guid(&serv_prov_info->guid, guid));
+
+        serv_prov_info++;
+    }
+
+    serv_prov_info -= items; /* set pointer back */
+    ok(HeapFree(GetProcessHeap(), 0, serv_prov_info), "Failed freeing server provider info\n");
+}
+
+static void test_cleanup_dp(void)
+{
+    HRESULT hr;
+
+    hr = IDirectPlay8Peer_Close(peer, 0);
+    ok(hr == S_OK, "IDirectPlay8Peer_Close failed with %x\n", hr);
+
+    hr = IDirectPlay8Peer_Release(peer);
+    ok(hr == S_OK, "IDirectPlay8Peer_Release failed with %x\n", hr);
+
+    CoUninitialize();
+}
+
+START_TEST(peer)
+{
+    test_init_dp();
+    test_enum_service_providers();
+    test_cleanup_dp();
+}




More information about the wine-cvs mailing list