riched20/tests: Add tests for OLE interface.
authorDan Hipschman <dsh@linux.ucla.edu>
Fri, 20 Jun 2008 00:10:59 +0000 (17:10 -0700)
committerAlexandre Julliard <julliard@winehq.org>
Mon, 23 Jun 2008 10:39:41 +0000 (12:39 +0200)
dlls/riched20/tests/Makefile.in
dlls/riched20/tests/richole.c [new file with mode: 0644]

index 74a5686bf38d07919aba6e84cba57064166befdb..0993609213b637ea4c44f8c22e2f5e81e7072fe3 100644 (file)
@@ -6,7 +6,8 @@ TESTDLL   = riched20.dll
 IMPORTS   = ole32 user32 gdi32 kernel32
 
 CTESTS = \
-       editor.c
+       editor.c \
+       richole.c
 
 @MAKE_TEST_RULES@
 
diff --git a/dlls/riched20/tests/richole.c b/dlls/riched20/tests/richole.c
new file mode 100644 (file)
index 0000000..ba9ce55
--- /dev/null
@@ -0,0 +1,75 @@
+/*
+ * Tests for IRichEditOle and friends.
+ *
+ * Copyright 2008 Google (Dan Hipschman)
+ *
+ * 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 <stdarg.h>
+#include <assert.h>
+#include <windef.h>
+#include <winbase.h>
+#include <wingdi.h>
+#include <winuser.h>
+#include <ole2.h>
+#include <richedit.h>
+#include <richole.h>
+#include <wine/test.h>
+
+static HMODULE hmoduleRichEdit;
+
+static HWND new_window(LPCTSTR lpClassName, DWORD dwStyle, HWND parent)
+{
+  HWND hwnd
+    = CreateWindow(lpClassName, NULL,
+                   dwStyle | WS_POPUP | WS_HSCROLL | WS_VSCROLL | WS_VISIBLE,
+                   0, 0, 200, 60, parent, NULL, hmoduleRichEdit, NULL);
+  ok(hwnd != NULL, "class: %s, error: %d\n", lpClassName, (int) GetLastError());
+  return hwnd;
+}
+
+static HWND new_richedit(HWND parent)
+{
+  return new_window(RICHEDIT_CLASS, ES_MULTILINE, parent);
+}
+
+
+START_TEST(richole)
+{
+  IRichEditOle *reOle = NULL;
+  LRESULT res;
+  HWND w;
+
+  /* Must explicitly LoadLibrary(). The test has no references to functions in
+   * RICHED20.DLL, so the linker doesn't actually link to it. */
+  hmoduleRichEdit = LoadLibrary("RICHED20.DLL");
+  ok(hmoduleRichEdit != NULL, "error: %d\n", (int) GetLastError());
+
+  w = new_richedit(NULL);
+  if (!w) {
+    skip("Couldn't create window\n");
+    return;
+  }
+
+  res = SendMessage(w, EM_GETOLEINTERFACE, 0, (LPARAM) &reOle);
+  ok(res, "SendMessage\n");
+  ok(reOle != NULL, "EM_GETOLEINTERFACE\n");
+
+  IUnknown_Release(reOle);
+  DestroyWindow(w);
+}