2 * Component Object Tests
4 * Copyright 2005 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
28 #define USE_COM_CONTEXT_DEF
32 #include "urlmon.h" /* for CLSID_FileProtocol */
36 #include "wine/test.h"
38 /* functions that are not present on all versions of Windows */
39 HRESULT (WINAPI
* pCoInitializeEx
)(LPVOID lpReserved
, DWORD dwCoInit
);
40 HRESULT (WINAPI
* pCoGetObjectContext
)(REFIID riid
, LPVOID
*ppv
);
41 HRESULT (WINAPI
* pCoSwitchCallContext
)(IUnknown
*pObject
, IUnknown
**ppOldObject
);
42 HRESULT (WINAPI
* pCoGetTreatAsClass
)(REFCLSID clsidOld
, LPCLSID pClsidNew
);
43 HRESULT (WINAPI
* pCoGetContextToken
)(ULONG_PTR
*token
);
45 #define ok_ole_success(hr, func) ok(hr == S_OK, func " failed with error 0x%08x\n", hr)
46 #define ok_more_than_one_lock() ok(cLocks > 0, "Number of locks should be > 0, but actually is %d\n", cLocks)
47 #define ok_no_locks() ok(cLocks == 0, "Number of locks should be 0, but actually is %d\n", cLocks)
49 static const CLSID CLSID_non_existent
= { 0x12345678, 0x1234, 0x1234, { 0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf0 } };
50 static const CLSID CLSID_StdFont
= { 0x0be35203, 0x8f91, 0x11ce, { 0x9d, 0xe3, 0x00, 0xaa, 0x00, 0x4b, 0xb8, 0x51 } };
51 static WCHAR stdfont
[] = {'S','t','d','F','o','n','t',0};
52 static const WCHAR wszNonExistent
[] = {'N','o','n','E','x','i','s','t','e','n','t',0};
53 static WCHAR wszCLSID_StdFont
[] =
55 '{','0','b','e','3','5','2','0','3','-','8','f','9','1','-','1','1','c','e','-',
56 '9','d','e','3','-','0','0','a','a','0','0','4','b','b','8','5','1','}',0
59 static const IID IID_IWineTest
=
64 {0xa1, 0xa2, 0x5d, 0x5a, 0x36, 0x54, 0xd3, 0xbd}
65 }; /* 5201163f-8164-4fd0-a1a2-5d5a3654d3bd */
66 static const CLSID CLSID_WineOOPTest
= {
70 {0xa1, 0xa2, 0x5d, 0x5a, 0x36, 0x54, 0xd3, 0xbd}
71 }; /* 5201163f-8164-4fd0-a1a2-5d5a3654d3bd */
75 static void LockModule(void)
77 InterlockedIncrement(&cLocks
);
80 static void UnlockModule(void)
82 InterlockedDecrement(&cLocks
);
85 static HRESULT WINAPI
Test_IClassFactory_QueryInterface(
90 if (ppvObj
== NULL
) return E_POINTER
;
92 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
93 IsEqualGUID(riid
, &IID_IClassFactory
))
96 IClassFactory_AddRef(iface
);
101 return E_NOINTERFACE
;
104 static ULONG WINAPI
Test_IClassFactory_AddRef(LPCLASSFACTORY iface
)
107 return 2; /* non-heap-based object */
110 static ULONG WINAPI
Test_IClassFactory_Release(LPCLASSFACTORY iface
)
113 return 1; /* non-heap-based object */
116 static HRESULT WINAPI
Test_IClassFactory_CreateInstance(
117 LPCLASSFACTORY iface
,
123 if (pUnkOuter
) return CLASS_E_NOAGGREGATION
;
124 return E_NOINTERFACE
;
127 static HRESULT WINAPI
Test_IClassFactory_LockServer(
128 LPCLASSFACTORY iface
,
134 static const IClassFactoryVtbl TestClassFactory_Vtbl
=
136 Test_IClassFactory_QueryInterface
,
137 Test_IClassFactory_AddRef
,
138 Test_IClassFactory_Release
,
139 Test_IClassFactory_CreateInstance
,
140 Test_IClassFactory_LockServer
143 static IClassFactory Test_ClassFactory
= { &TestClassFactory_Vtbl
};
145 static void test_ProgIDFromCLSID(void)
148 HRESULT hr
= ProgIDFromCLSID(&CLSID_StdFont
, &progid
);
149 ok(hr
== S_OK
, "ProgIDFromCLSID failed with error 0x%08x\n", hr
);
152 ok(!lstrcmpiW(progid
, stdfont
), "Didn't get expected prog ID\n");
153 CoTaskMemFree(progid
);
156 progid
= (LPWSTR
)0xdeadbeef;
157 hr
= ProgIDFromCLSID(&CLSID_non_existent
, &progid
);
158 ok(hr
== REGDB_E_CLASSNOTREG
, "ProgIDFromCLSID returned %08x\n", hr
);
159 ok(progid
== NULL
, "ProgIDFromCLSID returns with progid %p\n", progid
);
161 hr
= ProgIDFromCLSID(&CLSID_StdFont
, NULL
);
162 ok(hr
== E_INVALIDARG
, "ProgIDFromCLSID should return E_INVALIDARG instead of 0x%08x\n", hr
);
165 static void test_CLSIDFromProgID(void)
168 HRESULT hr
= CLSIDFromProgID(stdfont
, &clsid
);
169 ok(hr
== S_OK
, "CLSIDFromProgID failed with error 0x%08x\n", hr
);
170 ok(IsEqualCLSID(&clsid
, &CLSID_StdFont
), "clsid wasn't equal to CLSID_StdFont\n");
172 hr
= CLSIDFromString(stdfont
, &clsid
);
173 ok_ole_success(hr
, "CLSIDFromString");
174 ok(IsEqualCLSID(&clsid
, &CLSID_StdFont
), "clsid wasn't equal to CLSID_StdFont\n");
176 /* test some failure cases */
178 hr
= CLSIDFromProgID(wszNonExistent
, NULL
);
179 ok(hr
== E_INVALIDARG
, "CLSIDFromProgID should have returned E_INVALIDARG instead of 0x%08x\n", hr
);
181 hr
= CLSIDFromProgID(NULL
, &clsid
);
182 ok(hr
== E_INVALIDARG
, "CLSIDFromProgID should have returned E_INVALIDARG instead of 0x%08x\n", hr
);
184 memset(&clsid
, 0xcc, sizeof(clsid
));
185 hr
= CLSIDFromProgID(wszNonExistent
, &clsid
);
186 ok(hr
== CO_E_CLASSSTRING
, "CLSIDFromProgID on nonexistent ProgID should have returned CO_E_CLASSSTRING instead of 0x%08x\n", hr
);
187 ok(IsEqualCLSID(&clsid
, &CLSID_NULL
), "CLSIDFromProgID should have set clsid to all-zeros on failure\n");
190 static void test_CLSIDFromString(void)
193 HRESULT hr
= CLSIDFromString(wszCLSID_StdFont
, &clsid
);
194 ok_ole_success(hr
, "CLSIDFromString");
195 ok(IsEqualCLSID(&clsid
, &CLSID_StdFont
), "clsid wasn't equal to CLSID_StdFont\n");
197 hr
= CLSIDFromString(NULL
, &clsid
);
198 ok_ole_success(hr
, "CLSIDFromString");
199 ok(IsEqualCLSID(&clsid
, &CLSID_NULL
), "clsid wasn't equal to CLSID_NULL\n");
202 static void test_StringFromGUID2(void)
206 /* Test corner cases for buffer size */
207 len
= StringFromGUID2(&CLSID_StdFont
,str
,50);
208 ok(len
== 39, "len: %d (expected 39)\n", len
);
209 ok(!lstrcmpiW(str
, wszCLSID_StdFont
),"string wasn't equal for CLSID_StdFont\n");
211 memset(str
,0,sizeof str
);
212 len
= StringFromGUID2(&CLSID_StdFont
,str
,39);
213 ok(len
== 39, "len: %d (expected 39)\n", len
);
214 ok(!lstrcmpiW(str
, wszCLSID_StdFont
),"string wasn't equal for CLSID_StdFont\n");
216 len
= StringFromGUID2(&CLSID_StdFont
,str
,38);
217 ok(len
== 0, "len: %d (expected 0)\n", len
);
219 len
= StringFromGUID2(&CLSID_StdFont
,str
,30);
220 ok(len
== 0, "len: %d (expected 0)\n", len
);
228 static DWORD CALLBACK
ole_initialize_thread(LPVOID pv
)
231 struct info
*info
= pv
;
233 hr
= pCoInitializeEx(NULL
, COINIT_MULTITHREADED
);
235 SetEvent(info
->wait
);
236 WaitForSingleObject(info
->stop
, INFINITE
);
242 static void test_CoCreateInstance(void)
249 REFCLSID rclsid
= &CLSID_InternetZoneManager
;
251 pUnk
= (IUnknown
*)0xdeadbeef;
252 hr
= CoCreateInstance(rclsid
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IUnknown
, (void **)&pUnk
);
253 ok(hr
== CO_E_NOTINITIALIZED
, "CoCreateInstance should have returned CO_E_NOTINITIALIZED instead of 0x%08x\n", hr
);
254 ok(pUnk
== NULL
, "CoCreateInstance should have changed the passed in pointer to NULL, instead of %p\n", pUnk
);
257 hr
= CoCreateInstance(rclsid
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IUnknown
, (void **)&pUnk
);
258 if(hr
== REGDB_E_CLASSNOTREG
)
260 skip("IE not installed so can't test CoCreateInstance\n");
265 ok_ole_success(hr
, "CoCreateInstance");
266 if(pUnk
) IUnknown_Release(pUnk
);
269 hr
= CoCreateInstance(rclsid
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IUnknown
, (void **)&pUnk
);
270 ok(hr
== CO_E_NOTINITIALIZED
, "CoCreateInstance should have returned CO_E_NOTINITIALIZED instead of 0x%08x\n", hr
);
272 /* show that COM doesn't have to be initialized for multi-threaded apartments if another
273 thread has already done so */
275 info
.wait
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
276 ok(info
.wait
!= NULL
, "CreateEvent failed with error %d\n", GetLastError());
278 info
.stop
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
279 ok(info
.stop
!= NULL
, "CreateEvent failed with error %d\n", GetLastError());
281 thread
= CreateThread(NULL
, 0, ole_initialize_thread
, &info
, 0, &tid
);
282 ok(thread
!= NULL
, "CreateThread failed with error %d\n", GetLastError());
284 WaitForSingleObject(info
.wait
, INFINITE
);
286 pUnk
= (IUnknown
*)0xdeadbeef;
287 hr
= CoCreateInstance(rclsid
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IUnknown
, (void **)&pUnk
);
288 ok(hr
== S_OK
, "CoCreateInstance should have returned S_OK instead of 0x%08x\n", hr
);
289 if (pUnk
) IUnknown_Release(pUnk
);
292 WaitForSingleObject(thread
, INFINITE
);
294 GetExitCodeThread(thread
, &exitcode
);
296 ok(hr
== S_OK
, "thread should have returned S_OK instead of 0x%08x\n", hr
);
299 CloseHandle(info
.wait
);
300 CloseHandle(info
.stop
);
303 static void test_CoGetClassObject(void)
310 REFCLSID rclsid
= &CLSID_InternetZoneManager
;
312 hr
= CoGetClassObject(rclsid
, CLSCTX_INPROC_SERVER
, NULL
, &IID_IUnknown
, (void **)&pUnk
);
313 ok(hr
== CO_E_NOTINITIALIZED
, "CoGetClassObject should have returned CO_E_NOTINITIALIZED instead of 0x%08x\n", hr
);
314 ok(pUnk
== NULL
, "CoGetClassObject should have changed the passed in pointer to NULL, instead of %p\n", pUnk
);
316 hr
= CoGetClassObject(rclsid
, CLSCTX_INPROC_SERVER
, NULL
, &IID_IUnknown
, NULL
);
317 ok(hr
== E_INVALIDARG
||
318 broken(hr
== CO_E_NOTINITIALIZED
), /* win9x */
319 "CoGetClassObject should have returned E_INVALIDARG instead of 0x%08x\n", hr
);
321 /* show that COM doesn't have to be initialized for multi-threaded apartments if another
322 thread has already done so */
324 info
.wait
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
325 ok(info
.wait
!= NULL
, "CreateEvent failed with error %d\n", GetLastError());
327 info
.stop
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
328 ok(info
.stop
!= NULL
, "CreateEvent failed with error %d\n", GetLastError());
330 thread
= CreateThread(NULL
, 0, ole_initialize_thread
, &info
, 0, &tid
);
331 ok(thread
!= NULL
, "CreateThread failed with error %d\n", GetLastError());
333 WaitForSingleObject(info
.wait
, INFINITE
);
335 pUnk
= (IUnknown
*)0xdeadbeef;
336 hr
= CoGetClassObject(rclsid
, CLSCTX_INPROC_SERVER
, NULL
, &IID_IUnknown
, (void **)&pUnk
);
337 if(hr
== REGDB_E_CLASSNOTREG
)
338 skip("IE not installed so can't test CoGetClassObject\n");
341 ok(hr
== S_OK
, "CoGetClassObject should have returned S_OK instead of 0x%08x\n", hr
);
342 if (pUnk
) IUnknown_Release(pUnk
);
346 WaitForSingleObject(thread
, INFINITE
);
348 GetExitCodeThread(thread
, &exitcode
);
350 ok(hr
== S_OK
, "thread should have returned S_OK instead of 0x%08x\n", hr
);
353 CloseHandle(info
.wait
);
354 CloseHandle(info
.stop
);
357 static ATOM
register_dummy_class(void)
365 GetModuleHandle(NULL
),
367 LoadCursor(NULL
, IDC_ARROW
),
368 (HBRUSH
)(COLOR_BTNFACE
+1),
370 TEXT("WineOleTestClass"),
373 return RegisterClass(&wc
);
376 static void test_ole_menu(void)
381 hwndFrame
= CreateWindow(MAKEINTATOM(register_dummy_class()), "Test", 0, CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
, NULL
, NULL
, NULL
, NULL
);
382 hr
= OleSetMenuDescriptor(NULL
, hwndFrame
, NULL
, NULL
, NULL
);
383 todo_wine
ok_ole_success(hr
, "OleSetMenuDescriptor");
385 DestroyWindow(hwndFrame
);
389 static HRESULT WINAPI
MessageFilter_QueryInterface(IMessageFilter
*iface
, REFIID riid
, void ** ppvObj
)
391 if (ppvObj
== NULL
) return E_POINTER
;
393 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
394 IsEqualGUID(riid
, &IID_IClassFactory
))
397 IMessageFilter_AddRef(iface
);
401 return E_NOINTERFACE
;
404 static ULONG WINAPI
MessageFilter_AddRef(IMessageFilter
*iface
)
406 return 2; /* non-heap object */
409 static ULONG WINAPI
MessageFilter_Release(IMessageFilter
*iface
)
411 return 1; /* non-heap object */
414 static DWORD WINAPI
MessageFilter_HandleInComingCall(
415 IMessageFilter
*iface
,
417 HTASK threadIDCaller
,
419 LPINTERFACEINFO lpInterfaceInfo
)
421 trace("HandleInComingCall\n");
422 return SERVERCALL_ISHANDLED
;
425 static DWORD WINAPI
MessageFilter_RetryRejectedCall(
426 IMessageFilter
*iface
,
427 HTASK threadIDCallee
,
431 trace("RetryRejectedCall\n");
435 static DWORD WINAPI
MessageFilter_MessagePending(
436 IMessageFilter
*iface
,
437 HTASK threadIDCallee
,
441 trace("MessagePending\n");
442 return PENDINGMSG_WAITNOPROCESS
;
445 static const IMessageFilterVtbl MessageFilter_Vtbl
=
447 MessageFilter_QueryInterface
,
448 MessageFilter_AddRef
,
449 MessageFilter_Release
,
450 MessageFilter_HandleInComingCall
,
451 MessageFilter_RetryRejectedCall
,
452 MessageFilter_MessagePending
455 static IMessageFilter MessageFilter
= { &MessageFilter_Vtbl
};
457 static void test_CoRegisterMessageFilter(void)
460 IMessageFilter
*prev_filter
;
462 hr
= CoRegisterMessageFilter(&MessageFilter
, &prev_filter
);
463 ok(hr
== CO_E_NOT_SUPPORTED
,
464 "CoRegisterMessageFilter should have failed with CO_E_NOT_SUPPORTED instead of 0x%08x\n",
467 pCoInitializeEx(NULL
, COINIT_MULTITHREADED
);
468 prev_filter
= (IMessageFilter
*)0xdeadbeef;
469 hr
= CoRegisterMessageFilter(&MessageFilter
, &prev_filter
);
470 ok(hr
== CO_E_NOT_SUPPORTED
,
471 "CoRegisterMessageFilter should have failed with CO_E_NOT_SUPPORTED instead of 0x%08x\n",
473 ok(prev_filter
== (IMessageFilter
*)0xdeadbeef,
474 "prev_filter should have been set to %p\n", prev_filter
);
477 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
479 hr
= CoRegisterMessageFilter(NULL
, NULL
);
480 ok_ole_success(hr
, "CoRegisterMessageFilter");
482 prev_filter
= (IMessageFilter
*)0xdeadbeef;
483 hr
= CoRegisterMessageFilter(NULL
, &prev_filter
);
484 ok_ole_success(hr
, "CoRegisterMessageFilter");
485 ok(prev_filter
== NULL
, "prev_filter should have been set to NULL instead of %p\n", prev_filter
);
487 hr
= CoRegisterMessageFilter(&MessageFilter
, &prev_filter
);
488 ok_ole_success(hr
, "CoRegisterMessageFilter");
489 ok(prev_filter
== NULL
, "prev_filter should have been set to NULL instead of %p\n", prev_filter
);
491 hr
= CoRegisterMessageFilter(NULL
, NULL
);
492 ok_ole_success(hr
, "CoRegisterMessageFilter");
497 static HRESULT WINAPI
Test_IUnknown_QueryInterface(
502 if (ppvObj
== NULL
) return E_POINTER
;
504 if (IsEqualIID(riid
, &IID_IUnknown
) ||
505 IsEqualIID(riid
, &IID_IWineTest
))
508 IUnknown_AddRef(iface
);
513 return E_NOINTERFACE
;
516 static ULONG WINAPI
Test_IUnknown_AddRef(LPUNKNOWN iface
)
518 return 2; /* non-heap-based object */
521 static ULONG WINAPI
Test_IUnknown_Release(LPUNKNOWN iface
)
523 return 1; /* non-heap-based object */
526 static const IUnknownVtbl TestUnknown_Vtbl
=
528 Test_IUnknown_QueryInterface
,
529 Test_IUnknown_AddRef
,
530 Test_IUnknown_Release
,
533 static IUnknown Test_Unknown
= { &TestUnknown_Vtbl
};
535 static HRESULT WINAPI
PSFactoryBuffer_QueryInterface(
536 IPSFactoryBuffer
* This
,
537 /* [in] */ REFIID riid
,
538 /* [iid_is][out] */ void **ppvObject
)
540 if (IsEqualIID(riid
, &IID_IUnknown
) ||
541 IsEqualIID(riid
, &IID_IPSFactoryBuffer
))
544 IPSFactoryBuffer_AddRef(This
);
547 return E_NOINTERFACE
;
550 static ULONG WINAPI
PSFactoryBuffer_AddRef(
551 IPSFactoryBuffer
* This
)
556 static ULONG WINAPI
PSFactoryBuffer_Release(
557 IPSFactoryBuffer
* This
)
562 static HRESULT WINAPI
PSFactoryBuffer_CreateProxy(
563 IPSFactoryBuffer
* This
,
564 /* [in] */ IUnknown
*pUnkOuter
,
565 /* [in] */ REFIID riid
,
566 /* [out] */ IRpcProxyBuffer
**ppProxy
,
567 /* [out] */ void **ppv
)
572 static HRESULT WINAPI
PSFactoryBuffer_CreateStub(
573 IPSFactoryBuffer
* This
,
574 /* [in] */ REFIID riid
,
575 /* [unique][in] */ IUnknown
*pUnkServer
,
576 /* [out] */ IRpcStubBuffer
**ppStub
)
581 static IPSFactoryBufferVtbl PSFactoryBufferVtbl
=
583 PSFactoryBuffer_QueryInterface
,
584 PSFactoryBuffer_AddRef
,
585 PSFactoryBuffer_Release
,
586 PSFactoryBuffer_CreateProxy
,
587 PSFactoryBuffer_CreateStub
590 static IPSFactoryBuffer PSFactoryBuffer
= { &PSFactoryBufferVtbl
};
592 static const CLSID CLSID_WineTestPSFactoryBuffer
=
597 {0xa1, 0xa2, 0x5d, 0x5a, 0x36, 0x54, 0xd3, 0xbd}
598 }; /* 52011640-8164-4fd0-a1a2-5d5a3654d3bd */
600 static void test_CoRegisterPSClsid(void)
603 DWORD dwRegistrationKey
;
607 hr
= CoRegisterPSClsid(&IID_IWineTest
, &CLSID_WineTestPSFactoryBuffer
);
608 ok(hr
== CO_E_NOTINITIALIZED
, "CoRegisterPSClsid should have returened CO_E_NOTINITIALIZED instead of 0x%08x\n", hr
);
610 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
612 hr
= CoRegisterClassObject(&CLSID_WineTestPSFactoryBuffer
, (IUnknown
*)&PSFactoryBuffer
,
613 CLSCTX_INPROC_SERVER
, REGCLS_MULTIPLEUSE
, &dwRegistrationKey
);
614 ok_ole_success(hr
, "CoRegisterClassObject");
616 hr
= CoRegisterPSClsid(&IID_IWineTest
, &CLSID_WineTestPSFactoryBuffer
);
617 ok_ole_success(hr
, "CoRegisterPSClsid");
619 hr
= CreateStreamOnHGlobal(NULL
, TRUE
, &stream
);
620 ok_ole_success(hr
, "CreateStreamOnHGlobal");
622 hr
= CoMarshalInterface(stream
, &IID_IWineTest
, &Test_Unknown
, MSHCTX_INPROC
, NULL
, MSHLFLAGS_NORMAL
);
623 ok(hr
== E_NOTIMPL
, "CoMarshalInterface should have returned E_NOTIMPL instead of 0x%08x\n", hr
);
624 IStream_Release(stream
);
626 hr
= CoRevokeClassObject(dwRegistrationKey
);
627 ok_ole_success(hr
, "CoRevokeClassObject");
631 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
633 hr
= CoGetPSClsid(&IID_IWineTest
, &clsid
);
634 ok(hr
== REGDB_E_IIDNOTREG
, "CoGetPSClsid should have returned REGDB_E_IIDNOTREG instead of 0x%08x\n", hr
);
639 static void test_CoGetPSClsid(void)
644 hr
= CoGetPSClsid(&IID_IClassFactory
, &clsid
);
645 ok(hr
== CO_E_NOTINITIALIZED
,
646 "CoGetPSClsid should have returned CO_E_NOTINITIALIZED instead of 0x%08x\n",
649 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
651 hr
= CoGetPSClsid(&IID_IClassFactory
, &clsid
);
652 ok_ole_success(hr
, "CoGetPSClsid");
654 hr
= CoGetPSClsid(&IID_IWineTest
, &clsid
);
655 ok(hr
== REGDB_E_IIDNOTREG
,
656 "CoGetPSClsid for random IID returned 0x%08x instead of REGDB_E_IIDNOTREG\n",
659 hr
= CoGetPSClsid(&IID_IClassFactory
, NULL
);
660 ok(hr
== E_INVALIDARG
,
661 "CoGetPSClsid for null clsid returned 0x%08x instead of E_INVALIDARG\n",
667 /* basic test, mainly for invalid arguments. see marshal.c for more */
668 static void test_CoUnmarshalInterface(void)
674 hr
= CoUnmarshalInterface(NULL
, &IID_IUnknown
, (void **)&pProxy
);
675 ok(hr
== E_INVALIDARG
, "CoUnmarshalInterface should have returned E_INVALIDARG instead of 0x%08x\n", hr
);
677 hr
= CreateStreamOnHGlobal(NULL
, TRUE
, &pStream
);
678 ok_ole_success(hr
, "CreateStreamOnHGlobal");
680 hr
= CoUnmarshalInterface(pStream
, &IID_IUnknown
, (void **)&pProxy
);
682 ok(hr
== CO_E_NOTINITIALIZED
, "CoUnmarshalInterface should have returned CO_E_NOTINITIALIZED instead of 0x%08x\n", hr
);
684 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
686 hr
= CoUnmarshalInterface(pStream
, &IID_IUnknown
, (void **)&pProxy
);
687 ok(hr
== STG_E_READFAULT
, "CoUnmarshalInterface should have returned STG_E_READFAULT instead of 0x%08x\n", hr
);
691 hr
= CoUnmarshalInterface(pStream
, &IID_IUnknown
, NULL
);
692 ok(hr
== E_INVALIDARG
, "CoUnmarshalInterface should have returned E_INVALIDARG instead of 0x%08x\n", hr
);
694 IStream_Release(pStream
);
697 static void test_CoGetInterfaceAndReleaseStream(void)
702 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
704 hr
= CoGetInterfaceAndReleaseStream(NULL
, &IID_IUnknown
, (void**)&pUnk
);
705 ok(hr
== E_INVALIDARG
, "hr %08x\n", hr
);
710 /* basic test, mainly for invalid arguments. see marshal.c for more */
711 static void test_CoMarshalInterface(void)
715 static const LARGE_INTEGER llZero
;
717 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
719 hr
= CreateStreamOnHGlobal(NULL
, TRUE
, &pStream
);
720 ok_ole_success(hr
, "CreateStreamOnHGlobal");
722 hr
= CoMarshalInterface(pStream
, &IID_IUnknown
, NULL
, MSHCTX_INPROC
, NULL
, MSHLFLAGS_NORMAL
);
723 ok(hr
== E_INVALIDARG
, "CoMarshalInterface should have returned E_INVALIDARG instead of 0x%08x\n", hr
);
725 hr
= CoMarshalInterface(NULL
, &IID_IUnknown
, (IUnknown
*)&Test_ClassFactory
, MSHCTX_INPROC
, NULL
, MSHLFLAGS_NORMAL
);
726 ok(hr
== E_INVALIDARG
, "CoMarshalInterface should have returned E_INVALIDARG instead of 0x%08x\n", hr
);
728 hr
= CoMarshalInterface(pStream
, &IID_IUnknown
, (IUnknown
*)&Test_ClassFactory
, MSHCTX_INPROC
, NULL
, MSHLFLAGS_NORMAL
);
729 ok_ole_success(hr
, "CoMarshalInterface");
731 /* stream not rewound */
732 hr
= CoReleaseMarshalData(pStream
);
733 ok(hr
== STG_E_READFAULT
, "CoReleaseMarshalData should have returned STG_E_READFAULT instead of 0x%08x\n", hr
);
735 hr
= IStream_Seek(pStream
, llZero
, STREAM_SEEK_SET
, NULL
);
736 ok_ole_success(hr
, "IStream_Seek");
738 hr
= CoReleaseMarshalData(pStream
);
739 ok_ole_success(hr
, "CoReleaseMarshalData");
741 IStream_Release(pStream
);
746 static void test_CoMarshalInterThreadInterfaceInStream(void)
750 IClassFactory
*pProxy
;
752 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
756 hr
= CoMarshalInterThreadInterfaceInStream(&IID_IUnknown
, (IUnknown
*)&Test_ClassFactory
, NULL
);
757 ok(hr
== E_INVALIDARG
, "CoMarshalInterThreadInterfaceInStream should have returned E_INVALIDARG instead of 0x%08x\n", hr
);
759 hr
= CoMarshalInterThreadInterfaceInStream(&IID_IUnknown
, NULL
, &pStream
);
760 ok(hr
== E_INVALIDARG
, "CoMarshalInterThreadInterfaceInStream should have returned E_INVALIDARG instead of 0x%08x\n", hr
);
764 hr
= CoMarshalInterThreadInterfaceInStream(&IID_IUnknown
, (IUnknown
*)&Test_ClassFactory
, &pStream
);
765 ok_ole_success(hr
, "CoMarshalInterThreadInterfaceInStream");
767 ok_more_than_one_lock();
769 hr
= CoUnmarshalInterface(pStream
, &IID_IClassFactory
, (void **)&pProxy
);
770 ok_ole_success(hr
, "CoUnmarshalInterface");
772 IClassFactory_Release(pProxy
);
773 IStream_Release(pStream
);
780 static void test_CoRegisterClassObject(void)
786 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
788 /* CLSCTX_INPROC_SERVER */
789 hr
= CoRegisterClassObject(&CLSID_WineOOPTest
, (IUnknown
*)&Test_ClassFactory
,
790 CLSCTX_INPROC_SERVER
, REGCLS_SINGLEUSE
, &cookie
);
791 ok_ole_success(hr
, "CoRegisterClassObject");
792 hr
= CoRevokeClassObject(cookie
);
793 ok_ole_success(hr
, "CoRevokeClassObject");
795 hr
= CoRegisterClassObject(&CLSID_WineOOPTest
, (IUnknown
*)&Test_ClassFactory
,
796 CLSCTX_INPROC_SERVER
, REGCLS_MULTIPLEUSE
, &cookie
);
797 ok_ole_success(hr
, "CoRegisterClassObject");
798 hr
= CoRevokeClassObject(cookie
);
799 ok_ole_success(hr
, "CoRevokeClassObject");
801 hr
= CoRegisterClassObject(&CLSID_WineOOPTest
, (IUnknown
*)&Test_ClassFactory
,
802 CLSCTX_INPROC_SERVER
, REGCLS_MULTI_SEPARATE
, &cookie
);
803 ok_ole_success(hr
, "CoRegisterClassObject");
804 hr
= CoRevokeClassObject(cookie
);
805 ok_ole_success(hr
, "CoRevokeClassObject");
807 /* CLSCTX_LOCAL_SERVER */
808 hr
= CoRegisterClassObject(&CLSID_WineOOPTest
, (IUnknown
*)&Test_ClassFactory
,
809 CLSCTX_LOCAL_SERVER
, REGCLS_SINGLEUSE
, &cookie
);
810 ok_ole_success(hr
, "CoRegisterClassObject");
811 hr
= CoRevokeClassObject(cookie
);
812 ok_ole_success(hr
, "CoRevokeClassObject");
814 hr
= CoRegisterClassObject(&CLSID_WineOOPTest
, (IUnknown
*)&Test_ClassFactory
,
815 CLSCTX_LOCAL_SERVER
, REGCLS_MULTIPLEUSE
, &cookie
);
816 ok_ole_success(hr
, "CoRegisterClassObject");
817 hr
= CoRevokeClassObject(cookie
);
818 ok_ole_success(hr
, "CoRevokeClassObject");
820 hr
= CoRegisterClassObject(&CLSID_WineOOPTest
, (IUnknown
*)&Test_ClassFactory
,
821 CLSCTX_LOCAL_SERVER
, REGCLS_MULTI_SEPARATE
, &cookie
);
822 ok_ole_success(hr
, "CoRegisterClassObject");
823 hr
= CoRevokeClassObject(cookie
);
824 ok_ole_success(hr
, "CoRevokeClassObject");
826 /* CLSCTX_INPROC_SERVER|CLSCTX_LOCAL_SERVER */
827 hr
= CoRegisterClassObject(&CLSID_WineOOPTest
, (IUnknown
*)&Test_ClassFactory
,
828 CLSCTX_INPROC_SERVER
|CLSCTX_LOCAL_SERVER
, REGCLS_SINGLEUSE
, &cookie
);
829 ok_ole_success(hr
, "CoRegisterClassObject");
830 hr
= CoRevokeClassObject(cookie
);
831 ok_ole_success(hr
, "CoRevokeClassObject");
833 /* test whether registered class becomes invalid when apartment is destroyed */
834 hr
= CoRegisterClassObject(&CLSID_WineOOPTest
, (IUnknown
*)&Test_ClassFactory
,
835 CLSCTX_INPROC_SERVER
, REGCLS_SINGLEUSE
, &cookie
);
836 ok_ole_success(hr
, "CoRegisterClassObject");
839 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
841 hr
= CoGetClassObject(&CLSID_WineOOPTest
, CLSCTX_INPROC_SERVER
, NULL
,
842 &IID_IClassFactory
, (void **)&pcf
);
843 ok(hr
== REGDB_E_CLASSNOTREG
, "object registered in an apartment shouldn't accessible after it is destroyed\n");
845 /* crashes with at least win9x DCOM! */
847 hr
= CoRevokeClassObject(cookie
);
852 static HRESULT
get_class_object(CLSCTX clsctx
)
857 hr
= CoGetClassObject(&CLSID_WineOOPTest
, clsctx
, NULL
, &IID_IClassFactory
,
861 IClassFactory_Release(pcf
);
866 static DWORD CALLBACK
get_class_object_thread(LPVOID pv
)
868 CLSCTX clsctx
= (CLSCTX
)(DWORD_PTR
)pv
;
871 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
873 hr
= get_class_object(clsctx
);
880 static DWORD CALLBACK
get_class_object_proxy_thread(LPVOID pv
)
882 CLSCTX clsctx
= (CLSCTX
)(DWORD_PTR
)pv
;
887 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
889 hr
= CoGetClassObject(&CLSID_WineOOPTest
, clsctx
, NULL
, &IID_IClassFactory
,
894 hr
= IClassFactory_QueryInterface(pcf
, &IID_IMultiQI
, (void **)&pMQI
);
896 IMultiQI_Release(pMQI
);
897 IClassFactory_Release(pcf
);
905 static DWORD CALLBACK
register_class_object_thread(LPVOID pv
)
910 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
912 hr
= CoRegisterClassObject(&CLSID_WineOOPTest
, (IUnknown
*)&Test_ClassFactory
,
913 CLSCTX_INPROC_SERVER
, REGCLS_SINGLEUSE
, &cookie
);
920 static DWORD CALLBACK
revoke_class_object_thread(LPVOID pv
)
922 DWORD cookie
= (DWORD_PTR
)pv
;
925 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
927 hr
= CoRevokeClassObject(cookie
);
934 static void test_registered_object_thread_affinity(void)
942 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
944 /* CLSCTX_INPROC_SERVER */
946 hr
= CoRegisterClassObject(&CLSID_WineOOPTest
, (IUnknown
*)&Test_ClassFactory
,
947 CLSCTX_INPROC_SERVER
, REGCLS_SINGLEUSE
, &cookie
);
948 ok_ole_success(hr
, "CoRegisterClassObject");
950 thread
= CreateThread(NULL
, 0, get_class_object_thread
, (LPVOID
)CLSCTX_INPROC_SERVER
, 0, &tid
);
951 ok(thread
!= NULL
, "CreateThread failed with error %d\n", GetLastError());
952 WaitForSingleObject(thread
, INFINITE
);
953 GetExitCodeThread(thread
, &exitcode
);
955 ok(hr
== REGDB_E_CLASSNOTREG
, "CoGetClassObject on inproc object "
956 "registered in different thread should return REGDB_E_CLASSNOTREG "
957 "instead of 0x%08x\n", hr
);
959 hr
= get_class_object(CLSCTX_INPROC_SERVER
);
960 ok(hr
== S_OK
, "CoGetClassObject on inproc object registered in same "
961 "thread should return S_OK instead of 0x%08x\n", hr
);
963 thread
= CreateThread(NULL
, 0, register_class_object_thread
, NULL
, 0, &tid
);
964 ok(thread
!= NULL
, "CreateThread failed with error %d\n", GetLastError());
965 WaitForSingleObject(thread
, INFINITE
);
966 GetExitCodeThread(thread
, &exitcode
);
968 ok(hr
== S_OK
, "CoRegisterClassObject with same CLSID but in different thread should return S_OK instead of 0x%08x\n", hr
);
970 hr
= CoRevokeClassObject(cookie
);
971 ok_ole_success(hr
, "CoRevokeClassObject");
973 /* CLSCTX_LOCAL_SERVER */
975 hr
= CoRegisterClassObject(&CLSID_WineOOPTest
, (IUnknown
*)&Test_ClassFactory
,
976 CLSCTX_LOCAL_SERVER
, REGCLS_MULTIPLEUSE
, &cookie
);
977 ok_ole_success(hr
, "CoRegisterClassObject");
979 thread
= CreateThread(NULL
, 0, get_class_object_proxy_thread
, (LPVOID
)CLSCTX_LOCAL_SERVER
, 0, &tid
);
980 ok(thread
!= NULL
, "CreateThread failed with error %d\n", GetLastError());
981 while (MsgWaitForMultipleObjects(1, &thread
, FALSE
, INFINITE
, QS_ALLINPUT
) == WAIT_OBJECT_0
+ 1)
984 while (PeekMessageA(&msg
, NULL
, 0, 0, PM_REMOVE
))
986 TranslateMessage(&msg
);
987 DispatchMessageA(&msg
);
990 GetExitCodeThread(thread
, &exitcode
);
992 ok(hr
== S_OK
, "CoGetClassObject on local server object "
993 "registered in different thread should return S_OK "
994 "instead of 0x%08x\n", hr
);
996 hr
= get_class_object(CLSCTX_LOCAL_SERVER
);
997 ok(hr
== S_OK
, "CoGetClassObject on local server object registered in same "
998 "thread should return S_OK instead of 0x%08x\n", hr
);
1000 thread
= CreateThread(NULL
, 0, revoke_class_object_thread
, (LPVOID
)(DWORD_PTR
)cookie
, 0, &tid
);
1001 ok(thread
!= NULL
, "CreateThread failed with error %d\n", GetLastError());
1002 WaitForSingleObject(thread
, INFINITE
);
1003 GetExitCodeThread(thread
, &exitcode
);
1005 ok(hr
== RPC_E_WRONG_THREAD
, "CoRevokeClassObject called from different "
1006 "thread to where registered should return RPC_E_WRONG_THREAD instead of 0x%08x\n", hr
);
1008 thread
= CreateThread(NULL
, 0, register_class_object_thread
, NULL
, 0, &tid
);
1009 ok(thread
!= NULL
, "CreateThread failed with error %d\n", GetLastError());
1010 WaitForSingleObject(thread
, INFINITE
);
1011 GetExitCodeThread(thread
, &exitcode
);
1013 ok(hr
== S_OK
, "CoRegisterClassObject with same CLSID but in different "
1014 "thread should return S_OK instead of 0x%08x\n", hr
);
1016 hr
= CoRevokeClassObject(cookie
);
1017 ok_ole_success(hr
, "CoRevokeClassObject");
1022 static DWORD CALLBACK
free_libraries_thread(LPVOID p
)
1024 CoFreeUnusedLibraries();
1028 static inline BOOL
is_module_loaded(const char *module
)
1030 return GetModuleHandle(module
) ? TRUE
: FALSE
;
1033 static void test_CoFreeUnusedLibraries(void)
1040 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
1042 ok(!is_module_loaded("urlmon.dll"), "urlmon.dll shouldn't be loaded\n");
1044 hr
= CoCreateInstance(&CLSID_FileProtocol
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IInternetProtocol
, (void **)&pUnk
);
1045 if (hr
== REGDB_E_CLASSNOTREG
)
1047 skip("IE not installed so can't run CoFreeUnusedLibraries test\n");
1051 ok_ole_success(hr
, "CoCreateInstance");
1053 ok(is_module_loaded("urlmon.dll"), "urlmon.dll should be loaded\n");
1056 broken(pUnk
== NULL
), /* win9x */
1057 "Expected a valid pointer\n");
1059 IUnknown_Release(pUnk
);
1061 ok(is_module_loaded("urlmon.dll"), "urlmon.dll should be loaded\n");
1063 thread
= CreateThread(NULL
, 0, free_libraries_thread
, NULL
, 0, &tid
);
1064 WaitForSingleObject(thread
, INFINITE
);
1065 CloseHandle(thread
);
1067 ok(is_module_loaded("urlmon.dll"), "urlmon.dll should be loaded\n");
1069 CoFreeUnusedLibraries();
1071 ok(!is_module_loaded("urlmon.dll"), "urlmon.dll shouldn't be loaded\n");
1076 static void test_CoGetObjectContext(void)
1080 IComThreadingInfo
*pComThreadingInfo
;
1081 IContextCallback
*pContextCallback
;
1082 IObjContext
*pObjContext
;
1087 DWORD tid
, exitcode
;
1089 if (!pCoGetObjectContext
)
1091 skip("CoGetObjectContext not present\n");
1095 hr
= pCoGetObjectContext(&IID_IComThreadingInfo
, (void **)&pComThreadingInfo
);
1096 ok(hr
== CO_E_NOTINITIALIZED
, "CoGetObjectContext should have returned CO_E_NOTINITIALIZED instead of 0x%08x\n", hr
);
1097 ok(pComThreadingInfo
== NULL
, "pComThreadingInfo should have been set to NULL\n");
1099 /* show that COM doesn't have to be initialized for multi-threaded apartments if another
1100 thread has already done so */
1102 info
.wait
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1103 ok(info
.wait
!= NULL
, "CreateEvent failed with error %d\n", GetLastError());
1105 info
.stop
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1106 ok(info
.stop
!= NULL
, "CreateEvent failed with error %d\n", GetLastError());
1108 thread
= CreateThread(NULL
, 0, ole_initialize_thread
, &info
, 0, &tid
);
1109 ok(thread
!= NULL
, "CreateThread failed with error %d\n", GetLastError());
1111 WaitForSingleObject(info
.wait
, INFINITE
);
1113 pComThreadingInfo
= NULL
;
1114 hr
= pCoGetObjectContext(&IID_IComThreadingInfo
, (void **)&pComThreadingInfo
);
1115 ok(hr
== S_OK
, "Expected S_OK, got 0x%08x\n", hr
);
1116 IComThreadingInfo_Release(pComThreadingInfo
);
1118 SetEvent(info
.stop
);
1119 WaitForSingleObject(thread
, INFINITE
);
1121 GetExitCodeThread(thread
, &exitcode
);
1123 ok(hr
== S_OK
, "thread should have returned S_OK instead of 0x%08x\n", hr
);
1125 CloseHandle(thread
);
1126 CloseHandle(info
.wait
);
1127 CloseHandle(info
.stop
);
1129 pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
1131 hr
= pCoGetObjectContext(&IID_IComThreadingInfo
, (void **)&pComThreadingInfo
);
1132 ok_ole_success(hr
, "CoGetObjectContext");
1134 hr
= IComThreadingInfo_GetCurrentApartmentType(pComThreadingInfo
, &apttype
);
1135 ok_ole_success(hr
, "IComThreadingInfo_GetCurrentApartmentType");
1136 ok(apttype
== APTTYPE_MAINSTA
, "apartment type should be APTTYPE_MAINSTA instead of %d\n", apttype
);
1138 hr
= IComThreadingInfo_GetCurrentThreadType(pComThreadingInfo
, &thdtype
);
1139 ok_ole_success(hr
, "IComThreadingInfo_GetCurrentThreadType");
1140 ok(thdtype
== THDTYPE_PROCESSMESSAGES
, "thread type should be THDTYPE_PROCESSMESSAGES instead of %d\n", thdtype
);
1142 refs
= IComThreadingInfo_Release(pComThreadingInfo
);
1143 ok(refs
== 0, "pComThreadingInfo should have 0 refs instead of %d refs\n", refs
);
1145 hr
= pCoGetObjectContext(&IID_IContextCallback
, (void **)&pContextCallback
);
1146 ok_ole_success(hr
, "CoGetObjectContext(ContextCallback)");
1150 refs
= IContextCallback_Release(pContextCallback
);
1151 ok(refs
== 0, "pContextCallback should have 0 refs instead of %d refs\n", refs
);
1156 pCoInitializeEx(NULL
, COINIT_MULTITHREADED
);
1158 hr
= pCoGetObjectContext(&IID_IComThreadingInfo
, (void **)&pComThreadingInfo
);
1159 ok_ole_success(hr
, "CoGetObjectContext");
1161 hr
= IComThreadingInfo_GetCurrentApartmentType(pComThreadingInfo
, &apttype
);
1162 ok_ole_success(hr
, "IComThreadingInfo_GetCurrentApartmentType");
1163 ok(apttype
== APTTYPE_MTA
, "apartment type should be APTTYPE_MTA instead of %d\n", apttype
);
1165 hr
= IComThreadingInfo_GetCurrentThreadType(pComThreadingInfo
, &thdtype
);
1166 ok_ole_success(hr
, "IComThreadingInfo_GetCurrentThreadType");
1167 ok(thdtype
== THDTYPE_BLOCKMESSAGES
, "thread type should be THDTYPE_BLOCKMESSAGES instead of %d\n", thdtype
);
1169 refs
= IComThreadingInfo_Release(pComThreadingInfo
);
1170 ok(refs
== 0, "pComThreadingInfo should have 0 refs instead of %d refs\n", refs
);
1172 hr
= pCoGetObjectContext(&IID_IContextCallback
, (void **)&pContextCallback
);
1173 ok_ole_success(hr
, "CoGetObjectContext(ContextCallback)");
1177 refs
= IContextCallback_Release(pContextCallback
);
1178 ok(refs
== 0, "pContextCallback should have 0 refs instead of %d refs\n", refs
);
1181 hr
= pCoGetObjectContext(&IID_IObjContext
, (void **)&pObjContext
);
1182 ok_ole_success(hr
, "CoGetObjectContext");
1184 refs
= IObjContext_Release(pObjContext
);
1185 ok(refs
== 0, "pObjContext should have 0 refs instead of %d refs\n", refs
);
1191 const IUnknownVtbl
*lpVtbl
;
1195 static HRESULT WINAPI
Test_CallContext_QueryInterface(
1200 if (ppvObj
== NULL
) return E_POINTER
;
1202 if (IsEqualGUID(riid
, &IID_IUnknown
))
1205 IUnknown_AddRef(iface
);
1210 return E_NOINTERFACE
;
1213 static ULONG WINAPI
Test_CallContext_AddRef(IUnknown
*iface
)
1215 Test_CallContext
*This
= (Test_CallContext
*)iface
;
1216 return InterlockedIncrement(&This
->refs
);
1219 static ULONG WINAPI
Test_CallContext_Release(IUnknown
*iface
)
1221 Test_CallContext
*This
= (Test_CallContext
*)iface
;
1222 ULONG refs
= InterlockedDecrement(&This
->refs
);
1224 HeapFree(GetProcessHeap(), 0, This
);
1228 static const IUnknownVtbl TestCallContext_Vtbl
=
1230 Test_CallContext_QueryInterface
,
1231 Test_CallContext_AddRef
,
1232 Test_CallContext_Release
1235 static void test_CoGetCallContext(void)
1240 IUnknown
*test_object
;
1242 if (!pCoSwitchCallContext
)
1244 skip("CoSwitchCallContext not present\n");
1250 test_object
= HeapAlloc(GetProcessHeap(), 0, sizeof(Test_CallContext
));
1251 ((Test_CallContext
*)test_object
)->lpVtbl
= &TestCallContext_Vtbl
;
1252 ((Test_CallContext
*)test_object
)->refs
= 1;
1254 hr
= CoGetCallContext(&IID_IUnknown
, (void**)&pUnk
);
1255 ok(hr
== RPC_E_CALL_COMPLETE
, "Expected RPC_E_CALL_COMPLETE, got 0x%08x\n", hr
);
1257 pUnk
= (IUnknown
*)0xdeadbeef;
1258 hr
= pCoSwitchCallContext(test_object
, &pUnk
);
1259 ok_ole_success(hr
, "CoSwitchCallContext");
1260 ok(pUnk
== NULL
, "expected NULL, got %p\n", pUnk
);
1261 refs
= IUnknown_AddRef(test_object
);
1262 ok(refs
== 2, "Expected refcount 2, got %d\n", refs
);
1263 IUnknown_Release(test_object
);
1265 pUnk
= (IUnknown
*)0xdeadbeef;
1266 hr
= CoGetCallContext(&IID_IUnknown
, (void**)&pUnk
);
1267 ok_ole_success(hr
, "CoGetCallContext");
1268 ok(pUnk
== test_object
, "expected %p, got %p\n", test_object
, pUnk
);
1269 refs
= IUnknown_AddRef(test_object
);
1270 ok(refs
== 3, "Expected refcount 3, got %d\n", refs
);
1271 IUnknown_Release(test_object
);
1272 IUnknown_Release(pUnk
);
1274 pUnk
= (IUnknown
*)0xdeadbeef;
1275 hr
= pCoSwitchCallContext(NULL
, &pUnk
);
1276 ok_ole_success(hr
, "CoSwitchCallContext");
1277 ok(pUnk
== test_object
, "expected %p, got %p\n", test_object
, pUnk
);
1278 refs
= IUnknown_AddRef(test_object
);
1279 ok(refs
== 2, "Expected refcount 2, got %d\n", refs
);
1280 IUnknown_Release(test_object
);
1282 hr
= CoGetCallContext(&IID_IUnknown
, (void**)&pUnk
);
1283 ok(hr
== RPC_E_CALL_COMPLETE
, "Expected RPC_E_CALL_COMPLETE, got 0x%08x\n", hr
);
1285 IUnknown_Release(test_object
);
1290 static void test_CoGetContextToken(void)
1298 DWORD tid
, exitcode
;
1300 if (!pCoGetContextToken
)
1302 win_skip("CoGetContextToken not present\n");
1307 hr
= pCoGetContextToken(&token
);
1308 ok(hr
== CO_E_NOTINITIALIZED
, "Expected CO_E_NOTINITIALIZED, got 0x%08x\n", hr
);
1309 ok(token
== 0xdeadbeef, "Expected 0, got 0x%lx\n", token
);
1311 /* show that COM doesn't have to be initialized for multi-threaded apartments if another
1312 thread has already done so */
1314 info
.wait
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1315 ok(info
.wait
!= NULL
, "CreateEvent failed with error %d\n", GetLastError());
1317 info
.stop
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
1318 ok(info
.stop
!= NULL
, "CreateEvent failed with error %d\n", GetLastError());
1320 thread
= CreateThread(NULL
, 0, ole_initialize_thread
, &info
, 0, &tid
);
1321 ok(thread
!= NULL
, "CreateThread failed with error %d\n", GetLastError());
1323 WaitForSingleObject(info
.wait
, INFINITE
);
1326 hr
= pCoGetContextToken(&token
);
1327 ok(hr
== S_OK
, "Expected S_OK, got 0x%08x\n", hr
);
1328 IUnknown_Release((IUnknown
*)token
);
1330 SetEvent(info
.stop
);
1331 WaitForSingleObject(thread
, INFINITE
);
1333 GetExitCodeThread(thread
, &exitcode
);
1335 ok(hr
== S_OK
, "thread should have returned S_OK instead of 0x%08x\n", hr
);
1337 CloseHandle(thread
);
1338 CloseHandle(info
.wait
);
1339 CloseHandle(info
.stop
);
1343 hr
= pCoGetContextToken(NULL
);
1344 ok(hr
== E_POINTER
, "Expected E_POINTER, got 0x%08x\n", hr
);
1347 hr
= pCoGetContextToken(&token
);
1348 ok(hr
== S_OK
, "Expected S_OK, got 0x%08x\n", hr
);
1349 ok(token
, "Expected token != 0\n");
1351 refs
= IUnknown_AddRef((IUnknown
*)token
);
1352 ok(refs
== 1, "Expected 1, got %u\n", refs
);
1354 refs
= IUnknown_Release((IUnknown
*)token
);
1355 ok(refs
== 0, "Expected 0, got %u\n", refs
);
1357 hr
= pCoGetObjectContext(&IID_IObjContext
, (void **)&ctx
);
1358 ok(hr
== S_OK
, "Expected S_OK, got 0x%08x\n", hr
);
1359 todo_wine
ok(ctx
== (IObjContext
*)token
, "Expected interface pointers to be the same\n");
1361 refs
= IUnknown_AddRef((IUnknown
*)ctx
);
1362 ok(refs
== 2, "Expected 1, got %u\n", refs
);
1364 refs
= IUnknown_Release((IUnknown
*)ctx
);
1365 ok(refs
== 1, "Expected 0, got %u\n", refs
);
1367 /* CoGetContextToken does not add a reference */
1369 hr
= pCoGetContextToken(&token
);
1370 ok(hr
== S_OK
, "Expected S_OK, got 0x%08x\n", hr
);
1371 ok(token
, "Expected token != 0\n");
1372 todo_wine
ok(ctx
== (IObjContext
*)token
, "Expected interface pointers to be the same\n");
1374 refs
= IUnknown_AddRef((IUnknown
*)ctx
);
1375 ok(refs
== 2, "Expected 1, got %u\n", refs
);
1377 refs
= IUnknown_Release((IUnknown
*)ctx
);
1378 ok(refs
== 1, "Expected 0, got %u\n", refs
);
1383 static void test_CoGetTreatAsClass(void)
1387 static GUID deadbeef
= {0xdeadbeef,0xdead,0xbeef,{0xde,0xad,0xbe,0xef,0xde,0xad,0xbe,0xef}};
1389 if (!pCoGetTreatAsClass
)
1391 win_skip("CoGetTreatAsClass not present\n");
1394 hr
= pCoGetTreatAsClass(&deadbeef
,&out
);
1395 ok (hr
== S_FALSE
, "expected S_FALSE got %x\n",hr
);
1396 ok (IsEqualGUID(&out
,&deadbeef
), "expected to get same clsid back\n");
1399 static void test_CoInitializeEx(void)
1403 hr
= pCoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
1404 ok(hr
== S_OK
, "CoInitializeEx failed with error 0x%08x\n", hr
);
1406 /* Calling OleInitialize for the first time should yield S_OK even with
1407 * apartment already initialized by previous CoInitialize(Ex) calls. */
1408 hr
= OleInitialize(NULL
);
1409 todo_wine
ok(hr
== S_OK
, "OleInitialize failed with error 0x%08x\n", hr
);
1411 /* Subsequent calls to OleInitialize should return S_FALSE */
1412 hr
= OleInitialize(NULL
);
1413 ok(hr
== S_FALSE
, "Expected S_FALSE, hr = 0x%08x\n", hr
);
1422 HMODULE hOle32
= GetModuleHandle("ole32");
1423 pCoGetObjectContext
= (void*)GetProcAddress(hOle32
, "CoGetObjectContext");
1424 pCoSwitchCallContext
= (void*)GetProcAddress(hOle32
, "CoSwitchCallContext");
1425 pCoGetTreatAsClass
= (void*)GetProcAddress(hOle32
,"CoGetTreatAsClass");
1426 pCoGetContextToken
= (void*)GetProcAddress(hOle32
, "CoGetContextToken");
1427 if (!(pCoInitializeEx
= (void*)GetProcAddress(hOle32
, "CoInitializeEx")))
1429 trace("You need DCOM95 installed to run this test\n");
1433 test_ProgIDFromCLSID();
1434 test_CLSIDFromProgID();
1435 test_CLSIDFromString();
1436 test_StringFromGUID2();
1437 test_CoCreateInstance();
1439 test_CoGetClassObject();
1440 test_CoRegisterMessageFilter();
1441 test_CoRegisterPSClsid();
1442 test_CoGetPSClsid();
1443 test_CoUnmarshalInterface();
1444 test_CoGetInterfaceAndReleaseStream();
1445 test_CoMarshalInterface();
1446 test_CoMarshalInterThreadInterfaceInStream();
1447 test_CoRegisterClassObject();
1448 test_registered_object_thread_affinity();
1449 test_CoFreeUnusedLibraries();
1450 test_CoGetObjectContext();
1451 test_CoGetCallContext();
1452 test_CoGetContextToken();
1453 test_CoGetTreatAsClass();
1454 test_CoInitializeEx();