From 2ce0b07d81cb58d7a37a64fa251fb888816246ad Mon Sep 17 00:00:00 2001 From: Louis Lenders Date: Mon, 29 Aug 2011 22:56:35 +0200 Subject: dpnet/tests: Add tests for IDirectPlay8Peer_EnumServiceProviders --- configure.ac | 1 + dlls/dpnet/tests/Makefile.in | 6 + dlls/dpnet/tests/peer.c | 156 ++++++++ 3 files changed, 567 insertions(+), 426 deletions(-) create mode 100644 dlls/dpnet/tests/Makefile.in create mode 100644 dlls/dpnet/tests/peer.c diff --git a/configure.ac b/configure.ac index ae89108..f350d91 100644 --- a/configure.ac +++ b/configure.ac @@ -2494,6 +2494,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..5fcaaa6 --- /dev/null +++ b/dlls/dpnet/tests/Makefile.in @@ -0,0 +1,6 @@ +TESTDLL = dpnet.dll +IMPORTS = dpnet ole32 + +C_SRCS = \ + peer.c +@MAKE_TEST_RULES@ diff --git a/dlls/dpnet/tests/peer.c b/dlls/dpnet/tests/peer.c new file mode 100644 index 0000000..26a559b --- /dev/null +++ b/dlls/dpnet/tests/peer.c @@ -0,0 +1,156 @@ +/* + * 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 + +#include +#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; +} + +HRESULT WINAPI DirectPlayMessageHandler(PVOID context, DWORD message_id, PVOID buffer); + +static HMODULE dpnet; +IDirectPlay8Peer* peer = NULL; + +HRESULT WINAPI DirectPlayMessageHandler(PVOID context, DWORD message_id, PVOID buffer) +{ + return S_OK; +} + +static BOOL test_init_module(void) +{ + dpnet = LoadLibraryA("dpnet.dll"); + + if (!dpnet) + { + win_skip("dpnet.dll not available\n"); + return FALSE; + } + + return TRUE; +} + +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;ipwszName)); + 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;ipwszName)); + 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) +{ + if (!test_init_module()) + return; + + test_init_dp(); + test_enum_service_providers(); + test_cleanup_dp(); + + FreeLibrary(dpnet); +} -- 1.7.4.1