Commit 8ff76d24 authored by Andrey Turkin's avatar Andrey Turkin Committed by Alexandre Julliard

ole32/tests: Add test for IContextCallback.

parent aa8f0089
...@@ -29,6 +29,9 @@ ...@@ -29,6 +29,9 @@
#include "shlguid.h" #include "shlguid.h"
#include "urlmon.h" /* for CLSID_FileProtocol */ #include "urlmon.h" /* for CLSID_FileProtocol */
#include "initguid.h"
#include "ctxtcall.h"
#include "wine/test.h" #include "wine/test.h"
/* functions that are not present on all versions of Windows */ /* functions that are not present on all versions of Windows */
...@@ -967,6 +970,7 @@ static void test_CoGetObjectContext(void) ...@@ -967,6 +970,7 @@ static void test_CoGetObjectContext(void)
HRESULT hr; HRESULT hr;
ULONG refs; ULONG refs;
IComThreadingInfo *pComThreadingInfo; IComThreadingInfo *pComThreadingInfo;
IContextCallback *pContextCallback;
APTTYPE apttype; APTTYPE apttype;
THDTYPE thdtype; THDTYPE thdtype;
...@@ -996,6 +1000,17 @@ static void test_CoGetObjectContext(void) ...@@ -996,6 +1000,17 @@ static void test_CoGetObjectContext(void)
refs = IComThreadingInfo_Release(pComThreadingInfo); refs = IComThreadingInfo_Release(pComThreadingInfo);
ok(refs == 0, "pComThreadingInfo should have 0 refs instead of %d refs\n", refs); ok(refs == 0, "pComThreadingInfo should have 0 refs instead of %d refs\n", refs);
hr = pCoGetObjectContext(&IID_IContextCallback, (void **)&pContextCallback);
todo_wine {
ok_ole_success(hr, "CoGetObjectContext(ContextCallback)");
}
if (hr == S_OK)
{
refs = IContextCallback_Release(pContextCallback);
ok(refs == 0, "pContextCallback should have 0 refs instead of %d refs\n", refs);
}
CoUninitialize(); CoUninitialize();
pCoInitializeEx(NULL, COINIT_MULTITHREADED); pCoInitializeEx(NULL, COINIT_MULTITHREADED);
...@@ -1014,6 +1029,17 @@ static void test_CoGetObjectContext(void) ...@@ -1014,6 +1029,17 @@ static void test_CoGetObjectContext(void)
refs = IComThreadingInfo_Release(pComThreadingInfo); refs = IComThreadingInfo_Release(pComThreadingInfo);
ok(refs == 0, "pComThreadingInfo should have 0 refs instead of %d refs\n", refs); ok(refs == 0, "pComThreadingInfo should have 0 refs instead of %d refs\n", refs);
hr = pCoGetObjectContext(&IID_IContextCallback, (void **)&pContextCallback);
todo_wine {
ok_ole_success(hr, "CoGetObjectContext(ContextCallback)");
}
if (hr == S_OK)
{
refs = IContextCallback_Release(pContextCallback);
ok(refs == 0, "pContextCallback should have 0 refs instead of %d refs\n", refs);
}
CoUninitialize(); CoUninitialize();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment