Author: akhaldi
Date: Thu Dec 13 13:10:24 2012
New Revision: 57902
URL:
http://svn.reactos.org/svn/reactos?rev=57902&view=rev
Log:
[RICHED20_WINETEST]
* Sync with Wine 1.5.19.
Modified:
trunk/rostests/winetests/riched20/editor.c
trunk/rostests/winetests/riched20/richole.c
trunk/rostests/winetests/riched20/txtsrv.c
Modified: trunk/rostests/winetests/riched20/editor.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/riched20/editor…
==============================================================================
--- trunk/rostests/winetests/riched20/editor.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/riched20/editor.c [iso-8859-1] Thu Dec 13 13:10:24 2012
@@ -2440,10 +2440,9 @@
y_before, y_after);
y_before = SendMessage(hwndRichEdit, EM_GETFIRSTVISIBLELINE, 0, 0);
- SendMessage(hwndRichEdit, EM_SCROLL,
- SB_LINEDOWN, 0); /* line down beyond bot */
+ r = SendMessage(hwndRichEdit, EM_SCROLL, SB_LINEDOWN, 0); /* line down beyond bot */
y_after = SendMessage(hwndRichEdit, EM_GETFIRSTVISIBLELINE, 0, 0);
-
+
ok(r == 0x00010000,
"EM_SCROLL line down returned indicating movement (0x%08x)\n", r);
ok(y_before == y_after,
@@ -5012,6 +5011,8 @@
const char * streamText3 = "RichEdit1";
+ const char * streamTextUTF8BOM = "\xef\xbb\xbfTestUTF8WithBOM";
+
const char * streamText4 =
"This text just needs to be long enough to cause run to be split onto "
"two separate lines and make sure the null terminating character is "
@@ -5112,6 +5113,20 @@
"EM_STREAMIN: Test 3 set wrong text: Result: %s\n",buffer);
ok(es.dwError == -16, "EM_STREAMIN: Test 3 set error %d, expected %d\n",
es.dwError, -16);
+ es.dwCookie = (DWORD_PTR)&streamTextUTF8BOM;
+ es.dwError = 0;
+ es.pfnCallback = test_EM_STREAMIN_esCallback;
+ result = SendMessage(hwndRichEdit, EM_STREAMIN, SF_TEXT, (LPARAM)&es);
+ ok(result == 18, "got %ld, expected %d\n", result, 18);
+
+ result = SendMessage(hwndRichEdit, WM_GETTEXT, 1024, (LPARAM) buffer);
+ ok(result == 15,
+ "EM_STREAMIN: Test UTF8WithBOM returned %ld, expected 15\n", result);
+ result = strcmp (buffer,"TestUTF8WithBOM");
+ ok(result == 0,
+ "EM_STREAMIN: Test UTF8WithBOM set wrong text: Result: %s\n",buffer);
+ ok(es.dwError == 0, "EM_STREAMIN: Test UTF8WithBOM set error %d, expected
%d\n", es.dwError, 0);
+
es.dwCookie = (DWORD_PTR)&cookieForStream4;
es.dwError = 0;
es.pfnCallback = test_EM_STREAMIN_esCallback2;
@@ -5131,7 +5146,7 @@
result = SendMessage(hwndRichEdit, WM_GETTEXT, 1024, (LPARAM) buffer);
ok (result == length5,
- "EM_STREAMIN: Test 4 returned %ld, expected %d\n", result, length5);
+ "EM_STREAMIN: Test 5 returned %ld, expected %d\n", result, length5);
ok(es.dwError == 0, "EM_STREAMIN: Test 5 set error %d, expected %d\n",
es.dwError, 0);
DestroyWindow(hwndRichEdit);
@@ -5158,7 +5173,7 @@
char buffer[1024] = {0};
const char randomtext[] = "Some text";
- es.pfnCallback = (EDITSTREAMCALLBACK) EditStreamCallback;
+ es.pfnCallback = EditStreamCallback;
/* StreamIn, no SFF_SELECTION */
es.dwCookie = nCallbackCount;
@@ -5888,7 +5903,6 @@
result = strcmp(buffer, "one two three");
ok (result == 0, "expected '%s' but got '%s'\n", "one
two three", buffer);
result = SendMessage(hwnd, EM_UNDO, 0, 0);
- ok (result == TRUE, "Failed to undo typed characters.\n");
ok (result == TRUE, "Failed to undo typed characters.\n");
SendMessageA(hwnd, WM_GETTEXT, sizeof(buffer), (LPARAM)buffer);
result = strcmp(buffer, "");
Modified: trunk/rostests/winetests/riched20/richole.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/riched20/richol…
==============================================================================
--- trunk/rostests/winetests/riched20/richole.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/riched20/richole.c [iso-8859-1] Thu Dec 13 13:10:24 2012
@@ -76,7 +76,7 @@
ok(res, "SendMessage\n");
ok(reOle != NULL, "EM_GETOLEINTERFACE\n");
- hres = IUnknown_QueryInterface(reOle, &IID_ITextDocument,
+ hres = IRichEditOle_QueryInterface(reOle, &IID_ITextDocument,
(void **) &txtDoc);
ok(hres == S_OK, "IRichEditOle_QueryInterface\n");
ok(txtDoc != NULL, "IRichEditOle_QueryInterface\n");
@@ -104,7 +104,7 @@
IUnknown_Release(punk);
ITextDocument_Release(txtDoc);
- IUnknown_Release(reOle);
+ IRichEditOle_Release(reOle);
DestroyWindow(w);
/* Methods should return CO_E_RELEASED if the backing document has
Modified: trunk/rostests/winetests/riched20/txtsrv.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/riched20/txtsrv…
==============================================================================
--- trunk/rostests/winetests/riched20/txtsrv.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/riched20/txtsrv.c [iso-8859-1] Thu Dec 13 13:10:24 2012
@@ -657,7 +657,7 @@
static void free_texthost(void)
{
- IUnknown_Release(txtserv);
+ ITextServices_Release(txtserv);
CoTaskMemFree(dummyTextHost);
}