[PATCH 3/3] msdasql/tests: Test for ITransaction* interfaces on a session

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Fri Jan 21 17:13:58 CST 2022


Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
---
 dlls/msdasql/tests/provider.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/dlls/msdasql/tests/provider.c b/dlls/msdasql/tests/provider.c
index dfe3e3af886..ce3573fbfd7 100644
--- a/dlls/msdasql/tests/provider.c
+++ b/dlls/msdasql/tests/provider.c
@@ -409,6 +409,9 @@ static void test_sessions(void)
     IGetDataSource *datasource = NULL;
     ISessionProperties *session_props = NULL;
     IUnknown *unimplemented = NULL;
+    ITransaction *transaction = NULL;
+    ITransactionLocal *local = NULL;
+    ITransactionObject *object = NULL;
     ITransactionJoin *join = NULL;
     IUnknown *cmd = NULL;
     HRESULT hr;
@@ -463,6 +466,19 @@ static void test_sessions(void)
     IDBProperties_Release(dsource);
     IGetDataSource_Release(datasource);
 
+    hr = IUnknown_QueryInterface(session, &IID_ITransaction, (void**)&transaction);
+    todo_wine ok(hr == S_OK, "got 0x%08x\n", hr);
+    if(hr == S_OK)
+        ITransaction_Release(transaction);
+
+    hr = IUnknown_QueryInterface(session, &IID_ITransactionLocal, (void**)&local);
+    todo_wine ok(hr == S_OK, "got 0x%08x\n", hr);
+    if(hr == S_OK)
+        ITransactionLocal_Release(local);
+
+    hr = IUnknown_QueryInterface(session, &IID_ITransactionObject, (void**)&object);
+    ok(hr == E_NOINTERFACE, "got 0x%08x\n", hr);
+
     hr = IUnknown_QueryInterface(session, &IID_ITransactionJoin, (void**)&join);
     todo_wine ok(hr == S_OK, "got 0x%08x\n", hr);
     if(hr == S_OK)
-- 
2.34.1




More information about the wine-devel mailing list