Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
594c4ea3
Commit
594c4ea3
authored
May 03, 2014
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
May 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dpnet/tests: Add IDirectPlay8Client tests.
parent
15ccfef0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
207 additions
and
0 deletions
+207
-0
Makefile.in
dlls/dpnet/tests/Makefile.in
+1
-0
client.c
dlls/dpnet/tests/client.c
+206
-0
No files found.
dlls/dpnet/tests/Makefile.in
View file @
594c4ea3
...
...
@@ -3,5 +3,6 @@ IMPORTS = dxguid uuid dpnet ole32
C_SRCS
=
\
address.c
\
client.c
\
peer.c
\
server.c
dlls/dpnet/tests/client.c
0 → 100644
View file @
594c4ea3
/*
* Copyright 2011 Louis Lenders
* Copyright 2014 Alistair Leslie-Hughes
*
* 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 WIN32_LEAN_AND_MEAN
#include <stdio.h>
#include <dplay8.h>
#include "wine/test.h"
static
IDirectPlay8Client
*
client
=
NULL
;
static
const
GUID
appguid
=
{
0xcd0c3d4b
,
0xe15e
,
0x4cf2
,
{
0x9e
,
0xa8
,
0x6e
,
0x1d
,
0x65
,
0x48
,
0xc5
,
0xa5
}
};
static
HRESULT
WINAPI
DirectPlayMessageHandler
(
PVOID
context
,
DWORD
message_id
,
PVOID
buffer
)
{
trace
(
"DirectPlayMessageHandler: 0x%08x
\n
"
,
message_id
);
return
S_OK
;
}
static
BOOL
test_init_dp
(
void
)
{
HRESULT
hr
;
hr
=
CoInitialize
(
0
);
ok
(
hr
==
S_OK
,
"CoInitialize failed with %x
\n
"
,
hr
);
hr
=
CoCreateInstance
(
&
CLSID_DirectPlay8Client
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IDirectPlay8Client
,
(
void
**
)
&
client
);
ok
(
hr
==
S_OK
,
"CoCreateInstance failed with 0x%x
\n
"
,
hr
);
hr
=
IDirectPlay8Client_Initialize
(
client
,
NULL
,
NULL
,
0
);
todo_wine
ok
(
hr
==
DPNERR_INVALIDPARAM
,
"got %x
\n
"
,
hr
);
hr
=
IDirectPlay8Client_Initialize
(
client
,
NULL
,
DirectPlayMessageHandler
,
0
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Client_Initialize failed with %x
\n
"
,
hr
);
return
client
!=
NULL
;
}
static
void
test_enum_service_providers
(
void
)
{
DPN_SERVICE_PROVIDER_INFO
*
serv_prov_info
;
DWORD
items
,
size
;
DWORD
i
;
HRESULT
hr
;
size
=
0
;
items
=
0
;
hr
=
IDirectPlay8Client_EnumServiceProviders
(
client
,
NULL
,
NULL
,
NULL
,
&
size
,
NULL
,
0
);
todo_wine
ok
(
hr
==
E_POINTER
,
"IDirectPlay8Client_EnumServiceProviders failed with %x
\n
"
,
hr
);
hr
=
IDirectPlay8Client_EnumServiceProviders
(
client
,
NULL
,
NULL
,
NULL
,
NULL
,
&
items
,
0
);
todo_wine
ok
(
hr
==
E_POINTER
,
"IDirectPlay8Client_EnumServiceProviders failed with %x
\n
"
,
hr
);
hr
=
IDirectPlay8Client_EnumServiceProviders
(
client
,
NULL
,
NULL
,
NULL
,
&
size
,
&
items
,
0
);
todo_wine
ok
(
hr
==
DPNERR_BUFFERTOOSMALL
,
"IDirectPlay8Client_EnumServiceProviders failed with %x
\n
"
,
hr
);
todo_wine
ok
(
size
!=
0
,
"size is unexpectedly 0
\n
"
);
serv_prov_info
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
hr
=
IDirectPlay8Client_EnumServiceProviders
(
client
,
NULL
,
NULL
,
serv_prov_info
,
&
size
,
&
items
,
0
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Client_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
[
i
].
pwszName
));
trace
(
"Found guid: %s
\n
"
,
wine_dbgstr_guid
(
&
serv_prov_info
[
i
].
guid
));
}
ok
(
HeapFree
(
GetProcessHeap
(),
0
,
serv_prov_info
),
"Failed freeing server provider info
\n
"
);
size
=
0
;
items
=
0
;
hr
=
IDirectPlay8Client_EnumServiceProviders
(
client
,
&
CLSID_DP8SP_TCPIP
,
NULL
,
NULL
,
&
size
,
&
items
,
0
);
todo_wine
ok
(
hr
==
DPNERR_BUFFERTOOSMALL
,
"IDirectPlay8Client_EnumServiceProviders failed with %x
\n
"
,
hr
);
todo_wine
ok
(
size
!=
0
,
"size is unexpectedly 0
\n
"
);
serv_prov_info
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
hr
=
IDirectPlay8Client_EnumServiceProviders
(
client
,
&
CLSID_DP8SP_TCPIP
,
NULL
,
serv_prov_info
,
&
size
,
&
items
,
0
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Client_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
[
i
].
pwszName
));
trace
(
"Found adapter guid: %s
\n
"
,
wine_dbgstr_guid
(
&
serv_prov_info
[
i
].
guid
));
}
ok
(
HeapFree
(
GetProcessHeap
(),
0
,
serv_prov_info
),
"Failed freeing server provider info
\n
"
);
}
static
void
test_enum_hosts
(
void
)
{
HRESULT
hr
;
IDirectPlay8Address
*
host
=
NULL
;
IDirectPlay8Address
*
local
=
NULL
;
DPN_APPLICATION_DESC
appdesc
;
DPNHANDLE
async
=
0
;
static
const
WCHAR
localhost
[]
=
{
'1'
,
'2'
,
'7'
,
'.'
,
'0'
,
'.'
,
'0'
,
'.'
,
'1'
,
0
};
memset
(
&
appdesc
,
0
,
sizeof
(
DPN_APPLICATION_DESC
)
);
appdesc
.
dwSize
=
sizeof
(
DPN_APPLICATION_DESC
);
appdesc
.
guidApplication
=
appguid
;
hr
=
CoCreateInstance
(
&
CLSID_DirectPlay8Address
,
NULL
,
CLSCTX_ALL
,
&
IID_IDirectPlay8Address
,
(
LPVOID
*
)
&
local
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Address failed with 0x%08x
\n
"
,
hr
);
hr
=
IDirectPlay8Address_SetSP
(
local
,
&
CLSID_DP8SP_TCPIP
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Address_SetSP failed with 0x%08x
\n
"
,
hr
);
hr
=
CoCreateInstance
(
&
CLSID_DirectPlay8Address
,
NULL
,
CLSCTX_ALL
,
&
IID_IDirectPlay8Address
,
(
LPVOID
*
)
&
host
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Address failed with 0x%08x
\n
"
,
hr
);
hr
=
IDirectPlay8Address_SetSP
(
host
,
&
CLSID_DP8SP_TCPIP
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Address_SetSP failed with 0x%08x
\n
"
,
hr
);
hr
=
IDirectPlay8Address_AddComponent
(
host
,
DPNA_KEY_HOSTNAME
,
localhost
,
sizeof
(
localhost
),
DPNA_DATATYPE_STRING
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Address failed with 0x%08x
\n
"
,
hr
);
/* Since we are running asynchronously, EnumHosts returns DPNSUCCESS_PENDING. */
hr
=
IDirectPlay8Client_EnumHosts
(
client
,
&
appdesc
,
host
,
local
,
NULL
,
0
,
INFINITE
,
0
,
INFINITE
,
NULL
,
&
async
,
0
);
todo_wine
ok
(
hr
==
DPNSUCCESS_PENDING
,
"IDirectPlay8Client_EnumServiceProviders failed with 0x%08x
\n
"
,
hr
);
todo_wine
ok
(
async
,
"No Handle returned
\n
"
);
hr
=
IDirectPlay8Client_CancelAsyncOperation
(
client
,
async
,
0
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Client_CancelAsyncOperation failed with 0x%08x
\n
"
,
hr
);
IDirectPlay8Address_Release
(
local
);
IDirectPlay8Address_Release
(
host
);
}
static
void
test_get_sp_caps
(
void
)
{
DPN_SP_CAPS
caps
;
HRESULT
hr
;
memset
(
&
caps
,
0
,
sizeof
(
DPN_SP_CAPS
));
hr
=
IDirectPlay8Client_GetSPCaps
(
client
,
&
CLSID_DP8SP_TCPIP
,
&
caps
,
0
);
todo_wine
ok
(
hr
==
DPNERR_INVALIDPARAM
,
"GetSPCaps unexpectedly returned %x
\n
"
,
hr
);
caps
.
dwSize
=
sizeof
(
DPN_SP_CAPS
);
hr
=
IDirectPlay8Client_GetSPCaps
(
client
,
&
CLSID_DP8SP_TCPIP
,
&
caps
,
0
);
ok
(
hr
==
DPN_OK
,
"GetSPCaps failed with %x
\n
"
,
hr
);
todo_wine
ok
((
caps
.
dwFlags
&
(
DPNSPCAPS_SUPPORTSDPNSRV
|
DPNSPCAPS_SUPPORTSBROADCAST
|
DPNSPCAPS_SUPPORTSALLADAPTERS
))
==
(
DPNSPCAPS_SUPPORTSDPNSRV
|
DPNSPCAPS_SUPPORTSBROADCAST
|
DPNSPCAPS_SUPPORTSALLADAPTERS
),
"unexpected flags %x
\n
"
,
caps
.
dwFlags
);
todo_wine
ok
(
caps
.
dwNumThreads
>=
3
,
"got %d
\n
"
,
caps
.
dwNumThreads
);
todo_wine
ok
(
caps
.
dwDefaultEnumCount
==
5
,
"expected 5, got %d
\n
"
,
caps
.
dwDefaultEnumCount
);
todo_wine
ok
(
caps
.
dwDefaultEnumRetryInterval
==
1500
,
"expected 1500, got %d
\n
"
,
caps
.
dwDefaultEnumRetryInterval
);
todo_wine
ok
(
caps
.
dwDefaultEnumTimeout
==
1500
,
"expected 1500, got %d
\n
"
,
caps
.
dwDefaultEnumTimeout
);
todo_wine
ok
(
caps
.
dwMaxEnumPayloadSize
==
983
,
"expected 983, got %d
\n
"
,
caps
.
dwMaxEnumPayloadSize
);
todo_wine
ok
(
caps
.
dwBuffersPerThread
==
1
,
"expected 1, got %d
\n
"
,
caps
.
dwBuffersPerThread
);
todo_wine
ok
(
caps
.
dwSystemBufferSize
==
0x10000
||
broken
(
caps
.
dwSystemBufferSize
==
0x2000
/* before Win8 */
),
"expected 0x10000, got 0x%x
\n
"
,
caps
.
dwSystemBufferSize
);
}
static
void
test_cleanup_dp
(
void
)
{
HRESULT
hr
;
hr
=
IDirectPlay8Client_Close
(
client
,
0
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Client_Close failed with %x
\n
"
,
hr
);
hr
=
IDirectPlay8Client_Release
(
client
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Client_Release failed with %x
\n
"
,
hr
);
CoUninitialize
();
}
START_TEST
(
client
)
{
if
(
!
test_init_dp
())
return
;
test_enum_service_providers
();
test_enum_hosts
();
test_get_sp_caps
();
test_cleanup_dp
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment