Commit e1571a25 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

ole32/tests: Avoid testing exact sequences of IUnknown methods.

Instead, just test that AddRef()/Release() come in balanced pairs by keeping track of the reference count. This fixes test failures with recent Windows 10. Signed-off-by: 's avatarZebediah Figura <z.figura12@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 6a157b7e
...@@ -99,7 +99,6 @@ static const IID IID_WineTest = ...@@ -99,7 +99,6 @@ static const IID IID_WineTest =
{0xbc, 0x13, 0x51, 0x6e, 0x92, 0x39, 0xac, 0xe1} {0xbc, 0x13, 0x51, 0x6e, 0x92, 0x39, 0xac, 0xe1}
}; };
#define TEST_OPTIONAL 0x1
#define TEST_TODO 0x2 #define TEST_TODO 0x2
struct expected_method struct expected_method
...@@ -152,16 +151,8 @@ static void inline check_expected_method_fmt(const char *method_name, const FORM ...@@ -152,16 +151,8 @@ static void inline check_expected_method_fmt(const char *method_name, const FORM
{ {
trace("%s\n", method_name); trace("%s\n", method_name);
ok(expected_method_list->method != NULL, "Extra method %s called\n", method_name); ok(expected_method_list->method != NULL, "Extra method %s called\n", method_name);
if (!strcmp(expected_method_list->method, "WINE_EXTRA"))
{
todo_wine ok(0, "Too many method calls.\n");
return;
}
if (expected_method_list->method) if (expected_method_list->method)
{ {
while (expected_method_list->flags & TEST_OPTIONAL &&
strcmp(expected_method_list->method, method_name) != 0)
expected_method_list++;
todo_wine_if (expected_method_list->flags & TEST_TODO) todo_wine_if (expected_method_list->flags & TEST_TODO)
{ {
ok(!strcmp(expected_method_list->method, method_name), ok(!strcmp(expected_method_list->method, method_name),
...@@ -188,8 +179,6 @@ static void inline check_expected_method_fmt(const char *method_name, const FORM ...@@ -188,8 +179,6 @@ static void inline check_expected_method_fmt(const char *method_name, const FORM
#define CHECK_NO_EXTRA_METHODS() \ #define CHECK_NO_EXTRA_METHODS() \
do { \ do { \
while (expected_method_list->flags & TEST_OPTIONAL) \
expected_method_list++; \
ok(!expected_method_list->method, "Method sequence starting from %s not called\n", expected_method_list->method); \ ok(!expected_method_list->method, "Method sequence starting from %s not called\n", expected_method_list->method); \
} while (0) } while (0)
...@@ -266,10 +255,10 @@ static void create_text(STGMEDIUM *med) ...@@ -266,10 +255,10 @@ static void create_text(STGMEDIUM *med)
med->pUnkForRelease = NULL; med->pUnkForRelease = NULL;
} }
static LONG ole_object_refcount;
static HRESULT WINAPI OleObject_QueryInterface(IOleObject *iface, REFIID riid, void **ppv) static HRESULT WINAPI OleObject_QueryInterface(IOleObject *iface, REFIID riid, void **ppv)
{ {
CHECK_EXPECTED_METHOD("OleObject_QueryInterface");
*ppv = NULL; *ppv = NULL;
if (IsEqualIID(riid, &IID_IUnknown) || IsEqualIID(riid, &IID_IOleObject)) if (IsEqualIID(riid, &IID_IUnknown) || IsEqualIID(riid, &IID_IOleObject))
...@@ -294,14 +283,12 @@ static HRESULT WINAPI OleObject_QueryInterface(IOleObject *iface, REFIID riid, v ...@@ -294,14 +283,12 @@ static HRESULT WINAPI OleObject_QueryInterface(IOleObject *iface, REFIID riid, v
static ULONG WINAPI OleObject_AddRef(IOleObject *iface) static ULONG WINAPI OleObject_AddRef(IOleObject *iface)
{ {
CHECK_EXPECTED_METHOD("OleObject_AddRef"); return InterlockedIncrement(&ole_object_refcount);
return 2;
} }
static ULONG WINAPI OleObject_Release(IOleObject *iface) static ULONG WINAPI OleObject_Release(IOleObject *iface)
{ {
CHECK_EXPECTED_METHOD("OleObject_Release"); return InterlockedDecrement(&ole_object_refcount);
return 1;
} }
static HRESULT WINAPI OleObject_SetClientSite static HRESULT WINAPI OleObject_SetClientSite
...@@ -573,20 +560,17 @@ static IOleObject OleObject = { &OleObjectVtbl }; ...@@ -573,20 +560,17 @@ static IOleObject OleObject = { &OleObjectVtbl };
static HRESULT WINAPI OleObjectPersistStg_QueryInterface(IPersistStorage *iface, REFIID riid, void **ppv) static HRESULT WINAPI OleObjectPersistStg_QueryInterface(IPersistStorage *iface, REFIID riid, void **ppv)
{ {
trace("OleObjectPersistStg_QueryInterface\n");
return IOleObject_QueryInterface(&OleObject, riid, ppv); return IOleObject_QueryInterface(&OleObject, riid, ppv);
} }
static ULONG WINAPI OleObjectPersistStg_AddRef(IPersistStorage *iface) static ULONG WINAPI OleObjectPersistStg_AddRef(IPersistStorage *iface)
{ {
CHECK_EXPECTED_METHOD("OleObjectPersistStg_AddRef"); return IOleObject_AddRef(&OleObject);
return 2;
} }
static ULONG WINAPI OleObjectPersistStg_Release(IPersistStorage *iface) static ULONG WINAPI OleObjectPersistStg_Release(IPersistStorage *iface)
{ {
CHECK_EXPECTED_METHOD("OleObjectPersistStg_Release"); return IOleObject_Release(&OleObject);
return 1;
} }
static HRESULT WINAPI OleObjectPersistStg_GetClassId(IPersistStorage *iface, CLSID *clsid) static HRESULT WINAPI OleObjectPersistStg_GetClassId(IPersistStorage *iface, CLSID *clsid)
...@@ -677,14 +661,12 @@ static HRESULT WINAPI OleObjectCache_QueryInterface(IOleCache *iface, REFIID rii ...@@ -677,14 +661,12 @@ static HRESULT WINAPI OleObjectCache_QueryInterface(IOleCache *iface, REFIID rii
static ULONG WINAPI OleObjectCache_AddRef(IOleCache *iface) static ULONG WINAPI OleObjectCache_AddRef(IOleCache *iface)
{ {
CHECK_EXPECTED_METHOD("OleObjectCache_AddRef"); return IOleObject_AddRef(&OleObject);
return 2;
} }
static ULONG WINAPI OleObjectCache_Release(IOleCache *iface) static ULONG WINAPI OleObjectCache_Release(IOleCache *iface)
{ {
CHECK_EXPECTED_METHOD("OleObjectCache_Release"); return IOleObject_Release(&OleObject);
return 1;
} }
static HRESULT WINAPI OleObjectCache_Cache static HRESULT WINAPI OleObjectCache_Cache
...@@ -824,14 +806,12 @@ static HRESULT WINAPI OleObjectRunnable_QueryInterface(IRunnableObject *iface, R ...@@ -824,14 +806,12 @@ static HRESULT WINAPI OleObjectRunnable_QueryInterface(IRunnableObject *iface, R
static ULONG WINAPI OleObjectRunnable_AddRef(IRunnableObject *iface) static ULONG WINAPI OleObjectRunnable_AddRef(IRunnableObject *iface)
{ {
CHECK_EXPECTED_METHOD("OleObjectRunnable_AddRef"); return IOleObject_AddRef(&OleObject);
return 2;
} }
static ULONG WINAPI OleObjectRunnable_Release(IRunnableObject *iface) static ULONG WINAPI OleObjectRunnable_Release(IRunnableObject *iface)
{ {
CHECK_EXPECTED_METHOD("OleObjectRunnable_Release"); return IOleObject_Release(&OleObject);
return 1;
} }
static HRESULT WINAPI OleObjectRunnable_GetRunningClass( static HRESULT WINAPI OleObjectRunnable_GetRunningClass(
...@@ -974,143 +954,49 @@ static void test_OleCreate(IStorage *pStorage) ...@@ -974,143 +954,49 @@ static void test_OleCreate(IStorage *pStorage)
FORMATETC formatetc; FORMATETC formatetc;
static const struct expected_method methods_olerender_none[] = static const struct expected_method methods_olerender_none[] =
{ {
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", TEST_OPTIONAL },
{ "OleObject_Release", TEST_OPTIONAL },
{ "OleObject_QueryInterface", TEST_OPTIONAL },
{ "OleObjectPersistStg_AddRef", 0 },
{ "OleObjectPersistStg_InitNew", 0 }, { "OleObjectPersistStg_InitNew", 0 },
{ "OleObjectPersistStg_Release", 0 },
{ "OleObject_Release", 0 },
{ "OleObject_Release", TEST_OPTIONAL },
{ NULL, 0 } { NULL, 0 }
}; };
static const struct expected_method methods_olerender_draw[] = static const struct expected_method methods_olerender_draw[] =
{ {
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", TEST_OPTIONAL /* NT4 only */ },
{ "OleObject_Release", TEST_OPTIONAL /* NT4 only */ },
{ "OleObject_QueryInterface", TEST_OPTIONAL /* NT4 only */ },
{ "OleObjectPersistStg_AddRef", 0 },
{ "OleObjectPersistStg_InitNew", 0 }, { "OleObjectPersistStg_InitNew", 0 },
{ "OleObjectPersistStg_Release", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObjectRunnable_AddRef", 0 },
{ "OleObjectRunnable_Run", 0 }, { "OleObjectRunnable_Run", 0 },
{ "OleObjectRunnable_Release", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObjectCache_AddRef", 0 },
{ "OleObjectCache_Cache", 0 }, { "OleObjectCache_Cache", 0 },
{ "OleObjectCache_Release", 0 },
{ "OleObject_Release", 0 },
{ "OleObject_Release", TEST_OPTIONAL /* NT4 only */ },
{ NULL, 0 } { NULL, 0 }
}; };
static const struct expected_method methods_olerender_draw_with_site[] = static const struct expected_method methods_olerender_draw_with_site[] =
{ {
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_GetMiscStatus", 0 }, { "OleObject_GetMiscStatus", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObjectPersistStg_AddRef", 0 },
{ "OleObjectPersistStg_InitNew", 0 }, { "OleObjectPersistStg_InitNew", 0 },
{ "OleObjectPersistStg_Release", 0 },
{ "OleObject_SetClientSite", 0 }, { "OleObject_SetClientSite", 0 },
{ "OleObject_Release", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObjectRunnable_AddRef", 0 },
{ "OleObjectRunnable_Run", 0 }, { "OleObjectRunnable_Run", 0 },
{ "OleObjectRunnable_Release", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObjectCache_AddRef", 0 },
{ "OleObjectCache_Cache", 0 }, { "OleObjectCache_Cache", 0 },
{ "OleObjectCache_Release", 0 },
{ "OleObject_Release", 0 },
{ NULL, 0 } { NULL, 0 }
}; };
static const struct expected_method methods_olerender_format[] = static const struct expected_method methods_olerender_format[] =
{ {
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_GetMiscStatus", 0 }, { "OleObject_GetMiscStatus", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObjectPersistStg_AddRef", 0 },
{ "OleObjectPersistStg_InitNew", 0 }, { "OleObjectPersistStg_InitNew", 0 },
{ "OleObjectPersistStg_Release", 0 },
{ "OleObject_SetClientSite", 0 }, { "OleObject_SetClientSite", 0 },
{ "OleObject_Release", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObjectRunnable_AddRef", 0 },
{ "OleObjectRunnable_Run", 0 }, { "OleObjectRunnable_Run", 0 },
{ "OleObjectRunnable_Release", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObjectCache_AddRef", 0 },
{ "OleObjectCache_Cache", 0 }, { "OleObjectCache_Cache", 0 },
{ "OleObjectCache_Release", 0 },
{ "OleObject_Release", 0 },
{ NULL, 0 } { NULL, 0 }
}; };
static const struct expected_method methods_olerender_asis[] = static const struct expected_method methods_olerender_asis[] =
{ {
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", TEST_OPTIONAL /* NT4 only */ },
{ "OleObject_Release", TEST_OPTIONAL /* NT4 only */ },
{ "OleObject_QueryInterface", TEST_OPTIONAL /* NT4 only */ },
{ "OleObjectPersistStg_AddRef", 0 },
{ "OleObjectPersistStg_InitNew", 0 }, { "OleObjectPersistStg_InitNew", 0 },
{ "OleObjectPersistStg_Release", 0 },
{ "OleObject_Release", 0 },
{ "OleObject_Release", TEST_OPTIONAL /* NT4 only */ },
{ NULL, 0 } { NULL, 0 }
}; };
static const struct expected_method methods_olerender_draw_no_runnable[] = static const struct expected_method methods_olerender_draw_no_runnable[] =
{ {
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", TEST_OPTIONAL /* NT4 only */ },
{ "OleObject_Release", TEST_OPTIONAL /* NT4 only */ },
{ "OleObject_QueryInterface", TEST_OPTIONAL /* NT4 only */ },
{ "OleObjectPersistStg_AddRef", 0 },
{ "OleObjectPersistStg_InitNew", 0 }, { "OleObjectPersistStg_InitNew", 0 },
{ "OleObjectPersistStg_Release", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObjectCache_AddRef", 0 },
{ "OleObjectCache_Cache", 0 }, { "OleObjectCache_Cache", 0 },
{ "OleObjectCache_Release", 0 },
{ "OleObject_Release", 0 },
{ "OleObject_Release", TEST_OPTIONAL /* NT4 only */ },
{ NULL, 0 }, { NULL, 0 },
}; };
static const struct expected_method methods_olerender_draw_no_cache[] = static const struct expected_method methods_olerender_draw_no_cache[] =
{ {
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", TEST_OPTIONAL /* NT4 only */ },
{ "OleObject_Release", TEST_OPTIONAL /* NT4 only */ },
{ "OleObject_QueryInterface", TEST_OPTIONAL /* NT4 only */ },
{ "OleObjectPersistStg_AddRef", 0 },
{ "OleObjectPersistStg_InitNew", 0 }, { "OleObjectPersistStg_InitNew", 0 },
{ "OleObjectPersistStg_Release", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObjectRunnable_AddRef", 0 },
{ "OleObjectRunnable_Run", 0 }, { "OleObjectRunnable_Run", 0 },
{ "OleObjectRunnable_Release", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_Release", 0 },
{ "OleObject_Release", TEST_OPTIONAL /* NT4 only */ },
{ NULL, 0 } { NULL, 0 }
}; };
...@@ -1128,6 +1014,7 @@ static void test_OleCreate(IStorage *pStorage) ...@@ -1128,6 +1014,7 @@ static void test_OleCreate(IStorage *pStorage)
ok_ole_success(hr, "OleCreate"); ok_ole_success(hr, "OleCreate");
IOleObject_Release(pObject); IOleObject_Release(pObject);
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
expected_method_list = methods_olerender_draw; expected_method_list = methods_olerender_draw;
trace("OleCreate with OLERENDER_DRAW:\n"); trace("OleCreate with OLERENDER_DRAW:\n");
...@@ -1135,6 +1022,7 @@ static void test_OleCreate(IStorage *pStorage) ...@@ -1135,6 +1022,7 @@ static void test_OleCreate(IStorage *pStorage)
ok_ole_success(hr, "OleCreate"); ok_ole_success(hr, "OleCreate");
IOleObject_Release(pObject); IOleObject_Release(pObject);
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
expected_method_list = methods_olerender_draw_with_site; expected_method_list = methods_olerender_draw_with_site;
trace("OleCreate with OLERENDER_DRAW, with site:\n"); trace("OleCreate with OLERENDER_DRAW, with site:\n");
...@@ -1142,6 +1030,7 @@ static void test_OleCreate(IStorage *pStorage) ...@@ -1142,6 +1030,7 @@ static void test_OleCreate(IStorage *pStorage)
ok_ole_success(hr, "OleCreate"); ok_ole_success(hr, "OleCreate");
IOleObject_Release(pObject); IOleObject_Release(pObject);
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
/* GetMiscStatus fails */ /* GetMiscStatus fails */
g_GetMiscStatusFailsWith = 0x8fafefaf; g_GetMiscStatusFailsWith = 0x8fafefaf;
...@@ -1151,6 +1040,7 @@ static void test_OleCreate(IStorage *pStorage) ...@@ -1151,6 +1040,7 @@ static void test_OleCreate(IStorage *pStorage)
ok_ole_success(hr, "OleCreate"); ok_ole_success(hr, "OleCreate");
IOleObject_Release(pObject); IOleObject_Release(pObject);
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
g_GetMiscStatusFailsWith = S_OK; g_GetMiscStatusFailsWith = S_OK;
formatetc.cfFormat = CF_TEXT; formatetc.cfFormat = CF_TEXT;
...@@ -1169,6 +1059,7 @@ static void test_OleCreate(IStorage *pStorage) ...@@ -1169,6 +1059,7 @@ static void test_OleCreate(IStorage *pStorage)
IOleObject_Release(pObject); IOleObject_Release(pObject);
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
} }
ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
expected_method_list = methods_olerender_asis; expected_method_list = methods_olerender_asis;
trace("OleCreate with OLERENDER_ASIS:\n"); trace("OleCreate with OLERENDER_ASIS:\n");
...@@ -1176,6 +1067,7 @@ static void test_OleCreate(IStorage *pStorage) ...@@ -1176,6 +1067,7 @@ static void test_OleCreate(IStorage *pStorage)
ok_ole_success(hr, "OleCreate"); ok_ole_success(hr, "OleCreate");
IOleObject_Release(pObject); IOleObject_Release(pObject);
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
formatetc.cfFormat = 0; formatetc.cfFormat = 0;
formatetc.tymed = TYMED_NULL; formatetc.tymed = TYMED_NULL;
...@@ -1195,6 +1087,7 @@ static void test_OleCreate(IStorage *pStorage) ...@@ -1195,6 +1087,7 @@ static void test_OleCreate(IStorage *pStorage)
ok_ole_success(hr, "OleCreate"); ok_ole_success(hr, "OleCreate");
IOleObject_Release(pObject); IOleObject_Release(pObject);
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
trace("end\n"); trace("end\n");
g_expected_fetc = NULL; g_expected_fetc = NULL;
} }
...@@ -1207,20 +1100,10 @@ static void test_OleLoad(IStorage *pStorage) ...@@ -1207,20 +1100,10 @@ static void test_OleLoad(IStorage *pStorage)
static const struct expected_method methods_oleload[] = static const struct expected_method methods_oleload[] =
{ {
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_GetMiscStatus", 0 }, { "OleObject_GetMiscStatus", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObjectPersistStg_AddRef", 0 },
{ "OleObjectPersistStg_Load", 0 }, { "OleObjectPersistStg_Load", 0 },
{ "OleObjectPersistStg_Release", 0 },
{ "OleObject_SetClientSite", 0 }, { "OleObject_SetClientSite", 0 },
{ "OleObject_Release", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_GetMiscStatus", 0 }, { "OleObject_GetMiscStatus", 0 },
{ "OleObject_Release", 0 },
{ NULL, 0 } { NULL, 0 }
}; };
...@@ -1242,6 +1125,7 @@ static void test_OleLoad(IStorage *pStorage) ...@@ -1242,6 +1125,7 @@ static void test_OleLoad(IStorage *pStorage)
IOleObject_Release(pObject); IOleObject_Release(pObject);
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
} }
ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
g_GetMiscStatusFailsWith = S_OK; g_GetMiscStatusFailsWith = S_OK;
/* Test again, let IOleObject_GetMiscStatus succeed. */ /* Test again, let IOleObject_GetMiscStatus succeed. */
...@@ -1261,6 +1145,7 @@ static void test_OleLoad(IStorage *pStorage) ...@@ -1261,6 +1145,7 @@ static void test_OleLoad(IStorage *pStorage)
IOleObject_Release(pObject); IOleObject_Release(pObject);
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
} }
ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
for (fmt = CF_TEXT; fmt < CF_MAX; fmt++) for (fmt = CF_TEXT; fmt < CF_MAX; fmt++)
{ {
...@@ -1447,8 +1332,6 @@ static HRESULT WINAPI DataObject_QueryInterface( ...@@ -1447,8 +1332,6 @@ static HRESULT WINAPI DataObject_QueryInterface(
REFIID riid, REFIID riid,
void** ppvObject) void** ppvObject)
{ {
CHECK_EXPECTED_METHOD("DataObject_QueryInterface");
if (IsEqualIID(riid, &IID_IDataObject) || IsEqualIID(riid, &IID_IUnknown)) if (IsEqualIID(riid, &IID_IDataObject) || IsEqualIID(riid, &IID_IUnknown))
{ {
*ppvObject = iface; *ppvObject = iface;
...@@ -1461,14 +1344,12 @@ static HRESULT WINAPI DataObject_QueryInterface( ...@@ -1461,14 +1344,12 @@ static HRESULT WINAPI DataObject_QueryInterface(
static ULONG WINAPI DataObject_AddRef( static ULONG WINAPI DataObject_AddRef(
IDataObject* iface) IDataObject* iface)
{ {
CHECK_EXPECTED_METHOD("DataObject_AddRef");
return 2; return 2;
} }
static ULONG WINAPI DataObject_Release( static ULONG WINAPI DataObject_Release(
IDataObject* iface) IDataObject* iface)
{ {
CHECK_EXPECTED_METHOD("DataObject_Release");
return 1; return 1;
} }
...@@ -2962,15 +2843,6 @@ static void test_default_handler(void) ...@@ -2962,15 +2843,6 @@ static void test_default_handler(void)
static const struct expected_method methods_embeddinghelper[] = static const struct expected_method methods_embeddinghelper[] =
{ {
{ "OleObject_QueryInterface", 0 },
{ "OleObject_AddRef", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_QueryInterface", TEST_TODO },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_QueryInterface", 0 },
{ "OleObject_QueryInterface", TEST_OPTIONAL }, /* Win95/98/NT4 */
{ "OleObject_Release", TEST_TODO },
{ "WINE_EXTRA", TEST_OPTIONAL },
{ NULL, 0 } { NULL, 0 }
}; };
...@@ -3138,6 +3010,7 @@ static void test_default_handler(void) ...@@ -3138,6 +3010,7 @@ static void test_default_handler(void)
} }
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
todo_wine ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
hr = CoRevokeClassObject(dwRegister); hr = CoRevokeClassObject(dwRegister);
ok_ole_success(hr, "CoRevokeClassObject"); ok_ole_success(hr, "CoRevokeClassObject");
...@@ -3148,16 +3021,12 @@ static void test_runnable(void) ...@@ -3148,16 +3021,12 @@ static void test_runnable(void)
{ {
static const struct expected_method methods_query_runnable[] = static const struct expected_method methods_query_runnable[] =
{ {
{ "OleObject_QueryInterface", 0 },
{ "OleObjectRunnable_AddRef", 0 },
{ "OleObjectRunnable_IsRunning", 0 }, { "OleObjectRunnable_IsRunning", 0 },
{ "OleObjectRunnable_Release", 0 },
{ NULL, 0 } { NULL, 0 }
}; };
static const struct expected_method methods_no_runnable[] = static const struct expected_method methods_no_runnable[] =
{ {
{ "OleObject_QueryInterface", 0 },
{ NULL, 0 } { NULL, 0 }
}; };
...@@ -3172,18 +3041,21 @@ static void test_runnable(void) ...@@ -3172,18 +3041,21 @@ static void test_runnable(void)
ret = OleIsRunning(object); ret = OleIsRunning(object);
ok(ret == TRUE, "Object should be running\n"); ok(ret == TRUE, "Object should be running\n");
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
todo_wine ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
g_isRunning = FALSE; g_isRunning = FALSE;
expected_method_list = methods_query_runnable; expected_method_list = methods_query_runnable;
ret = OleIsRunning(object); ret = OleIsRunning(object);
ok(ret == FALSE, "Object should not be running\n"); ok(ret == FALSE, "Object should not be running\n");
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
todo_wine ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
g_showRunnable = FALSE; /* QueryInterface(IID_IRunnableObject, ...) will fail */ g_showRunnable = FALSE; /* QueryInterface(IID_IRunnableObject, ...) will fail */
expected_method_list = methods_no_runnable; expected_method_list = methods_no_runnable;
ret = OleIsRunning(object); ret = OleIsRunning(object);
ok(ret == TRUE, "Object without IRunnableObject should be running\n"); ok(ret == TRUE, "Object without IRunnableObject should be running\n");
CHECK_NO_EXTRA_METHODS(); CHECK_NO_EXTRA_METHODS();
todo_wine ok(!ole_object_refcount, "Got outstanding refcount %d.\n", ole_object_refcount);
g_isRunning = TRUE; g_isRunning = TRUE;
g_showRunnable = TRUE; g_showRunnable = TRUE;
......
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