Roy Shea : mstask/test: NewWorkItem conformance test.

Alexandre Julliard julliard at winehq.org
Mon Aug 4 08:53:32 CDT 2008


Module: wine
Branch: master
Commit: 41da56a05f0c7eb362b0d99041ac23f4d5ed5f91
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=41da56a05f0c7eb362b0d99041ac23f4d5ed5f91

Author: Roy Shea <royshea at gmail.com>
Date:   Fri Aug  1 17:13:38 2008 -0700

mstask/test: NewWorkItem conformance test.

---

 dlls/mstask/tests/Makefile.in      |   13 ++++++
 dlls/mstask/tests/task_scheduler.c |   82 ++++++++++++++++++++++++++++++++++++
 2 files changed, 95 insertions(+), 0 deletions(-)

diff --git a/dlls/mstask/tests/Makefile.in b/dlls/mstask/tests/Makefile.in
new file mode 100644
index 0000000..9a261e7
--- /dev/null
+++ b/dlls/mstask/tests/Makefile.in
@@ -0,0 +1,13 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../../..
+SRCDIR    = @srcdir@
+VPATH     = @srcdir@
+TESTDLL   = mstask.dll
+IMPORTS   = ole32 kernel32
+
+CTESTS = \
+	task_scheduler.c
+
+ at MAKE_TEST_RULES@
+
+ at DEPENDENCIES@  # everything below this line is overwritten by make depend
diff --git a/dlls/mstask/tests/task_scheduler.c b/dlls/mstask/tests/task_scheduler.c
new file mode 100644
index 0000000..94614dc
--- /dev/null
+++ b/dlls/mstask/tests/task_scheduler.c
@@ -0,0 +1,82 @@
+/*
+ * Test suite for TaskScheduler interface
+ *
+ * Copyright (C) 2008 Google (Roy Shea)
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#define COBJMACROS
+
+#include "initguid.h"
+#include "mstask.h"
+#include "wine/test.h"
+
+static ITaskScheduler *test_task_scheduler;
+
+static void test_NewWorkItem(void)
+{
+    HRESULT hres;
+    ITask *task;
+    const WCHAR task_name[] = {'T', 'e', 's', 't', 'i', 'n', 'g', 0};
+    GUID GUID_BAD;
+
+    /* Initialize a GUID that will not be a recognized CLSID or a IID */
+    CoCreateGuid(&GUID_BAD);
+
+    /* Create TaskScheduler */
+    hres = CoCreateInstance(&CLSID_CTaskScheduler, NULL, CLSCTX_INPROC_SERVER,
+            &IID_ITaskScheduler, (void **) &test_task_scheduler);
+    ok(hres == S_OK, "CTaskScheduler CoCreateInstance failed: %08x\n", hres);
+    if (hres != S_OK)
+    {
+        skip("Failed to create task scheduler.  Skipping tests.\n");
+        return;
+    }
+
+    /* Test basic task creation */
+    hres = ITaskScheduler_NewWorkItem(test_task_scheduler, task_name,
+            &CLSID_CTask, &IID_ITask, (IUnknown**)&task);
+    todo_wine ok(hres == S_OK, "NewNetworkItem failed: %08x\n", hres);
+    if (hres == S_OK)
+        ITask_Release(task);
+
+    /* Task creation attempt using invalid work item class ID */
+    hres = ITaskScheduler_NewWorkItem(test_task_scheduler, task_name,
+            &GUID_BAD, &IID_ITask, (IUnknown**)&task);
+    todo_wine ok(hres == CLASS_E_CLASSNOTAVAILABLE,
+            "Expected CLASS_E_CLASSNOTAVAILABLE: %08x\n", hres);
+
+    /* Task creation attempt using invalid interface ID */
+    hres = ITaskScheduler_NewWorkItem(test_task_scheduler, task_name,
+            &CLSID_CTask, &GUID_BAD, (IUnknown**)&task);
+    todo_wine ok(hres == E_NOINTERFACE, "Expected E_NOINTERFACE: %08x\n", hres);
+
+    /* Task creation attempt using invalid work item class and interface ID */
+    hres = ITaskScheduler_NewWorkItem(test_task_scheduler, task_name,
+            &GUID_BAD, &GUID_BAD, (IUnknown**)&task);
+    todo_wine ok(hres == CLASS_E_CLASSNOTAVAILABLE,
+            "Expected CLASS_E_CLASSNOTAVAILABLE: %08x\n", hres);
+
+    ITaskScheduler_Release(test_task_scheduler);
+    return;
+}
+
+START_TEST(task_scheduler)
+{
+    CoInitialize(NULL);
+    test_NewWorkItem();
+    CoUninitialize();
+}




More information about the wine-cvs mailing list