2 * Unit test suite for rpc functions
4 * Copyright 2008 Robert Shearman (for CodeWeavers)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/test.h"
28 static RPC_STATUS (RPC_ENTRY
*pRpcAsyncInitializeHandle
)(PRPC_ASYNC_STATE
,unsigned int);
29 static RPC_STATUS (RPC_ENTRY
*pRpcAsyncGetCallStatus
)(PRPC_ASYNC_STATE
);
31 static void test_RpcAsyncInitializeHandle(void)
34 RPC_ASYNC_STATE async
;
39 status
= pRpcAsyncInitializeHandle((PRPC_ASYNC_STATE
)buffer
, sizeof(buffer
));
40 ok(status
== ERROR_INVALID_PARAMETER
, "RpcAsyncInitializeHandle with large Size should have returned ERROR_INVALID_PARAMETER instead of %d\n", status
);
42 status
= pRpcAsyncInitializeHandle(&async
, sizeof(async
) - 1);
43 ok(status
== ERROR_INVALID_PARAMETER
, "RpcAsyncInitializeHandle with small Size should have returned ERROR_INVALID_PARAMETER instead of %d\n", status
);
45 memset(&async
, 0xcc, sizeof(async
));
46 memset(&unset_ptr
, 0xcc, sizeof(unset_ptr
));
47 status
= pRpcAsyncInitializeHandle(&async
, sizeof(async
));
48 ok(status
== RPC_S_OK
, "RpcAsyncInitializeHandle failed with error %d\n", status
);
50 ok(async
.Size
== sizeof(async
), "async.Size wrong: %d\n", async
.Size
);
51 ok(async
.Signature
== 0x43595341, "async.Signature should be 0x43595341, but is 0x%x instead\n", async
.Signature
);
52 ok(async
.Lock
== 0, "async.Lock should be 0, but is %d instead\n", async
.Lock
);
53 ok(async
.Flags
== 0, "async.Flags should be 0, but is %d instead\n", async
.Flags
);
54 ok(async
.StubInfo
== NULL
, "async.StubInfo should be NULL, not %p\n", async
.StubInfo
);
55 ok(async
.UserInfo
== unset_ptr
, "async.UserInfo should be unset, not %p\n", async
.UserInfo
);
56 ok(async
.RuntimeInfo
== NULL
, "async.RuntimeInfo should be NULL, not %p\n", async
.RuntimeInfo
);
57 ok(async
.Event
== 0xcccccccc, "async.Event should be unset, not %d\n", async
.Event
);
58 ok(async
.NotificationType
== 0xcccccccc, "async.NotificationType should be unset, not %d\n", async
.NotificationType
);
59 for (i
= 0; i
< 4; i
++)
60 ok(async
.Reserved
[i
] == 0x0, "async.Reserved[%d] should be 0x0, not 0x%lx\n", i
, async
.Reserved
[i
]);
63 static void test_RpcAsyncGetCallStatus(void)
65 RPC_ASYNC_STATE async
;
68 status
= pRpcAsyncInitializeHandle(&async
, sizeof(async
));
69 ok(status
== RPC_S_OK
, "RpcAsyncInitializeHandle failed with error %d\n", status
);
71 status
= pRpcAsyncGetCallStatus(&async
);
73 ok(status
== RPC_S_INVALID_BINDING
, "RpcAsyncGetCallStatus should have returned RPC_S_INVALID_BINDING instead of %d\n", status
);
75 memset(&async
, 0, sizeof(async
));
76 status
= pRpcAsyncGetCallStatus(&async
);
78 ok(status
== RPC_S_INVALID_BINDING
, "RpcAsyncGetCallStatus should have returned RPC_S_INVALID_BINDING instead of %d\n", status
);
81 START_TEST( rpc_async
)
83 HMODULE hRpcRt4
= GetModuleHandleA("rpcrt4.dll");
84 pRpcAsyncInitializeHandle
= (void *)GetProcAddress(hRpcRt4
, "RpcAsyncInitializeHandle");
85 pRpcAsyncGetCallStatus
= (void *)GetProcAddress(hRpcRt4
, "RpcAsyncGetCallStatus");
86 if (!pRpcAsyncInitializeHandle
|| !pRpcAsyncGetCallStatus
)
88 win_skip("asynchronous functions not available\n");
91 test_RpcAsyncInitializeHandle();
92 test_RpcAsyncGetCallStatus();