push 6495605bb529da27066f1c178d57d902552737a0
[wine/hacks.git] / dlls / ole32 / tests / marshal.c
blobfba8b14dac1afb90c64d7a5f1c5856e6ea2481c1
1 /*
2 * Marshaling Tests
4 * Copyright 2004 Robert Shearman
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
21 #define _WIN32_DCOM
22 #define COBJMACROS
23 #define CONST_VTABLE
25 #include <stdarg.h>
26 #include <stdio.h>
28 #include "windef.h"
29 #include "winbase.h"
30 #include "initguid.h"
31 #include "objbase.h"
32 #include "olectl.h"
33 #include "shlguid.h"
34 #include "shobjidl.h"
36 #include "wine/test.h"
38 DEFINE_GUID(CLSID_StdGlobalInterfaceTable,0x00000323,0x0000,0x0000,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46);
40 /* functions that are not present on all versions of Windows */
41 HRESULT (WINAPI * pCoInitializeEx)(LPVOID lpReserved, DWORD dwCoInit);
43 /* helper macros to make tests a bit leaner */
44 #define ok_more_than_one_lock() ok(cLocks > 0, "Number of locks should be > 0, but actually is %d\n", cLocks)
45 #define ok_no_locks() ok(cLocks == 0, "Number of locks should be 0, but actually is %d\n", cLocks)
46 #define ok_ole_success(hr, func) ok(hr == S_OK, #func " failed with error 0x%08x\n", hr)
48 static const IID IID_IWineTest =
50 0x5201163f,
51 0x8164,
52 0x4fd0,
53 {0xa1, 0xa2, 0x5d, 0x5a, 0x36, 0x54, 0xd3, 0xbd}
54 }; /* 5201163f-8164-4fd0-a1a2-5d5a3654d3bd */
56 static const IID IID_IRemUnknown =
58 0x00000131,
59 0x0000,
60 0x0000,
61 {0xc0,0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46}
64 #define EXTENTID_WineTest IID_IWineTest
65 #define CLSID_WineTest IID_IWineTest
67 static const CLSID CLSID_WineOOPTest =
69 0x5201163f,
70 0x8164,
71 0x4fd0,
72 {0xa1, 0xa2, 0x5d, 0x5a, 0x36, 0x54, 0xd3, 0xbd}
73 }; /* 5201163f-8164-4fd0-a1a2-5d5a3654d3bd */
75 static void test_cocreateinstance_proxy(void)
77 IUnknown *pProxy;
78 IMultiQI *pMQI;
79 HRESULT hr;
81 pCoInitializeEx(NULL, COINIT_MULTITHREADED);
83 hr = CoCreateInstance(&CLSID_ShellDesktop, NULL, CLSCTX_INPROC, &IID_IUnknown, (void **)&pProxy);
84 ok_ole_success(hr, CoCreateInstance);
85 hr = IUnknown_QueryInterface(pProxy, &IID_IMultiQI, (void **)&pMQI);
86 ok(hr == S_OK, "created object is not a proxy, so was created in the wrong apartment\n");
87 if (hr == S_OK)
88 IMultiQI_Release(pMQI);
89 IUnknown_Release(pProxy);
91 CoUninitialize();
94 static const LARGE_INTEGER ullZero;
95 static LONG cLocks;
97 static void LockModule(void)
99 InterlockedIncrement(&cLocks);
102 static void UnlockModule(void)
104 InterlockedDecrement(&cLocks);
108 static HRESULT WINAPI Test_IUnknown_QueryInterface(
109 LPUNKNOWN iface,
110 REFIID riid,
111 LPVOID *ppvObj)
113 if (ppvObj == NULL) return E_POINTER;
115 if (IsEqualGUID(riid, &IID_IUnknown))
117 *ppvObj = (LPVOID)iface;
118 IUnknown_AddRef(iface);
119 return S_OK;
122 *ppvObj = NULL;
123 return E_NOINTERFACE;
126 static ULONG WINAPI Test_IUnknown_AddRef(LPUNKNOWN iface)
128 LockModule();
129 return 2; /* non-heap-based object */
132 static ULONG WINAPI Test_IUnknown_Release(LPUNKNOWN iface)
134 UnlockModule();
135 return 1; /* non-heap-based object */
138 static const IUnknownVtbl TestUnknown_Vtbl =
140 Test_IUnknown_QueryInterface,
141 Test_IUnknown_AddRef,
142 Test_IUnknown_Release,
145 static IUnknown Test_Unknown = { &TestUnknown_Vtbl };
148 static HRESULT WINAPI Test_IClassFactory_QueryInterface(
149 LPCLASSFACTORY iface,
150 REFIID riid,
151 LPVOID *ppvObj)
153 if (ppvObj == NULL) return E_POINTER;
155 if (IsEqualGUID(riid, &IID_IUnknown) ||
156 IsEqualGUID(riid, &IID_IClassFactory) ||
157 /* the only other interface Wine is currently able to marshal (for testing two proxies) */
158 IsEqualGUID(riid, &IID_IRemUnknown))
160 *ppvObj = (LPVOID)iface;
161 IClassFactory_AddRef(iface);
162 return S_OK;
165 *ppvObj = NULL;
166 return E_NOINTERFACE;
169 static ULONG WINAPI Test_IClassFactory_AddRef(LPCLASSFACTORY iface)
171 LockModule();
172 return 2; /* non-heap-based object */
175 static ULONG WINAPI Test_IClassFactory_Release(LPCLASSFACTORY iface)
177 UnlockModule();
178 return 1; /* non-heap-based object */
181 static HRESULT WINAPI Test_IClassFactory_CreateInstance(
182 LPCLASSFACTORY iface,
183 LPUNKNOWN pUnkOuter,
184 REFIID riid,
185 LPVOID *ppvObj)
187 if (pUnkOuter) return CLASS_E_NOAGGREGATION;
188 return IUnknown_QueryInterface((IUnknown*)&Test_Unknown, riid, ppvObj);
191 static HRESULT WINAPI Test_IClassFactory_LockServer(
192 LPCLASSFACTORY iface,
193 BOOL fLock)
195 return S_OK;
198 static const IClassFactoryVtbl TestClassFactory_Vtbl =
200 Test_IClassFactory_QueryInterface,
201 Test_IClassFactory_AddRef,
202 Test_IClassFactory_Release,
203 Test_IClassFactory_CreateInstance,
204 Test_IClassFactory_LockServer
207 static IClassFactory Test_ClassFactory = { &TestClassFactory_Vtbl };
209 #define RELEASEMARSHALDATA WM_USER
211 struct host_object_data
213 IStream *stream;
214 IID iid;
215 IUnknown *object;
216 MSHLFLAGS marshal_flags;
217 HANDLE marshal_event;
218 IMessageFilter *filter;
221 static DWORD CALLBACK host_object_proc(LPVOID p)
223 struct host_object_data *data = (struct host_object_data *)p;
224 HRESULT hr;
225 MSG msg;
227 pCoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
229 if (data->filter)
231 IMessageFilter * prev_filter = NULL;
232 hr = CoRegisterMessageFilter(data->filter, &prev_filter);
233 if (prev_filter) IMessageFilter_Release(prev_filter);
234 ok_ole_success(hr, CoRegisterMessageFilter);
237 hr = CoMarshalInterface(data->stream, &data->iid, data->object, MSHCTX_INPROC, NULL, data->marshal_flags);
238 ok_ole_success(hr, CoMarshalInterface);
240 /* force the message queue to be created before signaling parent thread */
241 PeekMessage(&msg, NULL, WM_USER, WM_USER, PM_NOREMOVE);
243 SetEvent(data->marshal_event);
245 while (GetMessage(&msg, NULL, 0, 0))
247 if (msg.hwnd == NULL && msg.message == RELEASEMARSHALDATA)
249 CoReleaseMarshalData(data->stream);
250 SetEvent((HANDLE)msg.lParam);
252 else
253 DispatchMessage(&msg);
256 HeapFree(GetProcessHeap(), 0, data);
258 CoUninitialize();
260 return hr;
263 static DWORD start_host_object2(IStream *stream, REFIID riid, IUnknown *object, MSHLFLAGS marshal_flags, IMessageFilter *filter, HANDLE *thread)
265 DWORD tid = 0;
266 HANDLE marshal_event = CreateEvent(NULL, FALSE, FALSE, NULL);
267 struct host_object_data *data = HeapAlloc(GetProcessHeap(), 0, sizeof(*data));
269 data->stream = stream;
270 data->iid = *riid;
271 data->object = object;
272 data->marshal_flags = marshal_flags;
273 data->marshal_event = marshal_event;
274 data->filter = filter;
276 *thread = CreateThread(NULL, 0, host_object_proc, data, 0, &tid);
278 /* wait for marshaling to complete before returning */
279 WaitForSingleObject(marshal_event, INFINITE);
280 CloseHandle(marshal_event);
282 return tid;
285 static DWORD start_host_object(IStream *stream, REFIID riid, IUnknown *object, MSHLFLAGS marshal_flags, HANDLE *thread)
287 return start_host_object2(stream, riid, object, marshal_flags, NULL, thread);
290 /* asks thread to release the marshal data because it has to be done by the
291 * same thread that marshaled the interface in the first place. */
292 static void release_host_object(DWORD tid)
294 HANDLE event = CreateEvent(NULL, FALSE, FALSE, NULL);
295 PostThreadMessage(tid, RELEASEMARSHALDATA, 0, (LPARAM)event);
296 WaitForSingleObject(event, INFINITE);
297 CloseHandle(event);
300 static void end_host_object(DWORD tid, HANDLE thread)
302 BOOL ret = PostThreadMessage(tid, WM_QUIT, 0, 0);
303 ok(ret, "PostThreadMessage failed with error %d\n", GetLastError());
304 /* be careful of races - don't return until hosting thread has terminated */
305 WaitForSingleObject(thread, INFINITE);
306 CloseHandle(thread);
309 /* tests failure case of interface not having a marshaler specified in the
310 * registry */
311 static void test_no_marshaler(void)
313 IStream *pStream;
314 HRESULT hr;
316 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
317 ok_ole_success(hr, CreateStreamOnHGlobal);
318 hr = CoMarshalInterface(pStream, &IID_IWineTest, (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
319 ok(hr == E_NOINTERFACE, "CoMarshalInterface should have returned E_NOINTERFACE instead of 0x%08x\n", hr);
321 IStream_Release(pStream);
324 /* tests normal marshal and then release without unmarshaling */
325 static void test_normal_marshal_and_release(void)
327 HRESULT hr;
328 IStream *pStream = NULL;
330 cLocks = 0;
332 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
333 ok_ole_success(hr, CreateStreamOnHGlobal);
334 hr = CoMarshalInterface(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
335 ok_ole_success(hr, CoMarshalInterface);
337 ok_more_than_one_lock();
339 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
340 hr = CoReleaseMarshalData(pStream);
341 ok_ole_success(hr, CoReleaseMarshalData);
342 IStream_Release(pStream);
344 ok_no_locks();
347 /* tests success case of a same-thread marshal and unmarshal */
348 static void test_normal_marshal_and_unmarshal(void)
350 HRESULT hr;
351 IStream *pStream = NULL;
352 IUnknown *pProxy = NULL;
354 cLocks = 0;
356 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
357 ok_ole_success(hr, CreateStreamOnHGlobal);
358 hr = CoMarshalInterface(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
359 ok_ole_success(hr, CoMarshalInterface);
361 ok_more_than_one_lock();
363 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
364 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
365 ok_ole_success(hr, CoUnmarshalInterface);
366 IStream_Release(pStream);
368 ok_more_than_one_lock();
370 IUnknown_Release(pProxy);
372 ok_no_locks();
375 /* tests failure case of unmarshaling a freed object */
376 static void test_marshal_and_unmarshal_invalid(void)
378 HRESULT hr;
379 IStream *pStream = NULL;
380 IClassFactory *pProxy = NULL;
381 DWORD tid;
382 void * dummy;
383 HANDLE thread;
385 cLocks = 0;
387 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
388 ok_ole_success(hr, CreateStreamOnHGlobal);
389 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
391 ok_more_than_one_lock();
393 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
394 hr = CoReleaseMarshalData(pStream);
395 ok_ole_success(hr, CoReleaseMarshalData);
397 ok_no_locks();
399 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
400 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
401 todo_wine { ok_ole_success(hr, CoUnmarshalInterface); }
403 ok_no_locks();
405 if (pProxy)
407 hr = IClassFactory_CreateInstance(pProxy, NULL, &IID_IUnknown, &dummy);
408 ok(hr == RPC_E_DISCONNECTED, "Remote call should have returned RPC_E_DISCONNECTED, instead of 0x%08x\n", hr);
410 IClassFactory_Release(pProxy);
413 IStream_Release(pStream);
415 end_host_object(tid, thread);
418 static void test_same_apartment_unmarshal_failure(void)
420 HRESULT hr;
421 IStream *pStream;
422 IUnknown *pProxy;
423 static const LARGE_INTEGER llZero;
425 cLocks = 0;
427 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
428 ok_ole_success(hr, CreateStreamOnHGlobal);
430 hr = CoMarshalInterface(pStream, &IID_IUnknown, (IUnknown *)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
431 ok_ole_success(hr, CoMarshalInterface);
433 ok_more_than_one_lock();
435 hr = IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
436 ok_ole_success(hr, IStream_Seek);
438 hr = CoUnmarshalInterface(pStream, &IID_IParseDisplayName, (void **)&pProxy);
439 ok(hr == E_NOINTERFACE, "CoUnmarshalInterface should have returned E_NOINTERFACE instead of 0x%08x\n", hr);
441 ok_no_locks();
443 IStream_Release(pStream);
446 /* tests success case of an interthread marshal */
447 static void test_interthread_marshal_and_unmarshal(void)
449 HRESULT hr;
450 IStream *pStream = NULL;
451 IUnknown *pProxy = NULL;
452 DWORD tid;
453 HANDLE thread;
455 cLocks = 0;
457 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
458 ok_ole_success(hr, CreateStreamOnHGlobal);
459 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
461 ok_more_than_one_lock();
463 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
464 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
465 ok_ole_success(hr, CoUnmarshalInterface);
466 IStream_Release(pStream);
468 ok_more_than_one_lock();
470 IUnknown_Release(pProxy);
472 ok_no_locks();
474 end_host_object(tid, thread);
477 /* the number of external references that Wine's proxy manager normally gives
478 * out, so we can test the border case of running out of references */
479 #define NORMALEXTREFS 5
481 /* tests success case of an interthread marshal and then marshaling the proxy */
482 static void test_proxy_marshal_and_unmarshal(void)
484 HRESULT hr;
485 IStream *pStream = NULL;
486 IUnknown *pProxy = NULL;
487 IUnknown *pProxy2 = NULL;
488 DWORD tid;
489 HANDLE thread;
490 int i;
492 cLocks = 0;
494 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
495 ok_ole_success(hr, CreateStreamOnHGlobal);
496 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
498 ok_more_than_one_lock();
500 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
501 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
502 ok_ole_success(hr, CoUnmarshalInterface);
504 ok_more_than_one_lock();
506 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
507 /* marshal the proxy */
508 hr = CoMarshalInterface(pStream, &IID_IClassFactory, pProxy, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
509 ok_ole_success(hr, CoMarshalInterface);
511 ok_more_than_one_lock();
513 /* marshal 5 more times to exhaust the normal external references of 5 */
514 for (i = 0; i < NORMALEXTREFS; i++)
516 hr = CoMarshalInterface(pStream, &IID_IClassFactory, pProxy, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
517 ok_ole_success(hr, CoMarshalInterface);
520 ok_more_than_one_lock();
522 /* release the original proxy to test that we successfully keep the
523 * original object alive */
524 IUnknown_Release(pProxy);
526 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
527 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy2);
528 ok_ole_success(hr, CoUnmarshalInterface);
530 ok_more_than_one_lock();
532 IUnknown_Release(pProxy2);
534 /* unmarshal all of the proxies to check that the object stub still exists */
535 for (i = 0; i < NORMALEXTREFS; i++)
537 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy2);
538 ok_ole_success(hr, CoUnmarshalInterface);
540 IUnknown_Release(pProxy2);
543 ok_no_locks();
545 IStream_Release(pStream);
547 end_host_object(tid, thread);
550 /* tests success case of an interthread marshal and then marshaling the proxy
551 * using an iid that hasn't previously been unmarshaled */
552 static void test_proxy_marshal_and_unmarshal2(void)
554 HRESULT hr;
555 IStream *pStream = NULL;
556 IUnknown *pProxy = NULL;
557 IUnknown *pProxy2 = NULL;
558 DWORD tid;
559 HANDLE thread;
561 cLocks = 0;
563 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
564 ok_ole_success(hr, CreateStreamOnHGlobal);
565 tid = start_host_object(pStream, &IID_IUnknown, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
567 ok_more_than_one_lock();
569 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
570 hr = CoUnmarshalInterface(pStream, &IID_IUnknown, (void **)&pProxy);
571 ok_ole_success(hr, CoUnmarshalInterface);
573 ok_more_than_one_lock();
575 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
576 /* marshal the proxy */
577 hr = CoMarshalInterface(pStream, &IID_IClassFactory, pProxy, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
578 ok_ole_success(hr, CoMarshalInterface);
580 ok_more_than_one_lock();
582 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
583 /* unmarshal the second proxy to the object */
584 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy2);
585 ok_ole_success(hr, CoUnmarshalInterface);
586 IStream_Release(pStream);
588 /* now the proxies should be as follows:
589 * pProxy -> &Test_ClassFactory
590 * pProxy2 -> &Test_ClassFactory
591 * they should NOT be as follows:
592 * pProxy -> &Test_ClassFactory
593 * pProxy2 -> pProxy
594 * the above can only really be tested by looking in +ole traces
597 ok_more_than_one_lock();
599 IUnknown_Release(pProxy);
601 ok_more_than_one_lock();
603 IUnknown_Release(pProxy2);
605 ok_no_locks();
607 end_host_object(tid, thread);
610 /* tests success case of an interthread marshal and then table-weak-marshaling the proxy */
611 static void test_proxy_marshal_and_unmarshal_weak(void)
613 HRESULT hr;
614 IStream *pStream = NULL;
615 IUnknown *pProxy = NULL;
616 IUnknown *pProxy2 = NULL;
617 DWORD tid;
618 HANDLE thread;
620 cLocks = 0;
622 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
623 ok_ole_success(hr, CreateStreamOnHGlobal);
624 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
626 ok_more_than_one_lock();
628 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
629 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
630 ok_ole_success(hr, CoUnmarshalInterface);
632 ok_more_than_one_lock();
634 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
635 /* marshal the proxy */
636 hr = CoMarshalInterface(pStream, &IID_IClassFactory, pProxy, MSHCTX_INPROC, NULL, MSHLFLAGS_TABLEWEAK);
637 ok_ole_success(hr, CoMarshalInterface);
639 ok_more_than_one_lock();
641 /* release the original proxy to test that we successfully keep the
642 * original object alive */
643 IUnknown_Release(pProxy);
645 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
646 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy2);
647 todo_wine
648 ok(hr == CO_E_OBJNOTREG, "CoUnmarshalInterface should return CO_E_OBJNOTREG instead of 0x%08x\n", hr);
650 ok_no_locks();
652 IStream_Release(pStream);
654 end_host_object(tid, thread);
657 /* tests success case of an interthread marshal and then table-strong-marshaling the proxy */
658 static void test_proxy_marshal_and_unmarshal_strong(void)
660 HRESULT hr;
661 IStream *pStream = NULL;
662 IUnknown *pProxy = NULL;
663 IUnknown *pProxy2 = NULL;
664 DWORD tid;
665 HANDLE thread;
667 cLocks = 0;
669 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
670 ok_ole_success(hr, CreateStreamOnHGlobal);
671 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
673 ok_more_than_one_lock();
675 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
676 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
677 ok_ole_success(hr, CoUnmarshalInterface);
679 ok_more_than_one_lock();
681 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
682 /* marshal the proxy */
683 hr = CoMarshalInterface(pStream, &IID_IClassFactory, pProxy, MSHCTX_INPROC, NULL, MSHLFLAGS_TABLESTRONG);
684 ok(hr == S_OK /* WinNT */ || hr == E_INVALIDARG /* Win9x */,
685 "CoMarshalInterface should have return S_OK or E_INVALIDARG instead of 0x%08x\n", hr);
686 if (FAILED(hr))
688 IUnknown_Release(pProxy);
689 goto end;
692 ok_more_than_one_lock();
694 /* release the original proxy to test that we successfully keep the
695 * original object alive */
696 IUnknown_Release(pProxy);
698 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
699 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy2);
700 ok_ole_success(hr, CoUnmarshalInterface);
702 ok_more_than_one_lock();
704 IUnknown_Release(pProxy2);
706 ok_more_than_one_lock();
708 end:
709 IStream_Release(pStream);
711 end_host_object(tid, thread);
713 ok_no_locks();
716 /* tests that stubs are released when the containing apartment is destroyed */
717 static void test_marshal_stub_apartment_shutdown(void)
719 HRESULT hr;
720 IStream *pStream = NULL;
721 IUnknown *pProxy = NULL;
722 DWORD tid;
723 HANDLE thread;
725 cLocks = 0;
727 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
728 ok_ole_success(hr, CreateStreamOnHGlobal);
729 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
731 ok_more_than_one_lock();
733 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
734 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
735 ok_ole_success(hr, CoUnmarshalInterface);
736 IStream_Release(pStream);
738 ok_more_than_one_lock();
740 end_host_object(tid, thread);
742 ok_no_locks();
744 IUnknown_Release(pProxy);
746 ok_no_locks();
749 /* tests that proxies are released when the containing apartment is destroyed */
750 static void test_marshal_proxy_apartment_shutdown(void)
752 HRESULT hr;
753 IStream *pStream = NULL;
754 IUnknown *pProxy = NULL;
755 DWORD tid;
756 HANDLE thread;
758 cLocks = 0;
760 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
761 ok_ole_success(hr, CreateStreamOnHGlobal);
762 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
764 ok_more_than_one_lock();
766 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
767 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
768 ok_ole_success(hr, CoUnmarshalInterface);
769 IStream_Release(pStream);
771 ok_more_than_one_lock();
773 CoUninitialize();
775 ok_no_locks();
777 IUnknown_Release(pProxy);
779 ok_no_locks();
781 end_host_object(tid, thread);
783 pCoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
786 /* tests that proxies are released when the containing mta apartment is destroyed */
787 static void test_marshal_proxy_mta_apartment_shutdown(void)
789 HRESULT hr;
790 IStream *pStream = NULL;
791 IUnknown *pProxy = NULL;
792 DWORD tid;
793 HANDLE thread;
795 CoUninitialize();
796 pCoInitializeEx(NULL, COINIT_MULTITHREADED);
798 cLocks = 0;
800 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
801 ok_ole_success(hr, CreateStreamOnHGlobal);
802 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
804 ok_more_than_one_lock();
806 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
807 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
808 ok_ole_success(hr, CoUnmarshalInterface);
809 IStream_Release(pStream);
811 ok_more_than_one_lock();
813 CoUninitialize();
815 ok_no_locks();
817 IUnknown_Release(pProxy);
819 ok_no_locks();
821 end_host_object(tid, thread);
823 pCoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
826 struct ncu_params
828 LPSTREAM stream;
829 HANDLE marshal_event;
830 HANDLE unmarshal_event;
833 /* helper for test_no_couninitialize_server */
834 static DWORD CALLBACK no_couninitialize_server_proc(LPVOID p)
836 struct ncu_params *ncu_params = (struct ncu_params *)p;
837 HRESULT hr;
839 pCoInitializeEx(NULL, COINIT_MULTITHREADED);
841 hr = CoMarshalInterface(ncu_params->stream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
842 ok_ole_success(hr, CoMarshalInterface);
844 SetEvent(ncu_params->marshal_event);
846 WaitForSingleObject(ncu_params->unmarshal_event, INFINITE);
848 /* die without calling CoUninitialize */
850 return 0;
853 /* tests apartment that an apartment with a stub is released without deadlock
854 * if the owning thread exits */
855 static void test_no_couninitialize_server(void)
857 HRESULT hr;
858 IStream *pStream = NULL;
859 IUnknown *pProxy = NULL;
860 DWORD tid;
861 HANDLE thread;
862 struct ncu_params ncu_params;
864 cLocks = 0;
866 ncu_params.marshal_event = CreateEvent(NULL, TRUE, FALSE, NULL);
867 ncu_params.unmarshal_event = CreateEvent(NULL, TRUE, FALSE, NULL);
869 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
870 ok_ole_success(hr, CreateStreamOnHGlobal);
871 ncu_params.stream = pStream;
873 thread = CreateThread(NULL, 0, no_couninitialize_server_proc, &ncu_params, 0, &tid);
875 WaitForSingleObject(ncu_params.marshal_event, INFINITE);
876 ok_more_than_one_lock();
878 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
879 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
880 ok_ole_success(hr, CoUnmarshalInterface);
881 IStream_Release(pStream);
883 ok_more_than_one_lock();
885 SetEvent(ncu_params.unmarshal_event);
886 WaitForSingleObject(thread, INFINITE);
888 ok_no_locks();
890 CloseHandle(thread);
891 CloseHandle(ncu_params.marshal_event);
892 CloseHandle(ncu_params.unmarshal_event);
894 IUnknown_Release(pProxy);
896 ok_no_locks();
899 /* STA -> STA call during DLL_THREAD_DETACH */
900 static DWORD CALLBACK no_couninitialize_client_proc(LPVOID p)
902 struct ncu_params *ncu_params = (struct ncu_params *)p;
903 HRESULT hr;
904 IUnknown *pProxy = NULL;
906 pCoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
908 hr = CoUnmarshalInterface(ncu_params->stream, &IID_IClassFactory, (void **)&pProxy);
909 ok_ole_success(hr, CoUnmarshalInterface);
910 IStream_Release(ncu_params->stream);
912 ok_more_than_one_lock();
914 /* die without calling CoUninitialize */
916 return 0;
919 /* tests STA -> STA call during DLL_THREAD_DETACH doesn't deadlock */
920 static void test_no_couninitialize_client(void)
922 HRESULT hr;
923 IStream *pStream = NULL;
924 DWORD tid;
925 DWORD host_tid;
926 HANDLE thread;
927 HANDLE host_thread;
928 struct ncu_params ncu_params;
930 cLocks = 0;
932 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
933 ok_ole_success(hr, CreateStreamOnHGlobal);
934 ncu_params.stream = pStream;
936 /* NOTE: assumes start_host_object uses an STA to host the object, as MTAs
937 * always deadlock when called from within DllMain */
938 host_tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown *)&Test_ClassFactory, MSHLFLAGS_NORMAL, &host_thread);
939 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
941 ok_more_than_one_lock();
943 thread = CreateThread(NULL, 0, no_couninitialize_client_proc, &ncu_params, 0, &tid);
945 WaitForSingleObject(thread, INFINITE);
946 CloseHandle(thread);
948 ok_no_locks();
950 end_host_object(host_tid, host_thread);
953 /* tests success case of a same-thread table-weak marshal, unmarshal, unmarshal */
954 static void test_tableweak_marshal_and_unmarshal_twice(void)
956 HRESULT hr;
957 IStream *pStream = NULL;
958 IUnknown *pProxy1 = NULL;
959 IUnknown *pProxy2 = NULL;
960 DWORD tid;
961 HANDLE thread;
963 cLocks = 0;
965 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
966 ok_ole_success(hr, CreateStreamOnHGlobal);
967 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_TABLEWEAK, &thread);
969 ok_more_than_one_lock();
971 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
972 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy1);
973 ok_ole_success(hr, CoUnmarshalInterface);
975 ok_more_than_one_lock();
977 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
978 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy2);
979 IStream_Release(pStream);
980 ok_ole_success(hr, CoUnmarshalInterface);
982 ok_more_than_one_lock();
984 IUnknown_Release(pProxy1);
985 IUnknown_Release(pProxy2);
987 /* this line is shows the difference between weak and strong table marshaling:
988 * weak has cLocks == 0
989 * strong has cLocks > 0 */
990 ok_no_locks();
992 end_host_object(tid, thread);
995 /* tests releasing after unmarshaling one object */
996 static void test_tableweak_marshal_releasedata1(void)
998 HRESULT hr;
999 IStream *pStream = NULL;
1000 IUnknown *pProxy1 = NULL;
1001 IUnknown *pProxy2 = NULL;
1002 DWORD tid;
1003 HANDLE thread;
1005 cLocks = 0;
1007 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1008 ok_ole_success(hr, CreateStreamOnHGlobal);
1009 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_TABLEWEAK, &thread);
1011 ok_more_than_one_lock();
1013 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1014 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy1);
1015 ok_ole_success(hr, CoUnmarshalInterface);
1017 ok_more_than_one_lock();
1019 /* release the remaining reference on the object by calling
1020 * CoReleaseMarshalData in the hosting thread */
1021 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1022 release_host_object(tid);
1024 ok_more_than_one_lock();
1026 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1027 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy2);
1028 ok_ole_success(hr, CoUnmarshalInterface);
1029 IStream_Release(pStream);
1031 ok_more_than_one_lock();
1033 IUnknown_Release(pProxy1);
1034 if (pProxy2)
1035 IUnknown_Release(pProxy2);
1037 /* this line is shows the difference between weak and strong table marshaling:
1038 * weak has cLocks == 0
1039 * strong has cLocks > 0 */
1040 ok_no_locks();
1042 end_host_object(tid, thread);
1045 /* tests releasing after unmarshaling one object */
1046 static void test_tableweak_marshal_releasedata2(void)
1048 HRESULT hr;
1049 IStream *pStream = NULL;
1050 IUnknown *pProxy = NULL;
1051 DWORD tid;
1052 HANDLE thread;
1054 cLocks = 0;
1056 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1057 ok_ole_success(hr, CreateStreamOnHGlobal);
1058 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_TABLEWEAK, &thread);
1060 ok_more_than_one_lock();
1062 /* release the remaining reference on the object by calling
1063 * CoReleaseMarshalData in the hosting thread */
1064 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1065 release_host_object(tid);
1067 ok_no_locks();
1069 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1070 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
1071 todo_wine
1073 ok(hr == CO_E_OBJNOTREG,
1074 "CoUnmarshalInterface should have failed with CO_E_OBJNOTREG, but returned 0x%08x instead\n",
1075 hr);
1077 IStream_Release(pStream);
1079 ok_no_locks();
1081 end_host_object(tid, thread);
1084 struct weak_and_normal_marshal_data
1086 IStream *pStreamWeak;
1087 IStream *pStreamNormal;
1088 HANDLE hReadyEvent;
1089 HANDLE hQuitEvent;
1092 static DWORD CALLBACK weak_and_normal_marshal_thread_proc(void *p)
1094 HRESULT hr;
1095 struct weak_and_normal_marshal_data *data = p;
1096 HANDLE hQuitEvent = data->hQuitEvent;
1097 MSG msg;
1099 pCoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
1101 hr = CoMarshalInterface(data->pStreamWeak, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_TABLEWEAK);
1102 ok_ole_success(hr, "CoMarshalInterface");
1104 hr = CoMarshalInterface(data->pStreamNormal, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
1105 ok_ole_success(hr, "CoMarshalInterface");
1107 /* force the message queue to be created before signaling parent thread */
1108 PeekMessage(&msg, NULL, WM_USER, WM_USER, PM_NOREMOVE);
1110 SetEvent(data->hReadyEvent);
1112 while (WAIT_OBJECT_0 + 1 == MsgWaitForMultipleObjects(1, &hQuitEvent, FALSE, INFINITE, QS_ALLINPUT))
1114 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
1115 DispatchMessage(&msg);
1117 CloseHandle(hQuitEvent);
1119 CoUninitialize();
1121 return 0;
1124 /* tests interaction between table-weak and normal marshalling of an object */
1125 static void test_tableweak_and_normal_marshal_and_unmarshal(void)
1127 HRESULT hr;
1128 IUnknown *pProxyWeak = NULL;
1129 IUnknown *pProxyNormal = NULL;
1130 DWORD tid;
1131 HANDLE thread;
1132 struct weak_and_normal_marshal_data data;
1134 cLocks = 0;
1136 data.hReadyEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
1137 data.hQuitEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
1138 hr = CreateStreamOnHGlobal(NULL, TRUE, &data.pStreamWeak);
1139 ok_ole_success(hr, CreateStreamOnHGlobal);
1140 hr = CreateStreamOnHGlobal(NULL, TRUE, &data.pStreamNormal);
1141 ok_ole_success(hr, CreateStreamOnHGlobal);
1143 thread = CreateThread(NULL, 0, weak_and_normal_marshal_thread_proc, &data, 0, &tid);
1144 WaitForSingleObject(data.hReadyEvent, INFINITE);
1145 CloseHandle(data.hReadyEvent);
1147 ok_more_than_one_lock();
1149 IStream_Seek(data.pStreamWeak, ullZero, STREAM_SEEK_SET, NULL);
1150 hr = CoUnmarshalInterface(data.pStreamWeak, &IID_IClassFactory, (void **)&pProxyWeak);
1151 ok_ole_success(hr, CoUnmarshalInterface);
1153 ok_more_than_one_lock();
1155 IStream_Seek(data.pStreamNormal, ullZero, STREAM_SEEK_SET, NULL);
1156 hr = CoUnmarshalInterface(data.pStreamNormal, &IID_IClassFactory, (void **)&pProxyNormal);
1157 ok_ole_success(hr, CoUnmarshalInterface);
1159 ok_more_than_one_lock();
1161 IUnknown_Release(pProxyNormal);
1163 ok_more_than_one_lock();
1165 IUnknown_Release(pProxyWeak);
1167 ok_no_locks();
1169 IStream_Release(data.pStreamWeak);
1170 IStream_Release(data.pStreamNormal);
1172 SetEvent(data.hQuitEvent);
1173 WaitForSingleObject(thread, INFINITE);
1174 CloseHandle(thread);
1177 /* tests success case of a same-thread table-strong marshal, unmarshal, unmarshal */
1178 static void test_tablestrong_marshal_and_unmarshal_twice(void)
1180 HRESULT hr;
1181 IStream *pStream = NULL;
1182 IUnknown *pProxy1 = NULL;
1183 IUnknown *pProxy2 = NULL;
1184 DWORD tid;
1185 HANDLE thread;
1187 cLocks = 0;
1189 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1190 ok_ole_success(hr, CreateStreamOnHGlobal);
1191 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_TABLESTRONG, &thread);
1193 ok_more_than_one_lock();
1195 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1196 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy1);
1197 ok_ole_success(hr, CoUnmarshalInterface);
1199 ok_more_than_one_lock();
1201 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1202 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy2);
1203 ok_ole_success(hr, CoUnmarshalInterface);
1205 ok_more_than_one_lock();
1207 if (pProxy1) IUnknown_Release(pProxy1);
1208 if (pProxy2) IUnknown_Release(pProxy2);
1210 /* this line is shows the difference between weak and strong table marshaling:
1211 * weak has cLocks == 0
1212 * strong has cLocks > 0 */
1213 ok_more_than_one_lock();
1215 /* release the remaining reference on the object by calling
1216 * CoReleaseMarshalData in the hosting thread */
1217 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1218 release_host_object(tid);
1219 IStream_Release(pStream);
1221 ok_no_locks();
1223 end_host_object(tid, thread);
1226 /* tests CoLockObjectExternal */
1227 static void test_lock_object_external(void)
1229 HRESULT hr;
1230 IStream *pStream = NULL;
1232 cLocks = 0;
1234 /* test the stub manager creation aspect of CoLockObjectExternal when the
1235 * object hasn't been marshaled yet */
1236 CoLockObjectExternal((IUnknown*)&Test_ClassFactory, TRUE, TRUE);
1238 ok_more_than_one_lock();
1240 CoDisconnectObject((IUnknown*)&Test_ClassFactory, 0);
1242 ok_no_locks();
1244 /* test our empty stub manager being handled correctly in
1245 * CoMarshalInterface */
1246 CoLockObjectExternal((IUnknown*)&Test_ClassFactory, TRUE, TRUE);
1248 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1249 ok_ole_success(hr, CreateStreamOnHGlobal);
1250 hr = CoMarshalInterface(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
1251 ok_ole_success(hr, CoMarshalInterface);
1253 CoLockObjectExternal((IUnknown*)&Test_ClassFactory, TRUE, TRUE);
1255 ok_more_than_one_lock();
1257 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1258 hr = CoReleaseMarshalData(pStream);
1259 ok_ole_success(hr, CoReleaseMarshalData);
1260 IStream_Release(pStream);
1262 ok_more_than_one_lock();
1264 CoLockObjectExternal((IUnknown*)&Test_ClassFactory, FALSE, TRUE);
1266 ok_more_than_one_lock();
1268 CoLockObjectExternal((IUnknown*)&Test_ClassFactory, FALSE, TRUE);
1270 ok_no_locks();
1273 /* tests disconnecting stubs */
1274 static void test_disconnect_stub(void)
1276 HRESULT hr;
1277 IStream *pStream = NULL;
1279 cLocks = 0;
1281 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1282 ok_ole_success(hr, CreateStreamOnHGlobal);
1283 hr = CoMarshalInterface(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
1284 ok_ole_success(hr, CoMarshalInterface);
1286 CoLockObjectExternal((IUnknown*)&Test_ClassFactory, TRUE, TRUE);
1288 ok_more_than_one_lock();
1290 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1291 hr = CoReleaseMarshalData(pStream);
1292 ok_ole_success(hr, CoReleaseMarshalData);
1293 IStream_Release(pStream);
1295 ok_more_than_one_lock();
1297 CoDisconnectObject((IUnknown*)&Test_ClassFactory, 0);
1299 ok_no_locks();
1302 /* tests failure case of a same-thread marshal and unmarshal twice */
1303 static void test_normal_marshal_and_unmarshal_twice(void)
1305 HRESULT hr;
1306 IStream *pStream = NULL;
1307 IUnknown *pProxy1 = NULL;
1308 IUnknown *pProxy2 = NULL;
1310 cLocks = 0;
1312 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1313 ok_ole_success(hr, CreateStreamOnHGlobal);
1314 hr = CoMarshalInterface(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
1315 ok_ole_success(hr, CoMarshalInterface);
1317 ok_more_than_one_lock();
1319 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1320 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy1);
1321 ok_ole_success(hr, CoUnmarshalInterface);
1323 ok_more_than_one_lock();
1325 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1326 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy2);
1327 ok(hr == CO_E_OBJNOTCONNECTED,
1328 "CoUnmarshalInterface should have failed with error CO_E_OBJNOTCONNECTED for double unmarshal, instead of 0x%08x\n", hr);
1330 IStream_Release(pStream);
1332 ok_more_than_one_lock();
1334 IUnknown_Release(pProxy1);
1336 ok_no_locks();
1339 /* tests success case of marshaling and unmarshaling an HRESULT */
1340 static void test_hresult_marshaling(void)
1342 HRESULT hr;
1343 HRESULT hr_marshaled = 0;
1344 IStream *pStream = NULL;
1345 static const HRESULT E_DEADBEEF = 0xdeadbeef;
1347 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1348 ok_ole_success(hr, CreateStreamOnHGlobal);
1350 hr = CoMarshalHresult(pStream, E_DEADBEEF);
1351 ok_ole_success(hr, CoMarshalHresult);
1353 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1354 hr = IStream_Read(pStream, &hr_marshaled, sizeof(HRESULT), NULL);
1355 ok_ole_success(hr, IStream_Read);
1357 ok(hr_marshaled == E_DEADBEEF, "Didn't marshal HRESULT as expected: got value 0x%08x instead\n", hr_marshaled);
1359 hr_marshaled = 0;
1360 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1361 hr = CoUnmarshalHresult(pStream, &hr_marshaled);
1362 ok_ole_success(hr, CoUnmarshalHresult);
1364 ok(hr_marshaled == E_DEADBEEF, "Didn't marshal HRESULT as expected: got value 0x%08x instead\n", hr_marshaled);
1366 IStream_Release(pStream);
1370 /* helper for test_proxy_used_in_wrong_thread */
1371 static DWORD CALLBACK bad_thread_proc(LPVOID p)
1373 IClassFactory * cf = (IClassFactory *)p;
1374 HRESULT hr;
1375 IUnknown * proxy = NULL;
1377 hr = IClassFactory_CreateInstance(cf, NULL, &IID_IUnknown, (LPVOID*)&proxy);
1378 todo_wine
1379 ok(hr == CO_E_NOTINITIALIZED,
1380 "COM should have failed with CO_E_NOTINITIALIZED on using proxy without apartment, but instead returned 0x%08x\n",
1381 hr);
1383 hr = IClassFactory_QueryInterface(cf, &IID_IMultiQI, (LPVOID *)&proxy);
1384 /* Win9x returns S_OK, whilst NT returns RPC_E_WRONG_THREAD */
1385 trace("call to proxy's QueryInterface for local interface without apartment returned 0x%08x\n", hr);
1386 if (SUCCEEDED(hr))
1387 IUnknown_Release(proxy);
1389 hr = IClassFactory_QueryInterface(cf, &IID_IStream, (LPVOID *)&proxy);
1390 /* Win9x returns E_NOINTERFACE, whilst NT returns RPC_E_WRONG_THREAD */
1391 trace("call to proxy's QueryInterface without apartment returned 0x%08x\n", hr);
1392 if (SUCCEEDED(hr))
1393 IUnknown_Release(proxy);
1395 pCoInitializeEx(NULL, COINIT_MULTITHREADED);
1397 hr = IClassFactory_CreateInstance(cf, NULL, &IID_IUnknown, (LPVOID*)&proxy);
1398 if (proxy) IUnknown_Release(proxy);
1399 ok(hr == RPC_E_WRONG_THREAD,
1400 "COM should have failed with RPC_E_WRONG_THREAD on using proxy from wrong apartment, but instead returned 0x%08x\n",
1401 hr);
1403 hr = IClassFactory_QueryInterface(cf, &IID_IStream, (LPVOID *)&proxy);
1404 /* Win9x returns E_NOINTERFACE, whilst NT returns RPC_E_WRONG_THREAD */
1405 trace("call to proxy's QueryInterface from wrong apartment returned 0x%08x\n", hr);
1407 /* this statement causes Win9x DCOM to crash during CoUninitialize of
1408 * other apartment, so don't test this on Win9x (signified by NT-only
1409 * export of CoRegisterSurrogateEx) */
1410 if (GetProcAddress(GetModuleHandle("ole32"), "CoRegisterSurrogateEx"))
1411 /* now be really bad and release the proxy from the wrong apartment */
1412 IUnknown_Release(cf);
1413 else
1414 skip("skipping test for releasing proxy from wrong apartment that will succeed, but cause a crash during CoUninitialize\n");
1416 CoUninitialize();
1418 return 0;
1421 /* tests failure case of a using a proxy in the wrong apartment */
1422 static void test_proxy_used_in_wrong_thread(void)
1424 HRESULT hr;
1425 IStream *pStream = NULL;
1426 IUnknown *pProxy = NULL;
1427 DWORD tid, tid2;
1428 HANDLE thread;
1429 HANDLE host_thread;
1431 cLocks = 0;
1433 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1434 ok_ole_success(hr, CreateStreamOnHGlobal);
1435 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &host_thread);
1437 ok_more_than_one_lock();
1439 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1440 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
1441 ok_ole_success(hr, CoUnmarshalInterface);
1442 IStream_Release(pStream);
1444 ok_more_than_one_lock();
1446 /* do a call that will fail, but result in IRemUnknown being used by the proxy */
1447 IClassFactory_QueryInterface(pProxy, &IID_IStream, (LPVOID *)&pStream);
1449 /* create a thread that we can misbehave in */
1450 thread = CreateThread(NULL, 0, bad_thread_proc, (LPVOID)pProxy, 0, &tid2);
1452 WaitForSingleObject(thread, INFINITE);
1453 CloseHandle(thread);
1455 /* do release statement on Win9x that we should have done above */
1456 if (!GetProcAddress(GetModuleHandle("ole32"), "CoRegisterSurrogateEx"))
1457 IUnknown_Release(pProxy);
1459 ok_no_locks();
1461 end_host_object(tid, host_thread);
1464 static HRESULT WINAPI MessageFilter_QueryInterface(IMessageFilter *iface, REFIID riid, void ** ppvObj)
1466 if (ppvObj == NULL) return E_POINTER;
1468 if (IsEqualGUID(riid, &IID_IUnknown) ||
1469 IsEqualGUID(riid, &IID_IClassFactory))
1471 *ppvObj = (LPVOID)iface;
1472 IClassFactory_AddRef(iface);
1473 return S_OK;
1476 return E_NOINTERFACE;
1479 static ULONG WINAPI MessageFilter_AddRef(IMessageFilter *iface)
1481 return 2; /* non-heap object */
1484 static ULONG WINAPI MessageFilter_Release(IMessageFilter *iface)
1486 return 1; /* non-heap object */
1489 static DWORD WINAPI MessageFilter_HandleInComingCall(
1490 IMessageFilter *iface,
1491 DWORD dwCallType,
1492 HTASK threadIDCaller,
1493 DWORD dwTickCount,
1494 LPINTERFACEINFO lpInterfaceInfo)
1496 static int callcount = 0;
1497 DWORD ret;
1498 trace("HandleInComingCall\n");
1499 switch (callcount)
1501 case 0:
1502 ret = SERVERCALL_REJECTED;
1503 break;
1504 case 1:
1505 ret = SERVERCALL_RETRYLATER;
1506 break;
1507 default:
1508 ret = SERVERCALL_ISHANDLED;
1509 break;
1511 callcount++;
1512 return ret;
1515 static DWORD WINAPI MessageFilter_RetryRejectedCall(
1516 IMessageFilter *iface,
1517 HTASK threadIDCallee,
1518 DWORD dwTickCount,
1519 DWORD dwRejectType)
1521 trace("RetryRejectedCall\n");
1522 return 0;
1525 static DWORD WINAPI MessageFilter_MessagePending(
1526 IMessageFilter *iface,
1527 HTASK threadIDCallee,
1528 DWORD dwTickCount,
1529 DWORD dwPendingType)
1531 trace("MessagePending\n");
1532 return PENDINGMSG_WAITNOPROCESS;
1535 static const IMessageFilterVtbl MessageFilter_Vtbl =
1537 MessageFilter_QueryInterface,
1538 MessageFilter_AddRef,
1539 MessageFilter_Release,
1540 MessageFilter_HandleInComingCall,
1541 MessageFilter_RetryRejectedCall,
1542 MessageFilter_MessagePending
1545 static IMessageFilter MessageFilter = { &MessageFilter_Vtbl };
1547 static void test_message_filter(void)
1549 HRESULT hr;
1550 IStream *pStream = NULL;
1551 IClassFactory *cf = NULL;
1552 DWORD tid;
1553 IUnknown *proxy = NULL;
1554 IMessageFilter *prev_filter = NULL;
1555 HANDLE thread;
1557 cLocks = 0;
1559 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1560 ok_ole_success(hr, CreateStreamOnHGlobal);
1561 tid = start_host_object2(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &MessageFilter, &thread);
1563 ok_more_than_one_lock();
1565 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1566 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&cf);
1567 ok_ole_success(hr, CoUnmarshalInterface);
1568 IStream_Release(pStream);
1570 ok_more_than_one_lock();
1572 hr = IClassFactory_CreateInstance(cf, NULL, &IID_IUnknown, (LPVOID*)&proxy);
1573 ok(hr == RPC_E_CALL_REJECTED, "Call should have returned RPC_E_CALL_REJECTED, but return 0x%08x instead\n", hr);
1574 if (proxy) IUnknown_Release(proxy);
1575 proxy = NULL;
1577 hr = CoRegisterMessageFilter(&MessageFilter, &prev_filter);
1578 ok_ole_success(hr, CoRegisterMessageFilter);
1580 hr = IClassFactory_CreateInstance(cf, NULL, &IID_IUnknown, (LPVOID*)&proxy);
1581 ok_ole_success(hr, IClassFactory_CreateInstance);
1583 IUnknown_Release(proxy);
1585 IClassFactory_Release(cf);
1587 ok_no_locks();
1589 end_host_object(tid, thread);
1591 hr = CoRegisterMessageFilter(prev_filter, NULL);
1592 ok_ole_success(hr, CoRegisterMessageFilter);
1595 /* test failure case of trying to unmarshal from bad stream */
1596 static void test_bad_marshal_stream(void)
1598 HRESULT hr;
1599 IStream *pStream = NULL;
1601 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1602 ok_ole_success(hr, CreateStreamOnHGlobal);
1603 hr = CoMarshalInterface(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
1604 ok_ole_success(hr, CoMarshalInterface);
1606 ok_more_than_one_lock();
1608 /* try to read beyond end of stream */
1609 hr = CoReleaseMarshalData(pStream);
1610 ok(hr == STG_E_READFAULT, "Should have failed with STG_E_READFAULT, but returned 0x%08x instead\n", hr);
1612 /* now release for real */
1613 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1614 hr = CoReleaseMarshalData(pStream);
1615 ok_ole_success(hr, CoReleaseMarshalData);
1617 IStream_Release(pStream);
1620 /* tests that proxies implement certain interfaces */
1621 static void test_proxy_interfaces(void)
1623 HRESULT hr;
1624 IStream *pStream = NULL;
1625 IUnknown *pProxy = NULL;
1626 IUnknown *pOtherUnknown = NULL;
1627 DWORD tid;
1628 HANDLE thread;
1630 cLocks = 0;
1632 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1633 ok_ole_success(hr, CreateStreamOnHGlobal);
1634 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
1636 ok_more_than_one_lock();
1638 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1639 hr = CoUnmarshalInterface(pStream, &IID_IUnknown, (void **)&pProxy);
1640 ok_ole_success(hr, CoUnmarshalInterface);
1641 IStream_Release(pStream);
1643 ok_more_than_one_lock();
1645 hr = IUnknown_QueryInterface(pProxy, &IID_IUnknown, (LPVOID*)&pOtherUnknown);
1646 ok_ole_success(hr, IUnknown_QueryInterface IID_IUnknown);
1647 if (hr == S_OK) IUnknown_Release(pOtherUnknown);
1649 hr = IUnknown_QueryInterface(pProxy, &IID_IClientSecurity, (LPVOID*)&pOtherUnknown);
1650 ok_ole_success(hr, IUnknown_QueryInterface IID_IClientSecurity);
1651 if (hr == S_OK) IUnknown_Release(pOtherUnknown);
1653 hr = IUnknown_QueryInterface(pProxy, &IID_IMultiQI, (LPVOID*)&pOtherUnknown);
1654 ok_ole_success(hr, IUnknown_QueryInterface IID_IMultiQI);
1655 if (hr == S_OK) IUnknown_Release(pOtherUnknown);
1657 hr = IUnknown_QueryInterface(pProxy, &IID_IMarshal, (LPVOID*)&pOtherUnknown);
1658 ok_ole_success(hr, IUnknown_QueryInterface IID_IMarshal);
1659 if (hr == S_OK) IUnknown_Release(pOtherUnknown);
1661 /* IMarshal2 is also supported on NT-based systems, but is pretty much
1662 * useless as it has no more methods over IMarshal that it inherits from. */
1664 IUnknown_Release(pProxy);
1666 ok_no_locks();
1668 end_host_object(tid, thread);
1671 typedef struct
1673 const IUnknownVtbl *lpVtbl;
1674 ULONG refs;
1675 } HeapUnknown;
1677 static HRESULT WINAPI HeapUnknown_QueryInterface(IUnknown *iface, REFIID riid, void **ppv)
1679 if (IsEqualIID(riid, &IID_IUnknown))
1681 IUnknown_AddRef(iface);
1682 *ppv = (LPVOID)iface;
1683 return S_OK;
1685 *ppv = NULL;
1686 return E_NOINTERFACE;
1689 static ULONG WINAPI HeapUnknown_AddRef(IUnknown *iface)
1691 HeapUnknown *This = (HeapUnknown *)iface;
1692 return InterlockedIncrement((LONG*)&This->refs);
1695 static ULONG WINAPI HeapUnknown_Release(IUnknown *iface)
1697 HeapUnknown *This = (HeapUnknown *)iface;
1698 ULONG refs = InterlockedDecrement((LONG*)&This->refs);
1699 if (!refs) HeapFree(GetProcessHeap(), 0, This);
1700 return refs;
1703 static const IUnknownVtbl HeapUnknown_Vtbl =
1705 HeapUnknown_QueryInterface,
1706 HeapUnknown_AddRef,
1707 HeapUnknown_Release
1710 static void test_proxybuffer(REFIID riid)
1712 HRESULT hr;
1713 IPSFactoryBuffer *psfb;
1714 IRpcProxyBuffer *proxy;
1715 LPVOID lpvtbl;
1716 ULONG refs;
1717 CLSID clsid;
1718 HeapUnknown *pUnkOuter = HeapAlloc(GetProcessHeap(), 0, sizeof(*pUnkOuter));
1720 pUnkOuter->lpVtbl = &HeapUnknown_Vtbl;
1721 pUnkOuter->refs = 1;
1723 hr = CoGetPSClsid(riid, &clsid);
1724 ok_ole_success(hr, CoGetPSClsid);
1726 hr = CoGetClassObject(&clsid, CLSCTX_INPROC_SERVER, NULL, &IID_IPSFactoryBuffer, (LPVOID*)&psfb);
1727 ok_ole_success(hr, CoGetClassObject);
1729 hr = IPSFactoryBuffer_CreateProxy(psfb, (IUnknown*)pUnkOuter, riid, &proxy, &lpvtbl);
1730 ok_ole_success(hr, IPSFactoryBuffer_CreateProxy);
1731 ok(lpvtbl != NULL, "IPSFactoryBuffer_CreateProxy succeeded, but returned a NULL vtable!\n");
1733 /* release our reference to the outer unknown object - the PS factory
1734 * buffer will have AddRef's it in the CreateProxy call */
1735 refs = IUnknown_Release((IUnknown *)pUnkOuter);
1736 ok(refs == 1, "Ref count of outer unknown should have been 1 instead of %d\n", refs);
1738 refs = IPSFactoryBuffer_Release(psfb);
1739 if (0)
1741 /* not reliable on native. maybe it leaks references! */
1742 ok(refs == 0, "Ref-count leak of %d on IPSFactoryBuffer\n", refs);
1745 refs = IUnknown_Release((IUnknown *)lpvtbl);
1746 ok(refs == 0, "Ref-count leak of %d on IRpcProxyBuffer\n", refs);
1748 refs = IRpcProxyBuffer_Release(proxy);
1749 ok(refs == 0, "Ref-count leak of %d on IRpcProxyBuffer\n", refs);
1752 static void test_stubbuffer(REFIID riid)
1754 HRESULT hr;
1755 IPSFactoryBuffer *psfb;
1756 IRpcStubBuffer *stub;
1757 ULONG refs;
1758 CLSID clsid;
1760 cLocks = 0;
1762 hr = CoGetPSClsid(riid, &clsid);
1763 ok_ole_success(hr, CoGetPSClsid);
1765 hr = CoGetClassObject(&clsid, CLSCTX_INPROC_SERVER, NULL, &IID_IPSFactoryBuffer, (LPVOID*)&psfb);
1766 ok_ole_success(hr, CoGetClassObject);
1768 hr = IPSFactoryBuffer_CreateStub(psfb, riid, (IUnknown*)&Test_ClassFactory, &stub);
1769 ok_ole_success(hr, IPSFactoryBuffer_CreateStub);
1771 refs = IPSFactoryBuffer_Release(psfb);
1772 if (0)
1774 /* not reliable on native. maybe it leaks references */
1775 ok(refs == 0, "Ref-count leak of %d on IPSFactoryBuffer\n", refs);
1778 ok_more_than_one_lock();
1780 IRpcStubBuffer_Disconnect(stub);
1782 ok_no_locks();
1784 refs = IRpcStubBuffer_Release(stub);
1785 ok(refs == 0, "Ref-count leak of %d on IRpcProxyBuffer\n", refs);
1788 static HWND hwnd_app;
1790 static HRESULT WINAPI TestRE_IClassFactory_CreateInstance(
1791 LPCLASSFACTORY iface,
1792 LPUNKNOWN pUnkOuter,
1793 REFIID riid,
1794 LPVOID *ppvObj)
1796 DWORD_PTR res;
1797 if (IsEqualIID(riid, &IID_IWineTest))
1799 BOOL ret = SendMessageTimeout(hwnd_app, WM_NULL, 0, 0, SMTO_BLOCK, 5000, &res);
1800 ok(ret, "Timed out sending a message to originating window during RPC call\n");
1802 return S_FALSE;
1805 static const IClassFactoryVtbl TestREClassFactory_Vtbl =
1807 Test_IClassFactory_QueryInterface,
1808 Test_IClassFactory_AddRef,
1809 Test_IClassFactory_Release,
1810 TestRE_IClassFactory_CreateInstance,
1811 Test_IClassFactory_LockServer
1814 IClassFactory TestRE_ClassFactory = { &TestREClassFactory_Vtbl };
1816 static LRESULT CALLBACK window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1818 switch (msg)
1820 case WM_USER:
1822 HRESULT hr;
1823 IStream *pStream = NULL;
1824 IClassFactory *proxy = NULL;
1825 IUnknown *object;
1826 DWORD tid;
1827 HANDLE thread;
1829 cLocks = 0;
1831 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1832 ok_ole_success(hr, CreateStreamOnHGlobal);
1833 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&TestRE_ClassFactory, MSHLFLAGS_NORMAL, &thread);
1835 ok_more_than_one_lock();
1837 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1838 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&proxy);
1839 ok_ole_success(hr, CoReleaseMarshalData);
1840 IStream_Release(pStream);
1842 ok_more_than_one_lock();
1844 /* note the use of the magic IID_IWineTest value to tell remote thread
1845 * to try to send a message back to us */
1846 hr = IClassFactory_CreateInstance(proxy, NULL, &IID_IWineTest, (void **)&object);
1848 IClassFactory_Release(proxy);
1850 ok_no_locks();
1852 end_host_object(tid, thread);
1854 PostMessage(hwnd, WM_QUIT, 0, 0);
1856 return 0;
1858 case WM_USER+1:
1860 HRESULT hr;
1861 IStream *pStream = NULL;
1862 IClassFactory *proxy = NULL;
1863 IUnknown *object;
1864 DWORD tid;
1865 HANDLE thread;
1867 cLocks = 0;
1869 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1870 ok_ole_success(hr, CreateStreamOnHGlobal);
1871 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&TestRE_ClassFactory, MSHLFLAGS_NORMAL, &thread);
1873 ok_more_than_one_lock();
1875 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1876 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&proxy);
1877 ok_ole_success(hr, CoReleaseMarshalData);
1878 IStream_Release(pStream);
1880 ok_more_than_one_lock();
1882 /* post quit message before a doing a COM call to show that a pending
1883 * WM_QUIT message doesn't stop the call from succeeding */
1884 PostMessage(hwnd, WM_QUIT, 0, 0);
1885 hr = IClassFactory_CreateInstance(proxy, NULL, &IID_IUnknown, (void **)&object);
1887 IClassFactory_Release(proxy);
1889 ok_no_locks();
1891 end_host_object(tid, thread);
1893 return 0;
1895 case WM_USER+2:
1897 HRESULT hr;
1898 IStream *pStream = NULL;
1899 IClassFactory *proxy = NULL;
1900 IUnknown *object;
1901 DWORD tid;
1902 HANDLE thread;
1904 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1905 ok_ole_success(hr, CreateStreamOnHGlobal);
1906 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
1908 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
1909 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&proxy);
1910 ok_ole_success(hr, CoReleaseMarshalData);
1911 IStream_Release(pStream);
1913 /* shows that COM calls executed during the processing of sent
1914 * messages should fail */
1915 hr = IClassFactory_CreateInstance(proxy, NULL, &IID_IUnknown, (void **)&object);
1916 ok(hr == RPC_E_CANTCALLOUT_ININPUTSYNCCALL,
1917 "COM call during processing of sent message should return RPC_E_CANTCALLOUT_ININPUTSYNCCALL instead of 0x%08x\n", hr);
1919 IClassFactory_Release(proxy);
1921 end_host_object(tid, thread);
1923 PostQuitMessage(0);
1925 return 0;
1927 default:
1928 return DefWindowProc(hwnd, msg, wparam, lparam);
1932 static void register_test_window(void)
1934 WNDCLASS wndclass;
1936 memset(&wndclass, 0, sizeof(wndclass));
1937 wndclass.lpfnWndProc = window_proc;
1938 wndclass.lpszClassName = "WineCOMTest";
1939 RegisterClass(&wndclass);
1942 static void test_message_reentrancy(void)
1944 MSG msg;
1946 hwnd_app = CreateWindow("WineCOMTest", NULL, 0, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, 0);
1947 ok(hwnd_app != NULL, "Window creation failed\n");
1949 /* start message re-entrancy test */
1950 PostMessage(hwnd_app, WM_USER, 0, 0);
1952 while (GetMessage(&msg, NULL, 0, 0))
1954 TranslateMessage(&msg);
1955 DispatchMessage(&msg);
1957 DestroyWindow(hwnd_app);
1960 static HRESULT WINAPI TestMsg_IClassFactory_CreateInstance(
1961 LPCLASSFACTORY iface,
1962 LPUNKNOWN pUnkOuter,
1963 REFIID riid,
1964 LPVOID *ppvObj)
1966 *ppvObj = NULL;
1967 SendMessage(hwnd_app, WM_USER+2, 0, 0);
1968 return S_OK;
1971 static IClassFactoryVtbl TestMsgClassFactory_Vtbl =
1973 Test_IClassFactory_QueryInterface,
1974 Test_IClassFactory_AddRef,
1975 Test_IClassFactory_Release,
1976 TestMsg_IClassFactory_CreateInstance,
1977 Test_IClassFactory_LockServer
1980 IClassFactory TestMsg_ClassFactory = { &TestMsgClassFactory_Vtbl };
1982 static void test_call_from_message(void)
1984 MSG msg;
1985 IStream *pStream;
1986 HRESULT hr;
1987 IClassFactory *proxy;
1988 DWORD tid;
1989 HANDLE thread;
1990 IUnknown *object;
1992 hwnd_app = CreateWindow("WineCOMTest", NULL, 0, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, 0);
1993 ok(hwnd_app != NULL, "Window creation failed\n");
1995 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
1996 ok_ole_success(hr, CreateStreamOnHGlobal);
1997 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&TestMsg_ClassFactory, MSHLFLAGS_NORMAL, &thread);
1999 ok_more_than_one_lock();
2001 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
2002 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&proxy);
2003 ok_ole_success(hr, CoReleaseMarshalData);
2004 IStream_Release(pStream);
2006 ok_more_than_one_lock();
2008 /* start message re-entrancy test */
2009 hr = IClassFactory_CreateInstance(proxy, NULL, &IID_IUnknown, (void **)&object);
2010 ok_ole_success(hr, IClassFactory_CreateInstance);
2012 IClassFactory_Release(proxy);
2014 ok_no_locks();
2016 end_host_object(tid, thread);
2018 while (GetMessage(&msg, NULL, 0, 0))
2020 TranslateMessage(&msg);
2021 DispatchMessage(&msg);
2023 DestroyWindow(hwnd_app);
2026 static void test_WM_QUIT_handling(void)
2028 MSG msg;
2030 hwnd_app = CreateWindow("WineCOMTest", NULL, 0, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, NULL, 0);
2031 ok(hwnd_app != NULL, "Window creation failed\n");
2033 /* start WM_QUIT handling test */
2034 PostMessage(hwnd_app, WM_USER+1, 0, 0);
2036 while (GetMessage(&msg, NULL, 0, 0))
2038 TranslateMessage(&msg);
2039 DispatchMessage(&msg);
2043 static void test_freethreadedmarshaldata(IStream *pStream, MSHCTX mshctx, void *ptr, DWORD mshlflags)
2045 HGLOBAL hglobal;
2046 DWORD size;
2047 char *marshal_data;
2048 HRESULT hr;
2050 hr = GetHGlobalFromStream(pStream, &hglobal);
2051 ok_ole_success(hr, GetHGlobalFromStream);
2053 size = GlobalSize(hglobal);
2055 marshal_data = (char *)GlobalLock(hglobal);
2057 if (mshctx == MSHCTX_INPROC)
2059 DWORD expected_size = sizeof(DWORD) + sizeof(void *) + sizeof(DWORD) + sizeof(GUID);
2060 ok(size == expected_size, "size should have been %d instead of %d\n", expected_size, size);
2062 ok(*(DWORD *)marshal_data == mshlflags, "expected 0x%x, but got 0x%x for mshctx\n", mshlflags, *(DWORD *)marshal_data);
2063 marshal_data += sizeof(DWORD);
2064 ok(*(void **)marshal_data == ptr, "expected %p, but got %p for mshctx\n", ptr, *(void **)marshal_data);
2065 marshal_data += sizeof(void *);
2066 ok(*(DWORD *)marshal_data == 0, "expected 0x0, but got 0x%x\n", *(DWORD *)marshal_data);
2067 marshal_data += sizeof(DWORD);
2068 trace("got guid data: {%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}\n",
2069 ((GUID *)marshal_data)->Data1, ((GUID *)marshal_data)->Data2, ((GUID *)marshal_data)->Data3,
2070 ((GUID *)marshal_data)->Data4[0], ((GUID *)marshal_data)->Data4[1], ((GUID *)marshal_data)->Data4[2], ((GUID *)marshal_data)->Data4[3],
2071 ((GUID *)marshal_data)->Data4[4], ((GUID *)marshal_data)->Data4[5], ((GUID *)marshal_data)->Data4[6], ((GUID *)marshal_data)->Data4[7]);
2073 else
2075 ok(size > sizeof(DWORD), "size should have been > sizeof(DWORD), not %d\n", size);
2076 ok(*(DWORD *)marshal_data == 0x574f454d /* MEOW */,
2077 "marshal data should be filled by standard marshal and start with MEOW signature\n");
2080 GlobalUnlock(hglobal);
2083 static void test_freethreadedmarshaler(void)
2085 HRESULT hr;
2086 IUnknown *pFTUnknown;
2087 IMarshal *pFTMarshal;
2088 IStream *pStream;
2089 IUnknown *pProxy;
2090 static const LARGE_INTEGER llZero;
2092 cLocks = 0;
2093 hr = CoCreateFreeThreadedMarshaler(NULL, &pFTUnknown);
2094 ok_ole_success(hr, CoCreateFreeThreadedMarshaler);
2095 hr = IUnknown_QueryInterface(pFTUnknown, &IID_IMarshal, (void **)&pFTMarshal);
2096 ok_ole_success(hr, IUnknown_QueryInterface);
2097 IUnknown_Release(pFTUnknown);
2099 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
2100 ok_ole_success(hr, CreateStreamOnHGlobal);
2102 /* inproc normal marshaling */
2104 hr = IMarshal_MarshalInterface(pFTMarshal, pStream, &IID_IClassFactory,
2105 (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
2106 ok_ole_success(hr, IMarshal_MarshalInterface);
2108 ok_more_than_one_lock();
2110 test_freethreadedmarshaldata(pStream, MSHCTX_INPROC, &Test_ClassFactory, MSHLFLAGS_NORMAL);
2112 IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
2113 hr = IMarshal_UnmarshalInterface(pFTMarshal, pStream, &IID_IUnknown, (void **)&pProxy);
2114 ok_ole_success(hr, IMarshal_UnmarshalInterface);
2116 IUnknown_Release(pProxy);
2118 ok_no_locks();
2120 /* native doesn't allow us to unmarshal or release the stream data,
2121 * presumably because it wants us to call CoMarshalInterface instead */
2122 if (0)
2124 /* local normal marshaling */
2126 IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
2127 hr = IMarshal_MarshalInterface(pFTMarshal, pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHCTX_LOCAL, NULL, MSHLFLAGS_NORMAL);
2128 ok_ole_success(hr, IMarshal_MarshalInterface);
2130 ok_more_than_one_lock();
2132 test_freethreadedmarshaldata(pStream, MSHCTX_LOCAL, &Test_ClassFactory, MSHLFLAGS_NORMAL);
2134 IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
2135 hr = IMarshal_ReleaseMarshalData(pFTMarshal, pStream);
2136 ok_ole_success(hr, IMarshal_ReleaseMarshalData);
2138 ok_no_locks();
2141 /* inproc table-strong marshaling */
2143 IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
2144 hr = IMarshal_MarshalInterface(pFTMarshal, pStream, &IID_IClassFactory,
2145 (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, (void *)0xdeadbeef,
2146 MSHLFLAGS_TABLESTRONG);
2147 ok_ole_success(hr, IMarshal_MarshalInterface);
2149 ok_more_than_one_lock();
2151 test_freethreadedmarshaldata(pStream, MSHCTX_INPROC, &Test_ClassFactory, MSHLFLAGS_TABLESTRONG);
2153 IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
2154 hr = IMarshal_UnmarshalInterface(pFTMarshal, pStream, &IID_IUnknown, (void **)&pProxy);
2155 ok_ole_success(hr, IMarshal_UnmarshalInterface);
2157 IUnknown_Release(pProxy);
2159 ok_more_than_one_lock();
2161 IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
2162 hr = IMarshal_ReleaseMarshalData(pFTMarshal, pStream);
2163 ok_ole_success(hr, IMarshal_ReleaseMarshalData);
2165 ok_no_locks();
2167 /* inproc table-weak marshaling */
2169 IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
2170 hr = IMarshal_MarshalInterface(pFTMarshal, pStream, &IID_IClassFactory,
2171 (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, (void *)0xdeadbeef,
2172 MSHLFLAGS_TABLEWEAK);
2173 ok_ole_success(hr, IMarshal_MarshalInterface);
2175 ok_no_locks();
2177 test_freethreadedmarshaldata(pStream, MSHCTX_INPROC, &Test_ClassFactory, MSHLFLAGS_TABLEWEAK);
2179 IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
2180 hr = IMarshal_UnmarshalInterface(pFTMarshal, pStream, &IID_IUnknown, (void **)&pProxy);
2181 ok_ole_success(hr, IMarshal_UnmarshalInterface);
2183 ok_more_than_one_lock();
2185 IUnknown_Release(pProxy);
2187 ok_no_locks();
2189 /* inproc normal marshaling (for extraordinary cases) */
2191 IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
2192 hr = IMarshal_MarshalInterface(pFTMarshal, pStream, &IID_IClassFactory,
2193 (IUnknown*)&Test_ClassFactory, MSHCTX_INPROC, NULL, MSHLFLAGS_NORMAL);
2194 ok_ole_success(hr, IMarshal_MarshalInterface);
2196 ok_more_than_one_lock();
2198 /* this call shows that DisconnectObject does nothing */
2199 hr = IMarshal_DisconnectObject(pFTMarshal, 0);
2200 ok_ole_success(hr, IMarshal_DisconnectObject);
2202 ok_more_than_one_lock();
2204 IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
2205 hr = IMarshal_ReleaseMarshalData(pFTMarshal, pStream);
2206 ok_ole_success(hr, IMarshal_ReleaseMarshalData);
2208 ok_no_locks();
2210 /* doesn't enforce marshaling rules here and allows us to unmarshal the
2211 * interface, even though it was freed above */
2212 IStream_Seek(pStream, llZero, STREAM_SEEK_SET, NULL);
2213 hr = IMarshal_UnmarshalInterface(pFTMarshal, pStream, &IID_IUnknown, (void **)&pProxy);
2214 ok_ole_success(hr, IMarshal_UnmarshalInterface);
2216 ok_no_locks();
2218 IStream_Release(pStream);
2219 IMarshal_Release(pFTMarshal);
2222 static void test_inproc_handler(void)
2224 HRESULT hr;
2225 IUnknown *pObject;
2226 IUnknown *pObject2;
2227 char buffer[256];
2228 LPOLESTR pszClsid;
2229 HKEY hkey;
2230 DWORD dwDisposition;
2231 DWORD error;
2233 hr = StringFromCLSID(&CLSID_WineTest, &pszClsid);
2234 ok_ole_success(hr, "StringFromCLSID");
2235 strcpy(buffer, "CLSID\\");
2236 WideCharToMultiByte(CP_ACP, 0, pszClsid, -1, buffer + strlen(buffer), sizeof(buffer) - strlen(buffer), NULL, NULL);
2237 CoTaskMemFree(pszClsid);
2238 strcat(buffer, "\\InprocHandler32");
2239 error = RegCreateKeyEx(HKEY_CLASSES_ROOT, buffer, 0, NULL, 0, KEY_SET_VALUE, NULL, &hkey, &dwDisposition);
2240 ok(error == ERROR_SUCCESS, "RegCreateKeyEx failed with error %d\n", error);
2241 error = RegSetValueEx(hkey, NULL, 0, REG_SZ, (const unsigned char *)"ole32.dll", strlen("ole32.dll") + 1);
2242 ok(error == ERROR_SUCCESS, "RegSetValueEx failed with error %d\n", error);
2243 RegCloseKey(hkey);
2245 hr = CoCreateInstance(&CLSID_WineTest, NULL, CLSCTX_INPROC_HANDLER, &IID_IUnknown, (void **)&pObject);
2246 todo_wine
2247 ok_ole_success(hr, "CoCreateInstance");
2249 if (SUCCEEDED(hr))
2251 hr = IUnknown_QueryInterface(pObject, &IID_IWineTest, (void **)&pObject2);
2252 ok(hr == E_NOINTERFACE, "IUnknown_QueryInterface on handler for invalid interface returned 0x%08x instead of E_NOINTERFACE\n", hr);
2254 /* it's a handler as it supports IOleObject */
2255 hr = IUnknown_QueryInterface(pObject, &IID_IOleObject, (void **)&pObject2);
2256 ok_ole_success(hr, "IUnknown_QueryInterface(&IID_IOleObject)");
2257 IUnknown_Release(pObject2);
2259 IUnknown_Release(pObject);
2262 RegDeleteKey(HKEY_CLASSES_ROOT, buffer);
2263 *strrchr(buffer, '\\') = '\0';
2264 RegDeleteKey(HKEY_CLASSES_ROOT, buffer);
2267 static HRESULT WINAPI Test_SMI_QueryInterface(
2268 IStdMarshalInfo *iface,
2269 REFIID riid,
2270 LPVOID *ppvObj)
2272 if (ppvObj == NULL) return E_POINTER;
2274 if (IsEqualGUID(riid, &IID_IUnknown) ||
2275 IsEqualGUID(riid, &IID_IStdMarshalInfo))
2277 *ppvObj = (LPVOID)iface;
2278 IClassFactory_AddRef(iface);
2279 return S_OK;
2282 return E_NOINTERFACE;
2285 static ULONG WINAPI Test_SMI_AddRef(IStdMarshalInfo *iface)
2287 LockModule();
2288 return 2; /* non-heap-based object */
2291 static ULONG WINAPI Test_SMI_Release(IStdMarshalInfo *iface)
2293 UnlockModule();
2294 return 1; /* non-heap-based object */
2297 static HRESULT WINAPI Test_SMI_GetClassForHandler(
2298 IStdMarshalInfo *iface,
2299 DWORD dwDestContext,
2300 void *pvDestContext,
2301 CLSID *pClsid)
2303 *pClsid = CLSID_WineTest;
2304 return S_OK;
2307 static const IStdMarshalInfoVtbl Test_SMI_Vtbl =
2309 Test_SMI_QueryInterface,
2310 Test_SMI_AddRef,
2311 Test_SMI_Release,
2312 Test_SMI_GetClassForHandler
2315 static IStdMarshalInfo Test_SMI = {&Test_SMI_Vtbl};
2317 static void test_handler_marshaling(void)
2319 HRESULT hr;
2320 IStream *pStream = NULL;
2321 IUnknown *pProxy = NULL;
2322 IUnknown *pObject;
2323 DWORD tid;
2324 HANDLE thread;
2325 static const LARGE_INTEGER ullZero;
2327 cLocks = 0;
2329 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
2330 ok_ole_success(hr, "CreateStreamOnHGlobal");
2331 tid = start_host_object(pStream, &IID_IUnknown, (IUnknown*)&Test_SMI, MSHLFLAGS_NORMAL, &thread);
2333 ok_more_than_one_lock();
2335 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
2336 hr = CoUnmarshalInterface(pStream, &IID_IUnknown, (void **)&pProxy);
2337 ok_ole_success(hr, "CoUnmarshalInterface");
2338 IStream_Release(pStream);
2340 ok_more_than_one_lock();
2342 hr = IUnknown_QueryInterface(pProxy, &IID_IWineTest, (void **)&pObject);
2343 ok(hr == E_NOINTERFACE, "IUnknown_QueryInterface with unknown IID should have returned E_NOINTERFACE instead of 0x%08x\n", hr);
2345 /* it's a handler as it supports IOleObject */
2346 hr = IUnknown_QueryInterface(pProxy, &IID_IOleObject, (void **)&pObject);
2347 todo_wine
2348 ok_ole_success(hr, "IUnknown_QueryInterface(&IID_IOleObject)");
2349 if (SUCCEEDED(hr)) IUnknown_Release(pObject);
2351 IUnknown_Release(pProxy);
2353 ok_no_locks();
2355 end_host_object(tid, thread);
2357 /* FIXME: test IPersist interface has the same effect as IStdMarshalInfo */
2361 static void test_client_security(void)
2363 HRESULT hr;
2364 IStream *pStream = NULL;
2365 IClassFactory *pProxy = NULL;
2366 IUnknown *pProxy2 = NULL;
2367 IUnknown *pUnknown1 = NULL;
2368 IUnknown *pUnknown2 = NULL;
2369 IClientSecurity *pCliSec = NULL;
2370 IMarshal *pMarshal;
2371 DWORD tid;
2372 HANDLE thread;
2373 static const LARGE_INTEGER ullZero;
2374 DWORD dwAuthnSvc;
2375 DWORD dwAuthzSvc;
2376 OLECHAR *pServerPrincName;
2377 DWORD dwAuthnLevel;
2378 DWORD dwImpLevel;
2379 void *pAuthInfo;
2380 DWORD dwCapabilities;
2381 void *pv;
2383 cLocks = 0;
2385 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
2386 ok_ole_success(hr, "CreateStreamOnHGlobal");
2387 tid = start_host_object(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &thread);
2389 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
2390 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&pProxy);
2391 ok_ole_success(hr, "CoUnmarshalInterface");
2392 IStream_Release(pStream);
2394 hr = IUnknown_QueryInterface(pProxy, &IID_IUnknown, (LPVOID*)&pUnknown1);
2395 ok_ole_success(hr, "IUnknown_QueryInterface IID_IUnknown");
2397 hr = IUnknown_QueryInterface(pProxy, &IID_IRemUnknown, (LPVOID*)&pProxy2);
2398 ok_ole_success(hr, "IUnknown_QueryInterface IID_IStream");
2400 hr = IUnknown_QueryInterface(pProxy2, &IID_IUnknown, (LPVOID*)&pUnknown2);
2401 ok_ole_success(hr, "IUnknown_QueryInterface IID_IUnknown");
2403 ok(pUnknown1 == pUnknown2, "both proxy's IUnknowns should be the same - %p, %p\n", pUnknown1, pUnknown2);
2405 hr = IUnknown_QueryInterface(pProxy, &IID_IMarshal, (LPVOID*)&pMarshal);
2406 ok_ole_success(hr, "IUnknown_QueryInterface IID_IMarshal");
2408 hr = IUnknown_QueryInterface(pProxy, &IID_IClientSecurity, (LPVOID*)&pCliSec);
2409 ok_ole_success(hr, "IUnknown_QueryInterface IID_IClientSecurity");
2411 hr = IClientSecurity_QueryBlanket(pCliSec, (IUnknown *)pProxy, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
2412 todo_wine ok_ole_success(hr, "IClientSecurity_QueryBlanket (all NULLs)");
2414 hr = IClientSecurity_QueryBlanket(pCliSec, (IUnknown *)pMarshal, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
2415 todo_wine ok(hr == E_NOINTERFACE, "IClientSecurity_QueryBlanket with local interface should have returned E_NOINTERFACE instead of 0x%08x\n", hr);
2417 hr = IClientSecurity_QueryBlanket(pCliSec, (IUnknown *)pProxy, &dwAuthnSvc, &dwAuthzSvc, &pServerPrincName, &dwAuthnLevel, &dwImpLevel, &pAuthInfo, &dwCapabilities);
2418 todo_wine ok_ole_success(hr, "IClientSecurity_QueryBlanket");
2420 hr = IClientSecurity_SetBlanket(pCliSec, (IUnknown *)pProxy, dwAuthnSvc, dwAuthzSvc, pServerPrincName, dwAuthnLevel, RPC_C_IMP_LEVEL_IMPERSONATE, pAuthInfo, dwCapabilities);
2421 todo_wine ok_ole_success(hr, "IClientSecurity_SetBlanket");
2423 hr = IClassFactory_CreateInstance(pProxy, NULL, &IID_IWineTest, &pv);
2424 ok(hr == E_NOINTERFACE, "COM call should have succeeded instead of returning 0x%08x\n", hr);
2426 hr = IClientSecurity_SetBlanket(pCliSec, (IUnknown *)pMarshal, dwAuthnSvc, dwAuthzSvc, pServerPrincName, dwAuthnLevel, dwImpLevel, pAuthInfo, dwCapabilities);
2427 todo_wine ok(hr == E_NOINTERFACE, "IClientSecurity_SetBlanket with local interface should have returned E_NOINTERFACE instead of 0x%08x\n", hr);
2429 hr = IClientSecurity_SetBlanket(pCliSec, (IUnknown *)pProxy, 0xdeadbeef, dwAuthzSvc, pServerPrincName, dwAuthnLevel, dwImpLevel, pAuthInfo, dwCapabilities);
2430 todo_wine ok(hr == E_INVALIDARG, "IClientSecurity_SetBlanke with invalid dwAuthnSvc should have returned E_INVALIDARG instead of 0x%08x\n", hr);
2432 CoTaskMemFree(pServerPrincName);
2434 hr = IClientSecurity_QueryBlanket(pCliSec, (IUnknown *)pUnknown1, &dwAuthnSvc, &dwAuthzSvc, &pServerPrincName, &dwAuthnLevel, &dwImpLevel, &pAuthInfo, &dwCapabilities);
2435 todo_wine ok_ole_success(hr, "IClientSecurity_QueryBlanket(IUnknown)");
2437 CoTaskMemFree(pServerPrincName);
2439 IClassFactory_Release(pProxy);
2440 IUnknown_Release(pProxy2);
2441 IUnknown_Release(pUnknown1);
2442 IUnknown_Release(pUnknown2);
2443 IMarshal_Release(pMarshal);
2444 IClientSecurity_Release(pCliSec);
2446 end_host_object(tid, thread);
2449 static HANDLE heventShutdown;
2451 static void LockModuleOOP(void)
2453 InterlockedIncrement(&cLocks); /* for test purposes only */
2454 CoAddRefServerProcess();
2457 static void UnlockModuleOOP(void)
2459 InterlockedDecrement(&cLocks); /* for test purposes only */
2460 if (!CoReleaseServerProcess())
2461 SetEvent(heventShutdown);
2464 static HWND hwnd_app;
2466 static HRESULT WINAPI TestOOP_IClassFactory_QueryInterface(
2467 LPCLASSFACTORY iface,
2468 REFIID riid,
2469 LPVOID *ppvObj)
2471 if (ppvObj == NULL) return E_POINTER;
2473 if (IsEqualGUID(riid, &IID_IUnknown) ||
2474 IsEqualGUID(riid, &IID_IClassFactory))
2476 *ppvObj = (LPVOID)iface;
2477 IClassFactory_AddRef(iface);
2478 return S_OK;
2481 return E_NOINTERFACE;
2484 static ULONG WINAPI TestOOP_IClassFactory_AddRef(LPCLASSFACTORY iface)
2486 return 2; /* non-heap-based object */
2489 static ULONG WINAPI TestOOP_IClassFactory_Release(LPCLASSFACTORY iface)
2491 return 1; /* non-heap-based object */
2494 static HRESULT WINAPI TestOOP_IClassFactory_CreateInstance(
2495 LPCLASSFACTORY iface,
2496 LPUNKNOWN pUnkOuter,
2497 REFIID riid,
2498 LPVOID *ppvObj)
2500 if (IsEqualIID(riid, &IID_IClassFactory) || IsEqualIID(riid, &IID_IUnknown))
2502 *ppvObj = iface;
2503 return S_OK;
2505 return CLASS_E_CLASSNOTAVAILABLE;
2508 static HRESULT WINAPI TestOOP_IClassFactory_LockServer(
2509 LPCLASSFACTORY iface,
2510 BOOL fLock)
2512 if (fLock)
2513 LockModuleOOP();
2514 else
2515 UnlockModuleOOP();
2516 return S_OK;
2519 static const IClassFactoryVtbl TestClassFactoryOOP_Vtbl =
2521 TestOOP_IClassFactory_QueryInterface,
2522 TestOOP_IClassFactory_AddRef,
2523 TestOOP_IClassFactory_Release,
2524 TestOOP_IClassFactory_CreateInstance,
2525 TestOOP_IClassFactory_LockServer
2528 static IClassFactory TestOOP_ClassFactory = { &TestClassFactoryOOP_Vtbl };
2530 static void test_register_local_server(void)
2532 DWORD cookie;
2533 HRESULT hr;
2534 HANDLE ready_event;
2535 HANDLE quit_event;
2536 DWORD wait;
2538 heventShutdown = CreateEvent(NULL, TRUE, FALSE, NULL);
2540 hr = CoRegisterClassObject(&CLSID_WineOOPTest, (IUnknown *)&TestOOP_ClassFactory,
2541 CLSCTX_LOCAL_SERVER, REGCLS_SINGLEUSE, &cookie);
2542 ok_ole_success(hr, CoRegisterClassObject);
2544 ready_event = CreateEvent(NULL, FALSE, FALSE, "Wine COM Test Ready Event");
2545 SetEvent(ready_event);
2547 quit_event = CreateEvent(NULL, FALSE, FALSE, "Wine COM Test Quit Event");
2551 wait = MsgWaitForMultipleObjects(1, &quit_event, FALSE, INFINITE, QS_ALLINPUT);
2552 if (wait == WAIT_OBJECT_0+1)
2554 MSG msg;
2555 BOOL ret = PeekMessage(&msg, NULL, 0, 0, PM_REMOVE);
2556 if (ret)
2558 trace("Message 0x%x\n", msg.message);
2559 TranslateMessage(&msg);
2560 DispatchMessage(&msg);
2564 while (wait == WAIT_OBJECT_0+1);
2566 hr = CoRevokeClassObject(cookie);
2567 ok_ole_success(hr, CoRevokeClassObject);
2570 static HANDLE create_target_process(const char *arg)
2572 char **argv;
2573 char cmdline[MAX_PATH];
2574 PROCESS_INFORMATION pi;
2575 STARTUPINFO si = { 0 };
2576 si.cb = sizeof(si);
2578 pi.hThread = NULL;
2579 pi.hProcess = NULL;
2580 winetest_get_mainargs( &argv );
2581 sprintf(cmdline, "%s %s %s", argv[0], argv[1], arg);
2582 ok(CreateProcess(argv[0], cmdline, NULL, NULL, FALSE, 0, NULL, NULL,
2583 &si, &pi) != 0, "CreateProcess failed with error: %u\n", GetLastError());
2584 if (pi.hThread) CloseHandle(pi.hThread);
2585 return pi.hProcess;
2588 /* tests functions commonly used by out of process COM servers */
2589 static void test_local_server(void)
2591 DWORD cookie;
2592 HRESULT hr;
2593 IClassFactory * cf;
2594 DWORD ret;
2595 HANDLE process;
2596 HANDLE quit_event;
2597 HANDLE ready_event;
2599 heventShutdown = CreateEvent(NULL, TRUE, FALSE, NULL);
2601 cLocks = 0;
2603 /* Start the object suspended */
2604 hr = CoRegisterClassObject(&CLSID_WineOOPTest, (IUnknown *)&TestOOP_ClassFactory,
2605 CLSCTX_LOCAL_SERVER, REGCLS_MULTIPLEUSE | REGCLS_SUSPENDED, &cookie);
2606 ok_ole_success(hr, CoRegisterClassObject);
2608 /* ... and CoGetClassObject does not find it and fails when it looks for the
2609 * class in the registry */
2610 hr = CoGetClassObject(&CLSID_WineOOPTest, CLSCTX_INPROC_SERVER,
2611 NULL, &IID_IClassFactory, (LPVOID*)&cf);
2612 ok(hr == REGDB_E_CLASSNOTREG || /* NT */
2613 hr == S_OK /* Win9x */,
2614 "CoGetClassObject should have returned REGDB_E_CLASSNOTREG instead of 0x%08x\n", hr);
2616 /* Resume the object suspended above ... */
2617 hr = CoResumeClassObjects();
2618 ok_ole_success(hr, CoResumeClassObjects);
2620 /* ... and now it should succeed */
2621 hr = CoGetClassObject(&CLSID_WineOOPTest, CLSCTX_INPROC_SERVER,
2622 NULL, &IID_IClassFactory, (LPVOID*)&cf);
2623 ok_ole_success(hr, CoGetClassObject);
2625 /* Now check the locking is working */
2626 /* NOTE: we are accessing the class directly, not through a proxy */
2628 ok_no_locks();
2630 hr = IClassFactory_LockServer(cf, TRUE);
2631 ok_ole_success(hr, IClassFactory_LockServer);
2633 ok_more_than_one_lock();
2635 IClassFactory_LockServer(cf, FALSE);
2636 ok_ole_success(hr, IClassFactory_LockServer);
2638 ok_no_locks();
2640 IClassFactory_Release(cf);
2642 /* wait for shutdown signal */
2643 ret = WaitForSingleObject(heventShutdown, 0);
2644 ok(ret != WAIT_TIMEOUT, "Server didn't shut down\n");
2646 /* try to connect again after SCM has suspended registered class objects */
2647 hr = CoGetClassObject(&CLSID_WineOOPTest, CLSCTX_INPROC_SERVER | CLSCTX_LOCAL_SERVER, NULL,
2648 &IID_IClassFactory, (LPVOID*)&cf);
2649 ok(hr == CO_E_SERVER_STOPPING || /* NT */
2650 hr == REGDB_E_CLASSNOTREG || /* win2k */
2651 hr == S_OK /* Win9x */,
2652 "CoGetClassObject should have returned CO_E_SERVER_STOPPING or REGDB_E_CLASSNOTREG instead of 0x%08x\n", hr);
2654 hr = CoRevokeClassObject(cookie);
2655 ok_ole_success(hr, CoRevokeClassObject);
2657 CloseHandle(heventShutdown);
2659 process = create_target_process("-Embedding");
2660 ok(process != NULL, "couldn't start local server process, error was %d\n", GetLastError());
2662 ready_event = CreateEvent(NULL, FALSE, FALSE, "Wine COM Test Ready Event");
2663 WaitForSingleObject(ready_event, INFINITE);
2664 CloseHandle(ready_event);
2666 hr = CoCreateInstance(&CLSID_WineOOPTest, NULL, CLSCTX_LOCAL_SERVER, &IID_IClassFactory, (void **)&cf);
2667 ok_ole_success(hr, CoCreateInstance);
2669 IClassFactory_Release(cf);
2671 hr = CoCreateInstance(&CLSID_WineOOPTest, NULL, CLSCTX_LOCAL_SERVER, &IID_IClassFactory, (void **)&cf);
2672 ok(hr == REGDB_E_CLASSNOTREG, "Second CoCreateInstance on REGCLS_SINGLEUSE object should have failed\n");
2674 quit_event = CreateEvent(NULL, FALSE, FALSE, "Wine COM Test Quit Event");
2675 SetEvent(quit_event);
2677 winetest_wait_child_process( process );
2678 CloseHandle(quit_event);
2679 CloseHandle(process);
2682 struct git_params
2684 DWORD cookie;
2685 IGlobalInterfaceTable *git;
2688 static DWORD CALLBACK get_global_interface_proc(LPVOID pv)
2690 HRESULT hr;
2691 struct git_params *params = (struct git_params *)pv;
2692 IClassFactory *cf;
2694 hr = IGlobalInterfaceTable_GetInterfaceFromGlobal(params->git, params->cookie, &IID_IClassFactory, (void **)&cf);
2695 ok(hr == CO_E_NOTINITIALIZED ||
2696 hr == E_UNEXPECTED, /* win2k */
2697 "IGlobalInterfaceTable_GetInterfaceFromGlobal should have failed with error CO_E_NOTINITIALIZED or E_UNEXPECTED instead of 0x%08x\n",
2698 hr);
2700 CoInitialize(NULL);
2702 hr = IGlobalInterfaceTable_GetInterfaceFromGlobal(params->git, params->cookie, &IID_IClassFactory, (void **)&cf);
2703 ok_ole_success(hr, IGlobalInterfaceTable_GetInterfaceFromGlobal);
2705 IClassFactory_Release(cf);
2707 CoUninitialize();
2709 return hr;
2712 static void test_globalinterfacetable(void)
2714 HRESULT hr;
2715 IGlobalInterfaceTable *git;
2716 DWORD cookie;
2717 HANDLE thread;
2718 DWORD tid;
2719 struct git_params params;
2720 DWORD ret;
2721 IUnknown *object;
2723 trace("test_globalinterfacetable\n");
2724 cLocks = 0;
2726 hr = CoCreateInstance(&CLSID_StdGlobalInterfaceTable, NULL, CLSCTX_INPROC_SERVER, &IID_IGlobalInterfaceTable, (void **)&git);
2727 ok_ole_success(hr, CoCreateInstance);
2729 hr = IGlobalInterfaceTable_RegisterInterfaceInGlobal(git, (IUnknown *)&Test_ClassFactory, &IID_IClassFactory, &cookie);
2730 ok_ole_success(hr, IGlobalInterfaceTable_RegisterInterfaceInGlobal);
2732 ok_more_than_one_lock();
2734 params.cookie = cookie;
2735 params.git = git;
2736 /* note: params is on stack so we MUST wait for get_global_interface_proc
2737 * to exit before we can return */
2738 thread = CreateThread(NULL, 0, get_global_interface_proc, &params, 0, &tid);
2740 ret = MsgWaitForMultipleObjects(1, &thread, FALSE, INFINITE, QS_ALLINPUT);
2741 while (ret == WAIT_OBJECT_0 + 1)
2743 MSG msg;
2744 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
2745 DispatchMessage(&msg);
2746 ret = MsgWaitForMultipleObjects(1, &thread, FALSE, INFINITE, QS_ALLINPUT);
2749 CloseHandle(thread);
2751 /* test getting interface from global with different iid */
2752 hr = IGlobalInterfaceTable_GetInterfaceFromGlobal(git, cookie, &IID_IUnknown, (void **)&object);
2753 ok_ole_success(hr, IGlobalInterfaceTable_GetInterfaceFromGlobal);
2754 IUnknown_Release(object);
2756 /* test getting interface from global with same iid */
2757 hr = IGlobalInterfaceTable_GetInterfaceFromGlobal(git, cookie, &IID_IClassFactory, (void **)&object);
2758 ok_ole_success(hr, IGlobalInterfaceTable_GetInterfaceFromGlobal);
2759 IUnknown_Release(object);
2761 hr = IGlobalInterfaceTable_RevokeInterfaceFromGlobal(git, cookie);
2762 ok_ole_success(hr, IGlobalInterfaceTable_RevokeInterfaceFromGlobal);
2764 ok_no_locks();
2766 IGlobalInterfaceTable_Release(git);
2769 static const char *debugstr_iid(REFIID riid)
2771 static char name[256];
2772 HKEY hkeyInterface;
2773 WCHAR bufferW[39];
2774 char buffer[39];
2775 LONG name_size = sizeof(name);
2776 StringFromGUID2(riid, bufferW, sizeof(bufferW)/sizeof(bufferW[0]));
2777 WideCharToMultiByte(CP_ACP, 0, bufferW, sizeof(bufferW)/sizeof(bufferW[0]), buffer, sizeof(buffer), NULL, NULL);
2778 if (RegOpenKeyEx(HKEY_CLASSES_ROOT, "Interface", 0, KEY_QUERY_VALUE, &hkeyInterface) != ERROR_SUCCESS)
2780 memcpy(name, buffer, sizeof(buffer));
2781 goto done;
2783 if (RegQueryValue(hkeyInterface, buffer, name, &name_size) != ERROR_SUCCESS)
2785 memcpy(name, buffer, sizeof(buffer));
2786 goto done;
2788 RegCloseKey(hkeyInterface);
2789 done:
2790 return name;
2793 static HRESULT WINAPI TestChannelHook_QueryInterface(IChannelHook *iface, REFIID riid, void **ppv)
2795 if (IsEqualIID(riid, &IID_IUnknown) || IsEqualIID(riid, &IID_IChannelHook))
2797 *ppv = iface;
2798 IUnknown_AddRef(iface);
2799 return S_OK;
2802 *ppv = NULL;
2803 return E_NOINTERFACE;
2806 static ULONG WINAPI TestChannelHook_AddRef(IChannelHook *iface)
2808 return 2;
2811 static ULONG WINAPI TestChannelHook_Release(IChannelHook *iface)
2813 return 1;
2816 static void WINAPI TestChannelHook_ClientGetSize(
2817 IChannelHook *iface,
2818 REFGUID uExtent,
2819 REFIID riid,
2820 ULONG *pDataSize )
2822 SChannelHookCallInfo *info = (SChannelHookCallInfo *)riid;
2823 trace("TestChannelHook_ClientGetBuffer\n");
2824 trace("\t%s method %d\n", debugstr_iid(riid), info->iMethod);
2825 trace("\tcid: %s\n", debugstr_iid(&info->uCausality));
2826 ok(info->cbSize == sizeof(*info), "info->cbSize was %d instead of %d\n", info->cbSize, (int)sizeof(*info));
2827 ok(info->dwServerPid == GetCurrentProcessId(), "info->dwServerPid was 0x%x instead of 0x%x\n", info->dwServerPid, GetCurrentProcessId());
2828 ok(!info->pObject, "info->pObject should be NULL\n");
2829 ok(IsEqualGUID(uExtent, &EXTENTID_WineTest), "uExtent wasn't correct\n");
2831 *pDataSize = 1;
2834 static void WINAPI TestChannelHook_ClientFillBuffer(
2835 IChannelHook *iface,
2836 REFGUID uExtent,
2837 REFIID riid,
2838 ULONG *pDataSize,
2839 void *pDataBuffer )
2841 SChannelHookCallInfo *info = (SChannelHookCallInfo *)riid;
2842 trace("TestChannelHook_ClientFillBuffer\n");
2843 ok(info->cbSize == sizeof(*info), "info->cbSize was %d instead of %d\n", info->cbSize, (int)sizeof(*info));
2844 ok(info->dwServerPid == GetCurrentProcessId(), "info->dwServerPid was 0x%x instead of 0x%x\n", info->dwServerPid, GetCurrentProcessId());
2845 ok(!info->pObject, "info->pObject should be NULL\n");
2846 ok(IsEqualGUID(uExtent, &EXTENTID_WineTest), "uExtent wasn't correct\n");
2848 *(unsigned char *)pDataBuffer = 0xcc;
2849 *pDataSize = 1;
2852 static void WINAPI TestChannelHook_ClientNotify(
2853 IChannelHook *iface,
2854 REFGUID uExtent,
2855 REFIID riid,
2856 ULONG cbDataSize,
2857 void *pDataBuffer,
2858 DWORD lDataRep,
2859 HRESULT hrFault )
2861 SChannelHookCallInfo *info = (SChannelHookCallInfo *)riid;
2862 trace("TestChannelHook_ClientNotify hrFault = 0x%08x\n", hrFault);
2863 ok(info->cbSize == sizeof(*info), "info->cbSize was %d instead of %d\n", info->cbSize, (int)sizeof(*info));
2864 ok(info->dwServerPid == GetCurrentProcessId(), "info->dwServerPid was 0x%x instead of 0x%x\n", info->dwServerPid, GetCurrentProcessId());
2865 todo_wine {
2866 ok(info->pObject != NULL, "info->pObject shouldn't be NULL\n");
2868 ok(IsEqualGUID(uExtent, &EXTENTID_WineTest), "uExtent wasn't correct\n");
2871 static void WINAPI TestChannelHook_ServerNotify(
2872 IChannelHook *iface,
2873 REFGUID uExtent,
2874 REFIID riid,
2875 ULONG cbDataSize,
2876 void *pDataBuffer,
2877 DWORD lDataRep )
2879 SChannelHookCallInfo *info = (SChannelHookCallInfo *)riid;
2880 trace("TestChannelHook_ServerNotify\n");
2881 ok(info->cbSize == sizeof(*info), "info->cbSize was %d instead of %d\n", info->cbSize, (int)sizeof(*info));
2882 ok(info->dwServerPid == GetCurrentProcessId(), "info->dwServerPid was 0x%x instead of 0x%x\n", info->dwServerPid, GetCurrentProcessId());
2883 ok(info->pObject != NULL, "info->pObject shouldn't be NULL\n");
2884 ok(cbDataSize == 1, "cbDataSize should have been 1 instead of %d\n", cbDataSize);
2885 ok(*(unsigned char *)pDataBuffer == 0xcc, "pDataBuffer should have contained 0xcc instead of 0x%x\n", *(unsigned char *)pDataBuffer);
2886 ok(IsEqualGUID(uExtent, &EXTENTID_WineTest), "uExtent wasn't correct\n");
2889 static void WINAPI TestChannelHook_ServerGetSize(
2890 IChannelHook *iface,
2891 REFGUID uExtent,
2892 REFIID riid,
2893 HRESULT hrFault,
2894 ULONG *pDataSize )
2896 SChannelHookCallInfo *info = (SChannelHookCallInfo *)riid;
2897 trace("TestChannelHook_ServerGetSize\n");
2898 trace("\t%s method %d\n", debugstr_iid(riid), info->iMethod);
2899 ok(info->cbSize == sizeof(*info), "info->cbSize was %d instead of %d\n", info->cbSize, (int)sizeof(*info));
2900 ok(info->dwServerPid == GetCurrentProcessId(), "info->dwServerPid was 0x%x instead of 0x%x\n", info->dwServerPid, GetCurrentProcessId());
2901 ok(info->pObject != NULL, "info->pObject shouldn't be NULL\n");
2902 ok(IsEqualGUID(uExtent, &EXTENTID_WineTest), "uExtent wasn't correct\n");
2903 if (hrFault != S_OK)
2904 trace("\thrFault = 0x%08x\n", hrFault);
2906 *pDataSize = 0;
2909 static void WINAPI TestChannelHook_ServerFillBuffer(
2910 IChannelHook *iface,
2911 REFGUID uExtent,
2912 REFIID riid,
2913 ULONG *pDataSize,
2914 void *pDataBuffer,
2915 HRESULT hrFault )
2917 trace("TestChannelHook_ServerFillBuffer\n");
2918 ok(0, "TestChannelHook_ServerFillBuffer shouldn't be called\n");
2921 static const IChannelHookVtbl TestChannelHookVtbl =
2923 TestChannelHook_QueryInterface,
2924 TestChannelHook_AddRef,
2925 TestChannelHook_Release,
2926 TestChannelHook_ClientGetSize,
2927 TestChannelHook_ClientFillBuffer,
2928 TestChannelHook_ClientNotify,
2929 TestChannelHook_ServerNotify,
2930 TestChannelHook_ServerGetSize,
2931 TestChannelHook_ServerFillBuffer,
2934 static IChannelHook TestChannelHook = { &TestChannelHookVtbl };
2936 static void test_channel_hook(void)
2938 IStream *pStream = NULL;
2939 IClassFactory *cf = NULL;
2940 DWORD tid;
2941 IUnknown *proxy = NULL;
2942 HANDLE thread;
2943 HRESULT hr;
2945 hr = CoRegisterChannelHook(&EXTENTID_WineTest, &TestChannelHook);
2946 ok_ole_success(hr, CoRegisterChannelHook);
2948 hr = CoRegisterMessageFilter(&MessageFilter, NULL);
2949 ok_ole_success(hr, CoRegisterMessageFilter);
2951 cLocks = 0;
2953 hr = CreateStreamOnHGlobal(NULL, TRUE, &pStream);
2954 ok_ole_success(hr, CreateStreamOnHGlobal);
2955 tid = start_host_object2(pStream, &IID_IClassFactory, (IUnknown*)&Test_ClassFactory, MSHLFLAGS_NORMAL, &MessageFilter, &thread);
2957 ok_more_than_one_lock();
2959 IStream_Seek(pStream, ullZero, STREAM_SEEK_SET, NULL);
2960 hr = CoUnmarshalInterface(pStream, &IID_IClassFactory, (void **)&cf);
2961 ok_ole_success(hr, CoUnmarshalInterface);
2962 IStream_Release(pStream);
2964 ok_more_than_one_lock();
2966 hr = IClassFactory_CreateInstance(cf, NULL, &IID_IUnknown, (LPVOID*)&proxy);
2967 ok_ole_success(hr, IClassFactory_CreateInstance);
2968 IUnknown_Release(proxy);
2970 IClassFactory_Release(cf);
2972 ok_no_locks();
2974 end_host_object(tid, thread);
2976 hr = CoRegisterMessageFilter(NULL, NULL);
2977 ok_ole_success(hr, CoRegisterMessageFilter);
2980 START_TEST(marshal)
2982 HMODULE hOle32 = GetModuleHandle("ole32");
2983 int argc;
2984 char **argv;
2986 if (!(pCoInitializeEx = (void*)GetProcAddress(hOle32, "CoInitializeEx"))) goto no_test;
2988 argc = winetest_get_mainargs( &argv );
2989 if (argc > 2 && (!strcmp(argv[2], "-Embedding")))
2991 pCoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
2992 test_register_local_server();
2993 CoUninitialize();
2995 return;
2998 register_test_window();
3000 test_cocreateinstance_proxy();
3002 pCoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
3004 /* FIXME: test CoCreateInstanceEx */
3006 /* lifecycle management and marshaling tests */
3007 test_no_marshaler();
3008 test_normal_marshal_and_release();
3009 test_normal_marshal_and_unmarshal();
3010 test_marshal_and_unmarshal_invalid();
3011 test_same_apartment_unmarshal_failure();
3012 test_interthread_marshal_and_unmarshal();
3013 test_proxy_marshal_and_unmarshal();
3014 test_proxy_marshal_and_unmarshal2();
3015 test_proxy_marshal_and_unmarshal_weak();
3016 test_proxy_marshal_and_unmarshal_strong();
3017 test_marshal_stub_apartment_shutdown();
3018 test_marshal_proxy_apartment_shutdown();
3019 test_marshal_proxy_mta_apartment_shutdown();
3020 test_no_couninitialize_server();
3021 test_no_couninitialize_client();
3022 test_tableweak_marshal_and_unmarshal_twice();
3023 test_tableweak_marshal_releasedata1();
3024 test_tableweak_marshal_releasedata2();
3025 test_tableweak_and_normal_marshal_and_unmarshal();
3026 test_tablestrong_marshal_and_unmarshal_twice();
3027 test_lock_object_external();
3028 test_disconnect_stub();
3029 test_normal_marshal_and_unmarshal_twice();
3030 test_hresult_marshaling();
3031 test_proxy_used_in_wrong_thread();
3032 test_message_filter();
3033 test_bad_marshal_stream();
3034 test_proxy_interfaces();
3035 test_stubbuffer(&IID_IClassFactory);
3036 test_proxybuffer(&IID_IClassFactory);
3037 test_message_reentrancy();
3038 test_call_from_message();
3039 test_WM_QUIT_handling();
3040 test_freethreadedmarshaler();
3041 test_inproc_handler();
3042 test_handler_marshaling();
3043 test_client_security();
3045 test_local_server();
3047 test_globalinterfacetable();
3049 /* must be last test as channel hooks can't be unregistered */
3050 test_channel_hook();
3052 CoUninitialize();
3053 return;
3055 no_test:
3056 trace("You need DCOM95 installed to run this test\n");
3057 return;