2 * Unit tests for DDE functions
4 * Copyright (c) 2004 Dmitry Timoshkov
5 * Copyright (c) 2007 James Hawkins
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
33 #include "wine/test.h"
35 static const WCHAR TEST_DDE_SERVICE
[] = {'T','e','s','t','D','D','E','S','e','r','v','i','c','e',0};
37 static char exec_cmdA
[] = "ANSI dde command";
38 static WCHAR exec_cmdAW
[] = {'A','N','S','I',' ','d','d','e',' ','c','o','m','m','a','n','d',0};
39 static WCHAR exec_cmdW
[] = {'u','n','i','c','o','d','e',' ','d','d','e',' ','c','o','m','m','a','n','d',0};
40 static char exec_cmdWA
[] = "unicode dde command";
42 static WNDPROC old_dde_client_wndproc
;
44 static const DWORD default_timeout
= 200;
46 static void flush_events(void)
49 int diff
= default_timeout
;
51 DWORD time
= GetTickCount() + diff
;
55 if (MsgWaitForMultipleObjects( 0, NULL
, FALSE
, min_timeout
, QS_ALLINPUT
) == WAIT_TIMEOUT
) break;
56 while (PeekMessage( &msg
, 0, 0, 0, PM_REMOVE
)) DispatchMessage( &msg
);
57 diff
= time
- GetTickCount();
62 static void create_dde_window(HWND
*hwnd
, LPCSTR name
, WNDPROC wndproc
)
67 memset(&wcA
, 0, sizeof(wcA
));
68 wcA
.lpfnWndProc
= wndproc
;
69 wcA
.lpszClassName
= name
;
70 wcA
.hInstance
= GetModuleHandleA(0);
71 aclass
= RegisterClassA(&wcA
);
72 ok (aclass
, "RegisterClass failed\n");
74 *hwnd
= CreateWindowExA(0, name
, NULL
, WS_POPUP
,
75 500, 500, CW_USEDEFAULT
, CW_USEDEFAULT
,
76 GetDesktopWindow(), 0, GetModuleHandleA(0), NULL
);
77 ok(*hwnd
!= NULL
, "CreateWindowExA failed\n");
80 static void destroy_dde_window(HWND
*hwnd
, LPCSTR name
)
83 UnregisterClass(name
, GetModuleHandleA(0));
86 static LRESULT WINAPI
dde_server_wndproc(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
89 char str
[MAX_PATH
], *ptr
;
95 static int msg_index
= 0;
96 static HWND client
= 0;
97 static BOOL executed
= FALSE
;
99 if (msg
< WM_DDE_FIRST
|| msg
> WM_DDE_LAST
)
100 return DefWindowProcA(hwnd
, msg
, wparam
, lparam
);
106 case WM_DDE_INITIATE
:
108 client
= (HWND
)wparam
;
109 ok(msg_index
== 1, "Expected 1, got %d\n", msg_index
);
111 GlobalGetAtomNameA(LOWORD(lparam
), str
, MAX_PATH
);
112 ok(!lstrcmpA(str
, "TestDDEService"), "Expected TestDDEService, got %s\n", str
);
114 GlobalGetAtomNameA(HIWORD(lparam
), str
, MAX_PATH
);
115 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
117 SendMessageA(client
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
124 ok((msg_index
>= 2 && msg_index
<= 4) ||
125 (msg_index
>= 7 && msg_index
<= 8),
126 "Expected 2, 3, 4, 7 or 8, got %d\n", msg_index
);
127 ok(wparam
== (WPARAM
)client
, "Expected client hwnd, got %08lx\n", wparam
);
128 ok(LOWORD(lparam
) == CF_TEXT
, "Expected CF_TEXT, got %d\n", LOWORD(lparam
));
130 GlobalGetAtomNameA(HIWORD(lparam
), str
, MAX_PATH
);
132 ok(!lstrcmpA(str
, "request"), "Expected request, got %s\n", str
);
134 ok(!lstrcmpA(str
, "executed"), "Expected executed, got %s\n", str
);
139 lstrcpyA(str
, "command executed\r\n");
141 lstrcpyA(str
, "command not executed\r\n");
144 lstrcpyA(str
, "requested data\r\n");
146 size
= sizeof(DDEDATA
) + lstrlenA(str
) + 1;
147 hglobal
= GlobalAlloc(GMEM_MOVEABLE
, size
);
148 ok(hglobal
!= NULL
, "Expected non-NULL hglobal\n");
150 data
= GlobalLock(hglobal
);
151 ZeroMemory(data
, size
);
153 /* setting fResponse to FALSE at this point destroys
154 * the internal messaging state of native dde
156 data
->fResponse
= TRUE
;
159 data
->fRelease
= TRUE
;
160 else if (msg_index
== 3)
161 data
->fAckReq
= TRUE
;
163 data
->cfFormat
= CF_TEXT
;
164 lstrcpyA((LPSTR
)data
->Value
, str
);
165 GlobalUnlock(hglobal
);
167 lparam
= PackDDElParam(WM_DDE_DATA
, (UINT_PTR
)hglobal
, HIWORD(lparam
));
168 PostMessageA(client
, WM_DDE_DATA
, (WPARAM
)hwnd
, lparam
);
175 ok(msg_index
== 5 || msg_index
== 6, "Expected 5 or 6, got %d\n", msg_index
);
176 ok(wparam
== (WPARAM
)client
, "Expected client hwnd, got %08lx\n", wparam
);
178 UnpackDDElParam(WM_DDE_POKE
, lparam
, &lo
, &hi
);
180 GlobalGetAtomNameA(hi
, str
, MAX_PATH
);
181 ok(!lstrcmpA(str
, "poker"), "Expected poker, got %s\n", str
);
183 poke
= GlobalLock((HGLOBAL
)lo
);
184 ok(poke
!= NULL
, "Expected non-NULL poke\n");
185 ok(poke
->fReserved
== 0, "Expected 0, got %d\n", poke
->fReserved
);
186 ok(poke
->unused
== 0, "Expected 0, got %d\n", poke
->unused
);
187 ok(poke
->fRelease
== TRUE
, "Expected TRUE, got %d\n", poke
->fRelease
);
188 ok(poke
->cfFormat
== CF_TEXT
, "Expected CF_TEXT, got %d\n", poke
->cfFormat
);
192 size
= GlobalSize((HGLOBAL
)lo
);
193 ok(size
== 4 || broken(size
== 32), /* sizes are rounded up on win9x */ "got %d\n", size
);
196 ok(!lstrcmpA((LPSTR
)poke
->Value
, "poke data\r\n"),
197 "Expected 'poke data\\r\\n', got %s\n", poke
->Value
);
199 GlobalUnlock((HGLOBAL
)lo
);
201 lparam
= PackDDElParam(WM_DDE_ACK
, DDE_FACK
, hi
);
202 PostMessageA(client
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
209 ok(msg_index
== 7, "Expected 7, got %d\n", msg_index
);
210 ok(wparam
== (WPARAM
)client
, "Expected client hwnd, got %08lx\n", wparam
);
212 ptr
= GlobalLock((HGLOBAL
)lparam
);
213 ok(!lstrcmpA(ptr
, "[Command(Var)]"), "Expected [Command(Var)], got %s\n", ptr
);
214 GlobalUnlock((HGLOBAL
)lparam
);
218 lparam
= ReuseDDElParam(lparam
, WM_DDE_EXECUTE
, WM_DDE_ACK
, DDE_FACK
, lparam
);
219 PostMessageA(client
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
224 case WM_DDE_TERMINATE
:
226 ok(msg_index
== 9, "Expected 9, got %d\n", msg_index
);
227 ok(wparam
== (WPARAM
)client
, "Expected client hwnd, got %08lx\n", wparam
);
228 ok(lparam
== 0, "Expected 0, got %08lx\n", lparam
);
230 PostMessageA(client
, WM_DDE_TERMINATE
, (WPARAM
)hwnd
, 0);
235 case WM_DDE_ACK
: /* happens on win9x when fAckReq is TRUE, ignore it */
236 ok(msg_index
== 4, "Expected 4, got %d\n", msg_index
);
241 ok(FALSE
, "Unhandled msg: %08x\n", msg
);
244 return DefWindowProcA(hwnd
, msg
, wparam
, lparam
);
247 static void test_msg_server(HANDLE hproc
, HANDLE hthread
)
253 create_dde_window(&hwnd
, "dde_server", dde_server_wndproc
);
254 ResumeThread( hthread
);
256 while (MsgWaitForMultipleObjects( 1, &hproc
, FALSE
, INFINITE
, QS_ALLINPUT
) != 0)
258 while (PeekMessage(&msg
, 0, 0, 0, PM_REMOVE
)) DispatchMessageA(&msg
);
261 destroy_dde_window(&hwnd
, "dde_server");
262 GetExitCodeProcess( hproc
, &res
);
263 ok( !res
, "client failed with %u error(s)\n", res
);
266 static HDDEDATA CALLBACK
client_ddeml_callback(UINT uType
, UINT uFmt
, HCONV hconv
,
267 HSZ hsz1
, HSZ hsz2
, HDDEDATA hdata
,
268 ULONG_PTR dwData1
, ULONG_PTR dwData2
)
270 ok(FALSE
, "Unhandled msg: %08x\n", uType
);
274 static void test_ddeml_client(void)
281 HSZ server
, topic
, item
;
286 ret
= DdeInitializeA(&client_pid
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
287 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
289 /* FIXME: make these atoms global and check them in the server */
291 server
= DdeCreateStringHandleA(client_pid
, "TestDDEService", CP_WINANSI
);
292 topic
= DdeCreateStringHandleA(client_pid
, "TestDDETopic", CP_WINANSI
);
294 DdeGetLastError(client_pid
);
295 conversation
= DdeConnect(client_pid
, server
, topic
, NULL
);
296 ok(conversation
!= NULL
, "Expected non-NULL conversation\n");
297 ret
= DdeGetLastError(client_pid
);
298 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
300 DdeFreeStringHandle(client_pid
, server
);
302 item
= DdeCreateStringHandleA(client_pid
, "request", CP_WINANSI
);
304 /* XTYP_REQUEST, fRelease = TRUE */
306 DdeGetLastError(client_pid
);
307 hdata
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
308 ret
= DdeGetLastError(client_pid
);
309 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
310 ok(res
== DDE_FNOTPROCESSED
|| broken(res
== 0xdeadbeef), /* win9x */
311 "Expected DDE_FNOTPROCESSED, got %08x\n", res
);
312 ok( hdata
!= NULL
, "hdata is NULL\n" );
315 str
= (LPSTR
)DdeAccessData(hdata
, &size
);
316 ok(!lstrcmpA(str
, "requested data\r\n"), "Expected 'requested data\\r\\n', got %s\n", str
);
317 ok(size
== 19 || broken(size
== 28), /* sizes are rounded up on win9x */
318 "Expected 19, got %d\n", size
);
320 ret
= DdeUnaccessData(hdata
);
321 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
324 /* XTYP_REQUEST, fAckReq = TRUE */
326 DdeGetLastError(client_pid
);
327 hdata
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
328 ret
= DdeGetLastError(client_pid
);
329 ok(res
== DDE_FNOTPROCESSED
|| broken(res
== 0xdeadbeef), /* win9x */
330 "Expected DDE_FNOTPROCESSED, got %x\n", res
);
332 ok(ret
== DMLERR_MEMORY_ERROR
|| broken(ret
== 0), /* win9x */
333 "Expected DMLERR_MEMORY_ERROR, got %d\n", ret
);
334 ok( hdata
!= NULL
, "hdata is NULL\n" );
337 str
= (LPSTR
)DdeAccessData(hdata
, &size
);
338 ok(!lstrcmpA(str
, "requested data\r\n"), "Expected 'requested data\\r\\n', got %s\n", str
);
339 ok(size
== 19 || broken(size
== 28), /* sizes are rounded up on win9x */
340 "Expected 19, got %d\n", size
);
342 ret
= DdeUnaccessData(hdata
);
343 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
346 /* XTYP_REQUEST, all params normal */
348 DdeGetLastError(client_pid
);
349 hdata
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
350 ret
= DdeGetLastError(client_pid
);
351 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
352 ok(res
== DDE_FNOTPROCESSED
|| broken(res
== 0xdeadbeef), /* win9x */
353 "Expected DDE_FNOTPROCESSED, got %x\n", res
);
355 ok(FALSE
, "hdata is NULL\n");
358 str
= (LPSTR
)DdeAccessData(hdata
, &size
);
359 ok(!lstrcmpA(str
, "requested data\r\n"), "Expected 'requested data\\r\\n', got %s\n", str
);
360 ok(size
== 19 || broken(size
== 28), /* sizes are rounded up on win9x */
361 "Expected 19, got %d\n", size
);
363 ret
= DdeUnaccessData(hdata
);
364 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
367 /* XTYP_REQUEST, no item */
369 DdeGetLastError(client_pid
);
370 hdata
= DdeClientTransaction(NULL
, 0, conversation
, 0, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
371 ret
= DdeGetLastError(client_pid
);
372 ok(hdata
== NULL
, "Expected NULL hdata, got %p\n", hdata
);
373 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %08x\n", res
);
374 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
376 DdeFreeStringHandle(client_pid
, item
);
378 item
= DdeCreateStringHandleA(client_pid
, "poker", CP_WINANSI
);
380 lstrcpyA(buffer
, "poke data\r\n");
381 hdata
= DdeCreateDataHandle(client_pid
, (LPBYTE
)buffer
, lstrlenA(buffer
) + 1,
382 0, item
, CF_TEXT
, 0);
383 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
385 /* XTYP_POKE, no item */
387 DdeGetLastError(client_pid
);
388 op
= DdeClientTransaction((LPBYTE
)hdata
, -1, conversation
, 0, CF_TEXT
, XTYP_POKE
, default_timeout
, &res
);
389 ret
= DdeGetLastError(client_pid
);
390 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
391 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
392 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
394 /* XTYP_POKE, no data */
396 DdeGetLastError(client_pid
);
397 op
= DdeClientTransaction(NULL
, 0, conversation
, 0, CF_TEXT
, XTYP_POKE
, default_timeout
, &res
);
398 ret
= DdeGetLastError(client_pid
);
399 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
400 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
401 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
403 /* XTYP_POKE, wrong size */
405 DdeGetLastError(client_pid
);
406 op
= DdeClientTransaction((LPBYTE
)hdata
, 0, conversation
, item
, CF_TEXT
, XTYP_POKE
, default_timeout
, &res
);
407 ret
= DdeGetLastError(client_pid
);
408 ok(op
== (HDDEDATA
)TRUE
, "Expected TRUE, got %p\n", op
);
409 ok(res
== DDE_FACK
|| broken(res
== (0xdead0000 | DDE_FACK
)), /* win9x */
410 "Expected DDE_FACK, got %x\n", res
);
411 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
413 /* XTYP_POKE, correct params */
415 DdeGetLastError(client_pid
);
416 op
= DdeClientTransaction((LPBYTE
)hdata
, -1, conversation
, item
, CF_TEXT
, XTYP_POKE
, default_timeout
, &res
);
417 ret
= DdeGetLastError(client_pid
);
418 ok(op
== (HDDEDATA
)TRUE
, "Expected TRUE, got %p\n", op
);
419 ok(res
== DDE_FACK
|| broken(res
== (0xdead0000 | DDE_FACK
)), /* win9x */
420 "Expected DDE_FACK, got %x\n", res
);
421 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
423 DdeFreeDataHandle(hdata
);
425 lstrcpyA(buffer
, "[Command(Var)]");
426 hdata
= DdeCreateDataHandle(client_pid
, (LPBYTE
)buffer
, lstrlenA(buffer
) + 1,
427 0, NULL
, CF_TEXT
, 0);
428 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
430 /* XTYP_EXECUTE, correct params */
432 DdeGetLastError(client_pid
);
433 op
= DdeClientTransaction((LPBYTE
)hdata
, -1, conversation
, NULL
, 0, XTYP_EXECUTE
, default_timeout
, &res
);
434 ret
= DdeGetLastError(client_pid
);
435 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
436 ok(op
== (HDDEDATA
)TRUE
, "Expected TRUE, got %p\n", op
);
437 ok(res
== DDE_FACK
|| broken(res
== (0xdead0000 | DDE_FACK
)), /* win9x */
438 "Expected DDE_FACK, got %x\n", res
);
440 /* XTYP_EXECUTE, no data */
442 DdeGetLastError(client_pid
);
443 op
= DdeClientTransaction(NULL
, 0, conversation
, NULL
, 0, XTYP_EXECUTE
, default_timeout
, &res
);
444 ret
= DdeGetLastError(client_pid
);
445 ok(op
== NULL
|| broken(op
== (HDDEDATA
)TRUE
), /* win9x */ "Expected NULL, got %p\n", op
);
448 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
449 ok(ret
== DMLERR_MEMORY_ERROR
, "Expected DMLERR_MEMORY_ERROR, got %d\n", ret
);
453 ok(res
== (0xdead0000 | DDE_FACK
), "Expected DDE_FACK, got %x\n", res
);
454 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
457 /* XTYP_EXECUTE, no data, -1 size */
459 DdeGetLastError(client_pid
);
460 op
= DdeClientTransaction(NULL
, -1, conversation
, NULL
, 0, XTYP_EXECUTE
, default_timeout
, &res
);
461 ret
= DdeGetLastError(client_pid
);
462 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
463 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
464 ok(ret
== DMLERR_INVALIDPARAMETER
|| broken(ret
== DMLERR_NO_ERROR
), /* win9x */
465 "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
467 DdeFreeStringHandle(client_pid
, topic
);
468 DdeFreeDataHandle(hdata
);
470 item
= DdeCreateStringHandleA(client_pid
, "executed", CP_WINANSI
);
472 /* verify the execute */
474 DdeGetLastError(client_pid
);
475 hdata
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
476 ret
= DdeGetLastError(client_pid
);
477 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
478 ok(res
== DDE_FNOTPROCESSED
|| broken(res
== (0xdead0000 | DDE_FNOTPROCESSED
)), /* win9x */
479 "Expected DDE_FNOTPROCESSED, got %d\n", res
);
481 ok(FALSE
, "hdata is NULL\n");
484 str
= (LPSTR
)DdeAccessData(hdata
, &size
);
485 ok(!lstrcmpA(str
, "command executed\r\n"), "Expected 'command executed\\r\\n', got %s\n", str
);
486 ok(size
== 21 || broken(size
== 28), /* sizes are rounded up on win9x */
487 "Expected 21, got %d\n", size
);
489 ret
= DdeUnaccessData(hdata
);
490 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
493 /* invalid transactions */
495 DdeGetLastError(client_pid
);
496 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_ADVREQ
, default_timeout
, &res
);
497 ret
= DdeGetLastError(client_pid
);
498 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
499 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
500 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
503 DdeGetLastError(client_pid
);
504 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_CONNECT
, default_timeout
, &res
);
505 ret
= DdeGetLastError(client_pid
);
506 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
507 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
508 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
511 DdeGetLastError(client_pid
);
512 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_CONNECT_CONFIRM
, default_timeout
, &res
);
513 ret
= DdeGetLastError(client_pid
);
514 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
515 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
516 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
519 DdeGetLastError(client_pid
);
520 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_DISCONNECT
, default_timeout
, &res
);
521 ret
= DdeGetLastError(client_pid
);
522 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
523 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
524 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
527 DdeGetLastError(client_pid
);
528 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_ERROR
, default_timeout
, &res
);
529 ret
= DdeGetLastError(client_pid
);
530 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
531 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
532 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
535 DdeGetLastError(client_pid
);
536 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_MONITOR
, default_timeout
, &res
);
537 ret
= DdeGetLastError(client_pid
);
538 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
539 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
540 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
543 DdeGetLastError(client_pid
);
544 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REGISTER
, default_timeout
, &res
);
545 ret
= DdeGetLastError(client_pid
);
546 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
547 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
548 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
551 DdeGetLastError(client_pid
);
552 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_UNREGISTER
, default_timeout
, &res
);
553 ret
= DdeGetLastError(client_pid
);
554 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
555 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
556 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
559 DdeGetLastError(client_pid
);
560 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_WILDCONNECT
, default_timeout
, &res
);
561 ret
= DdeGetLastError(client_pid
);
562 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
563 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
564 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
567 DdeGetLastError(client_pid
);
568 op
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_XACT_COMPLETE
, default_timeout
, &res
);
569 ret
= DdeGetLastError(client_pid
);
570 ok(op
== NULL
, "Expected NULL, got %p\n", op
);
571 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", res
);
572 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
574 DdeFreeStringHandle(client_pid
, item
);
576 ret
= DdeDisconnect(conversation
);
577 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
579 ret
= DdeUninitialize(client_pid
);
580 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
583 static DWORD server_pid
;
585 static HDDEDATA CALLBACK
server_ddeml_callback(UINT uType
, UINT uFmt
, HCONV hconv
,
586 HSZ hsz1
, HSZ hsz2
, HDDEDATA hdata
,
587 ULONG_PTR dwData1
, ULONG_PTR dwData2
)
589 char str
[MAX_PATH
], *ptr
;
593 static int msg_index
= 0;
594 static HCONV conversation
= 0;
602 ok(msg_index
== 1, "Expected 1, got %d\n", msg_index
);
603 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
604 ok(hconv
== 0, "Expected 0, got %p\n", hconv
);
605 ok(hdata
== 0, "Expected 0, got %p\n", hdata
);
606 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
607 ok(dwData2
== 0, "Expected 0, got %08lx\n", dwData2
);
609 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
610 ok(!lstrcmpA(str
, "TestDDEServer"), "Expected TestDDEServer, got %s\n", str
);
611 ok(size
== 13, "Expected 13, got %d\n", size
);
613 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
614 if (!strncmp( str
, "TestDDEServer:(", 15 )) /* win9x style */
616 ok(size
== 16 + 2*sizeof(WORD
), "Got size %d for %s\n", size
, str
);
620 ok(!strncmp(str
, "TestDDEServer(", 14), "Expected TestDDEServer(, got %s\n", str
);
621 ok(size
== 17 + 2*sizeof(ULONG_PTR
), "Got size %d for %s\n", size
, str
);
623 ok(str
[size
- 1] == ')', "Expected ')', got %c\n", str
[size
- 1]);
625 return (HDDEDATA
)TRUE
;
630 ok(msg_index
== 2, "Expected 2, got %d\n", msg_index
);
631 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
632 ok(hconv
== 0, "Expected 0, got %p\n", hconv
);
633 ok(hdata
== 0, "Expected 0, got %p\n", hdata
);
634 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
635 ok(dwData2
== FALSE
, "Expected FALSE, got %08lx\n", dwData2
);
637 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
638 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
639 ok(size
== 12, "Expected 12, got %d\n", size
);
641 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
642 ok(!lstrcmpA(str
, "TestDDEServer"), "Expected TestDDEServer, got %s\n", str
);
643 ok(size
== 13, "Expected 13, got %d\n", size
);
645 return (HDDEDATA
)TRUE
;
648 case XTYP_CONNECT_CONFIRM
:
650 conversation
= hconv
;
652 ok(msg_index
== 3, "Expected 3, got %d\n", msg_index
);
653 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
654 ok(hconv
!= NULL
, "Expected non-NULL hconv\n");
655 ok(hdata
== 0, "Expected 0, got %p\n", hdata
);
656 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
657 ok(dwData2
== FALSE
, "Expected FALSE, got %08lx\n", dwData2
);
659 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
660 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
661 ok(size
== 12, "Expected 12, got %d\n", size
);
663 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
664 ok(!lstrcmpA(str
, "TestDDEServer"), "Expected TestDDEServer, got %s\n", str
);
665 ok(size
== 13, "Expected 13, got %d\n", size
);
667 return (HDDEDATA
)TRUE
;
672 ok(msg_index
== 4 || msg_index
== 5 || msg_index
== 6,
673 "Expected 4, 5 or 6, got %d\n", msg_index
);
674 ok(hconv
== conversation
, "Expected conversation handle, got %p\n", hconv
);
675 ok(hdata
== 0, "Expected 0, got %p\n", hdata
);
676 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
677 ok(dwData2
== 0, "Expected 0, got %08lx\n", dwData2
);
680 ok(uFmt
== 0xbeef, "Expected 0xbeef, got %08x\n", uFmt
);
682 ok(uFmt
== CF_TEXT
, "Expected CF_TEXT, got %08x\n", uFmt
);
684 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
685 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
686 ok(size
== 12, "Expected 12, got %d\n", size
);
688 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
693 ok(!lstrcmpA(str
, ""), "Expected empty string, got %s\n", str
);
694 ok(size
== 1, "Expected 1, got %d\n", size
);
697 else if (msg_index
== 6)
699 ok(!lstrcmpA(str
, "request"), "Expected request, got %s\n", str
);
700 ok(size
== 7, "Expected 7, got %d\n", size
);
705 lstrcpyA(str
, "requested data\r\n");
706 return DdeCreateDataHandle(server_pid
, (LPBYTE
)str
, lstrlenA(str
) + 1,
707 0, hsz2
, CF_TEXT
, 0);
715 ok(msg_index
== 7 || msg_index
== 8, "Expected 7 or 8, got %d\n", msg_index
);
716 ok(uFmt
== CF_TEXT
, "Expected CF_TEXT, got %d\n", uFmt
);
717 ok(hconv
== conversation
, "Expected conversation handle, got %p\n", hconv
);
718 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
719 ok(dwData2
== 0, "Expected 0, got %08lx\n", dwData2
);
721 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
722 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
723 ok(size
== 12, "Expected 12, got %d\n", size
);
725 ptr
= (LPSTR
)DdeAccessData(hdata
, &size
);
726 ok(!lstrcmpA(ptr
, "poke data\r\n"), "Expected 'poke data\\r\\n', got %s\n", ptr
);
727 ok(size
== 12 || broken(size
== 28), /* sizes are rounded up on win9x */
728 "Expected 12, got %d\n", size
);
729 DdeUnaccessData(hdata
);
731 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
735 ok(!lstrcmpA(str
, ""), "Expected empty string, got %s\n", str
);
736 ok(size
== 1, "Expected 1, got %d\n", size
);
741 ok(!lstrcmpA(str
, "poke"), "Expected poke, got %s\n", str
);
742 ok(size
== 4, "Expected 4, got %d\n", size
);
745 return (HDDEDATA
)DDE_FACK
;
750 ok(msg_index
>= 9 && msg_index
<= 11, "Expected 9 or 11, got %d\n", msg_index
);
751 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
752 ok(hconv
== conversation
, "Expected conversation handle, got %p\n", hconv
);
753 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
754 ok(dwData2
== 0, "Expected 0, got %08lx\n", dwData2
);
755 ok(hsz2
== 0, "Expected 0, got %p\n", hsz2
);
757 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
758 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
759 ok(size
== 12, "Expected 12, got %d\n", size
);
761 if (msg_index
== 9 || msg_index
== 11)
763 ptr
= (LPSTR
)DdeAccessData(hdata
, &size
);
767 ok(!lstrcmpA(ptr
, "[Command(Var)]"), "Expected '[Command(Var)]', got %s\n", ptr
);
768 ok(size
== 15, "Expected 15, got %d\n", size
);
769 ret
= (HDDEDATA
)DDE_FACK
;
773 ok(!lstrcmpA(ptr
, "[BadCommand(Var)]"), "Expected '[BadCommand(Var)]', got %s\n", ptr
);
774 ok(size
== 18, "Expected 18, got %d\n", size
);
775 ret
= DDE_FNOTPROCESSED
;
778 DdeUnaccessData(hdata
);
780 else if (msg_index
== 10)
785 size
= DdeGetData(hdata
, NULL
, 0, 0);
786 ok(size
== 17, "DdeGetData should have returned 17 not %d\n", size
);
787 ptr
= HeapAlloc(GetProcessHeap(), 0, size
);
788 ok(ptr
!= NULL
,"HeapAlloc should have returned ptr not NULL\n");
789 rsize
= DdeGetData(hdata
, (LPBYTE
)ptr
, size
, 0);
790 ok(rsize
== size
, "DdeGetData did not return %d bytes but %d\n", size
, rsize
);
792 ok(!lstrcmpA(ptr
, "[Command-2(Var)]"), "Expected '[Command-2(Var)]' got %s\n", ptr
);
793 ok(size
== 17, "Expected 17, got %d\n", size
);
794 ret
= (HDDEDATA
)DDE_FACK
;
796 HeapFree(GetProcessHeap(), 0, ptr
);
802 case XTYP_DISCONNECT
:
804 ok(msg_index
== 12, "Expected 12, got %d\n", msg_index
);
805 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
806 ok(hconv
== conversation
, "Expected conversation handle, got %p\n", hconv
);
807 ok(dwData1
== 0, "Expected 0, got %08lx\n", dwData1
);
808 ok(dwData2
== 0, "Expected 0, got %08lx\n", dwData2
);
809 ok(hsz1
== 0, "Expected 0, got %p\n", hsz2
);
810 ok(hsz2
== 0, "Expected 0, got %p\n", hsz2
);
816 ok(FALSE
, "Unhandled msg: %08x\n", uType
);
822 static void test_ddeml_server(HANDLE hproc
)
830 /* set up DDE server */
832 res
= DdeInitialize(&server_pid
, server_ddeml_callback
, APPCLASS_STANDARD
, 0);
833 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
835 server
= DdeCreateStringHandle(server_pid
, "TestDDEServer", CP_WINANSI
);
836 ok(server
!= NULL
, "Expected non-NULL string handle\n");
838 hdata
= DdeNameService(server_pid
, server
, 0, DNS_REGISTER
);
839 ok(hdata
== (HDDEDATA
)TRUE
, "Expected TRUE, got %p\n", hdata
);
841 while (MsgWaitForMultipleObjects( 1, &hproc
, FALSE
, INFINITE
, QS_ALLINPUT
) != 0)
843 while (PeekMessage(&msg
, 0, 0, 0, PM_REMOVE
)) DispatchMessageA(&msg
);
845 ret
= DdeUninitialize(server_pid
);
846 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
847 GetExitCodeProcess( hproc
, &res
);
848 ok( !res
, "client failed with %u error(s)\n", res
);
851 static HWND client_hwnd
, server_hwnd
;
852 static ATOM server
, topic
, item
;
853 static HGLOBAL execute_hglobal
;
855 static LRESULT WINAPI
dde_msg_client_wndproc(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
864 static int msg_index
= 0;
866 if (msg
< WM_DDE_FIRST
|| msg
> WM_DDE_LAST
)
867 return DefWindowProcA(hwnd
, msg
, wparam
, lparam
);
873 case WM_DDE_INITIATE
:
875 ok(msg_index
== 1, "Expected 1, got %d\n", msg_index
);
876 ok(wparam
== (WPARAM
)client_hwnd
, "Expected client hwnd, got %08lx\n", wparam
);
878 size
= GlobalGetAtomNameA(LOWORD(lparam
), str
, MAX_PATH
);
879 ok(LOWORD(lparam
) == server
, "Expected server atom, got %08x\n", LOWORD(lparam
));
880 ok(!lstrcmpA(str
, "TestDDEServer"), "Expected TestDDEServer, got %s\n", str
);
881 ok(size
== 13, "Expected 13, got %d\n", size
);
883 size
= GlobalGetAtomNameA(HIWORD(lparam
), str
, MAX_PATH
);
884 ok(HIWORD(lparam
) == topic
, "Expected topic atom, got %08x\n", HIWORD(lparam
));
885 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
886 ok(size
== 12, "Expected 12, got %d\n", size
);
893 ok((msg_index
>= 2 && msg_index
<= 4) || (msg_index
>= 6 && msg_index
<= 11),
894 "Expected 2, 3, 4, 6, 7, 8, 9, 10 or 11, got %d\n", msg_index
);
898 server_hwnd
= (HWND
)wparam
;
899 ok(wparam
!= 0, "Expected non-NULL wparam, got %08lx\n", wparam
);
901 size
= GlobalGetAtomNameA(LOWORD(lparam
), str
, MAX_PATH
);
902 ok(LOWORD(lparam
) == server
, "Expected server atom, got %08x\n", LOWORD(lparam
));
903 ok(!lstrcmpA(str
, "TestDDEServer"), "Expected TestDDEServer, got %s\n", str
);
904 ok(size
== 13, "Expected 13, got %d\n", size
);
906 size
= GlobalGetAtomNameA(HIWORD(lparam
), str
, MAX_PATH
);
907 ok(HIWORD(lparam
) == topic
, "Expected topic atom, got %08x\n", HIWORD(lparam
));
908 ok(!lstrcmpA(str
, "TestDDETopic"), "Expected TestDDETopic, got %s\n", str
);
909 ok(size
== 12, "Expected 12, got %d\n", size
);
911 else if (msg_index
>= 9 && msg_index
<= 11)
913 ok(wparam
== (WPARAM
)server_hwnd
, "Expected server hwnd, got %08lx\n", wparam
);
915 UnpackDDElParam(WM_DDE_ACK
, lparam
, &lo
, &hi
);
918 ok(ack
->bAppReturnCode
== 0, "Expected 0, got %d\n", ack
->bAppReturnCode
);
919 ok(ack
->reserved
== 0, "Expected 0, got %d\n", ack
->reserved
);
920 ok(ack
->fBusy
== FALSE
, "Expected FALSE, got %d\n", ack
->fBusy
);
922 ok(hi
== (UINT_PTR
)execute_hglobal
, "Expected execute hglobal, got %08lx\n", hi
);
923 ptr
= GlobalLock((HGLOBAL
)hi
);
927 ok(ack
->fAck
== TRUE
, "Expected TRUE, got %d\n", ack
->fAck
);
928 ok(!lstrcmpA(ptr
, "[Command(Var)]"), "Expected '[Command(Var)]', got %s\n", ptr
);
929 } else if (msg_index
== 10)
931 ok(ack
->fAck
== TRUE
, "Expected TRUE, got %d\n", ack
->fAck
);
932 ok(!lstrcmpA(ptr
, "[Command-2(Var)]"), "Expected '[Command-2(Var)]', got %s\n", ptr
);
936 ok(ack
->fAck
== FALSE
, "Expected FALSE, got %d\n", ack
->fAck
);
937 ok(!lstrcmpA(ptr
, "[BadCommand(Var)]"), "Expected '[BadCommand(Var)]', got %s\n", ptr
);
940 GlobalUnlock((HGLOBAL
)hi
);
944 ok(wparam
== (WPARAM
)server_hwnd
, "Expected server hwnd, got %08lx\n", wparam
);
946 UnpackDDElParam(WM_DDE_ACK
, lparam
, &lo
, &hi
);
949 ok(ack
->bAppReturnCode
== 0, "Expected 0, got %d\n", ack
->bAppReturnCode
);
950 ok(ack
->reserved
== 0, "Expected 0, got %d\n", ack
->reserved
);
951 ok(ack
->fBusy
== FALSE
, "Expected FALSE, got %d\n", ack
->fBusy
);
954 ok(ack
->fAck
== TRUE
, "Expected TRUE, got %d\n", ack
->fAck
);
957 if (msg_index
== 6) todo_wine
958 ok(ack
->fAck
== FALSE
, "Expected FALSE, got %d\n", ack
->fAck
);
961 size
= GlobalGetAtomNameA(hi
, str
, MAX_PATH
);
964 ok(hi
== item
, "Expected item atom, got %08lx\n", hi
);
965 ok(!lstrcmpA(str
, "request"), "Expected request, got %s\n", str
);
966 ok(size
== 7, "Expected 7, got %d\n", size
);
968 else if (msg_index
== 4 || msg_index
== 7)
970 ok(hi
== 0, "Expected 0, got %08lx\n", hi
);
971 ok(size
== 0, "Expected empty string, got %d\n", size
);
975 ok(hi
== item
, "Expected item atom, got %08lx\n", hi
);
976 if (msg_index
== 6) todo_wine
978 ok(!lstrcmpA(str
, "poke"), "Expected poke, got %s\n", str
);
979 ok(size
== 4, "Expected 4, got %d\n", size
);
989 ok(msg_index
== 5, "Expected 5, got %d\n", msg_index
);
990 ok(wparam
== (WPARAM
)server_hwnd
, "Expected server hwnd, got %08lx\n", wparam
);
992 UnpackDDElParam(WM_DDE_DATA
, lparam
, &lo
, &hi
);
994 data
= GlobalLock((HGLOBAL
)lo
);
995 ok(data
->unused
== 0, "Expected 0, got %d\n", data
->unused
);
996 ok(data
->fResponse
== TRUE
, "Expected TRUE, got %d\n", data
->fResponse
);
999 ok(data
->fRelease
== TRUE
, "Expected TRUE, got %d\n", data
->fRelease
);
1001 ok(data
->fAckReq
== 0, "Expected 0, got %d\n", data
->fAckReq
);
1002 ok(data
->cfFormat
== CF_TEXT
, "Expected CF_TEXT, got %d\n", data
->cfFormat
);
1003 ok(!lstrcmpA((LPSTR
)data
->Value
, "requested data\r\n"),
1004 "Expected 'requested data\\r\\n', got %s\n", data
->Value
);
1005 GlobalUnlock((HGLOBAL
)lo
);
1007 size
= GlobalGetAtomNameA(hi
, str
, MAX_PATH
);
1008 ok(hi
== item
, "Expected item atom, got %08x\n", HIWORD(lparam
));
1009 ok(!lstrcmpA(str
, "request"), "Expected request, got %s\n", str
);
1010 ok(size
== 7, "Expected 7, got %d\n", size
);
1012 GlobalFree((HGLOBAL
)lo
);
1013 GlobalDeleteAtom(hi
);
1019 ok(FALSE
, "Unhandled msg: %08x\n", msg
);
1022 return DefWindowProcA(hwnd
, msg
, wparam
, lparam
);
1025 static HGLOBAL
create_poke(void)
1031 size
= FIELD_OFFSET(DDEPOKE
, Value
[sizeof("poke data\r\n")]);
1032 hglobal
= GlobalAlloc(GMEM_DDESHARE
, size
);
1033 ok(hglobal
!= 0, "Expected non-NULL hglobal\n");
1035 poke
= GlobalLock(hglobal
);
1037 poke
->fRelease
= TRUE
;
1038 poke
->fReserved
= TRUE
;
1039 poke
->cfFormat
= CF_TEXT
;
1040 lstrcpyA((LPSTR
)poke
->Value
, "poke data\r\n");
1041 GlobalUnlock(hglobal
);
1046 static HGLOBAL
create_execute(LPCSTR command
)
1051 hglobal
= GlobalAlloc(GMEM_DDESHARE
, lstrlenA(command
) + 1);
1052 ok(hglobal
!= 0, "Expected non-NULL hglobal\n");
1054 ptr
= GlobalLock(hglobal
);
1055 lstrcpyA(ptr
, command
);
1056 GlobalUnlock(hglobal
);
1061 static void test_msg_client(void)
1066 create_dde_window(&client_hwnd
, "dde_client", dde_msg_client_wndproc
);
1068 server
= GlobalAddAtomA("TestDDEServer");
1069 ok(server
!= 0, "Expected non-NULL server\n");
1071 topic
= GlobalAddAtomA("TestDDETopic");
1072 ok(topic
!= 0, "Expected non-NULL topic\n");
1074 SendMessageA(HWND_BROADCAST
, WM_DDE_INITIATE
, (WPARAM
)client_hwnd
, MAKELONG(server
, topic
));
1076 GlobalDeleteAtom(server
);
1077 GlobalDeleteAtom(topic
);
1081 item
= GlobalAddAtom("request");
1082 ok(item
!= 0, "Expected non-NULL item\n");
1084 /* WM_DDE_REQUEST, bad clipboard format */
1085 lparam
= PackDDElParam(WM_DDE_REQUEST
, 0xdeadbeef, item
);
1086 PostMessageA(server_hwnd
, WM_DDE_REQUEST
, (WPARAM
)client_hwnd
, lparam
);
1090 /* WM_DDE_REQUEST, no item */
1091 lparam
= PackDDElParam(WM_DDE_REQUEST
, CF_TEXT
, 0);
1092 PostMessageA(server_hwnd
, WM_DDE_REQUEST
, (WPARAM
)client_hwnd
, lparam
);
1096 /* WM_DDE_REQUEST, no client hwnd */
1097 lparam
= PackDDElParam(WM_DDE_REQUEST
, CF_TEXT
, item
);
1098 PostMessageA(server_hwnd
, WM_DDE_REQUEST
, 0, lparam
);
1102 /* WM_DDE_REQUEST, correct params */
1103 lparam
= PackDDElParam(WM_DDE_REQUEST
, CF_TEXT
, item
);
1104 PostMessageA(server_hwnd
, WM_DDE_REQUEST
, (WPARAM
)client_hwnd
, lparam
);
1108 GlobalDeleteAtom(item
);
1109 item
= GlobalAddAtomA("poke");
1110 ok(item
!= 0, "Expected non-NULL item\n");
1112 hglobal
= create_poke();
1114 /* WM_DDE_POKE, no ddepoke */
1115 lparam
= PackDDElParam(WM_DDE_POKE
, 0, item
);
1116 /* win9x returns 0 here and crashes in PostMessageA */
1118 PostMessageA(server_hwnd
, WM_DDE_POKE
, (WPARAM
)client_hwnd
, lparam
);
1122 win_skip("no lparam for WM_DDE_POKE\n");
1125 /* WM_DDE_POKE, no item */
1126 lparam
= PackDDElParam(WM_DDE_POKE
, (UINT_PTR
)hglobal
, 0);
1127 PostMessageA(server_hwnd
, WM_DDE_POKE
, (WPARAM
)client_hwnd
, lparam
);
1131 hglobal
= create_poke();
1133 /* WM_DDE_POKE, no client hwnd */
1134 lparam
= PackDDElParam(WM_DDE_POKE
, (UINT_PTR
)hglobal
, item
);
1135 PostMessageA(server_hwnd
, WM_DDE_POKE
, 0, lparam
);
1139 /* WM_DDE_POKE, all params correct */
1140 lparam
= PackDDElParam(WM_DDE_POKE
, (UINT_PTR
)hglobal
, item
);
1141 PostMessageA(server_hwnd
, WM_DDE_POKE
, (WPARAM
)client_hwnd
, lparam
);
1145 execute_hglobal
= create_execute("[Command(Var)]");
1147 /* WM_DDE_EXECUTE, no lparam */
1148 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, (WPARAM
)client_hwnd
, 0);
1152 /* WM_DDE_EXECUTE, no hglobal */
1153 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0, 0);
1154 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, (WPARAM
)client_hwnd
, lparam
);
1158 /* WM_DDE_EXECUTE, no client hwnd */
1159 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0, (UINT_PTR
)execute_hglobal
);
1160 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, 0, lparam
);
1164 /* WM_DDE_EXECUTE, all params correct */
1165 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0, (UINT_PTR
)execute_hglobal
);
1166 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, (WPARAM
)client_hwnd
, lparam
);
1170 GlobalFree(execute_hglobal
);
1171 execute_hglobal
= create_execute("[Command-2(Var)]");
1173 /* WM_DDE_EXECUTE, all params correct */
1174 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0, (UINT_PTR
)execute_hglobal
);
1175 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, (WPARAM
)client_hwnd
, lparam
);
1179 GlobalFree(execute_hglobal
);
1180 execute_hglobal
= create_execute("[BadCommand(Var)]");
1182 /* WM_DDE_EXECUTE that will get rejected */
1183 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0, (UINT_PTR
)execute_hglobal
);
1184 PostMessageA(server_hwnd
, WM_DDE_EXECUTE
, (WPARAM
)client_hwnd
, lparam
);
1188 destroy_dde_window(&client_hwnd
, "dde_client");
1191 static LRESULT WINAPI
hook_dde_client_wndprocA(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1195 trace("hook_dde_client_wndprocA: %p %04x %08lx %08lx\n", hwnd
, msg
, wparam
, lparam
);
1200 UnpackDDElParam(WM_DDE_ACK
, lparam
, &lo
, &hi
);
1201 trace("WM_DDE_ACK: status %04lx hglobal %p\n", lo
, (HGLOBAL
)hi
);
1207 return CallWindowProcA(old_dde_client_wndproc
, hwnd
, msg
, wparam
, lparam
);
1210 static LRESULT WINAPI
hook_dde_client_wndprocW(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1214 trace("hook_dde_client_wndprocW: %p %04x %08lx %08lx\n", hwnd
, msg
, wparam
, lparam
);
1219 UnpackDDElParam(WM_DDE_ACK
, lparam
, &lo
, &hi
);
1220 trace("WM_DDE_ACK: status %04lx hglobal %p\n", lo
, (HGLOBAL
)hi
);
1226 return CallWindowProcW(old_dde_client_wndproc
, hwnd
, msg
, wparam
, lparam
);
1229 static LRESULT WINAPI
dde_server_wndprocA(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1231 static BOOL client_unicode
, conv_unicode
;
1236 case WM_DDE_INITIATE
:
1238 ATOM aService
= GlobalAddAtomW(TEST_DDE_SERVICE
);
1240 trace("server A: got WM_DDE_INITIATE from %p (%s) with %08lx\n",
1241 (HWND
)wparam
, client_unicode
? "Unicode" : "ANSI", lparam
);
1243 if (LOWORD(lparam
) == aService
)
1245 client_unicode
= IsWindowUnicode((HWND
)wparam
);
1246 conv_unicode
= client_unicode
;
1247 if (step
>= 10) client_unicode
= !client_unicode
; /* change the client window type */
1250 old_dde_client_wndproc
= (WNDPROC
)SetWindowLongPtrW((HWND
)wparam
, GWLP_WNDPROC
,
1251 (ULONG_PTR
)hook_dde_client_wndprocW
);
1253 old_dde_client_wndproc
= (WNDPROC
)SetWindowLongPtrA((HWND
)wparam
, GWLP_WNDPROC
,
1254 (ULONG_PTR
)hook_dde_client_wndprocA
);
1255 trace("server: sending WM_DDE_ACK to %p\n", (HWND
)wparam
);
1256 SendMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, PackDDElParam(WM_DDE_ACK
, aService
, 0));
1259 GlobalDeleteAtom(aService
);
1263 case WM_DDE_EXECUTE
:
1270 trace("server A: got WM_DDE_EXECUTE from %p with %08lx\n", (HWND
)wparam
, lparam
);
1272 UnpackDDElParam(WM_DDE_EXECUTE
, lparam
, &lo
, &hi
);
1273 trace("%08lx => lo %04lx hi %04lx\n", lparam
, lo
, hi
);
1275 ack
.bAppReturnCode
= 0;
1278 /* We have to send a negative acknowledge even if we don't
1279 * accept the command, otherwise Windows goes mad and next time
1280 * we send an acknowledge DDEML drops the connection.
1281 * Not sure how to call it: a bug or a feature.
1285 if ((cmd
= GlobalLock((HGLOBAL
)hi
)))
1287 ack
.fAck
= !lstrcmpA(cmd
, exec_cmdA
) || !lstrcmpW((LPCWSTR
)cmd
, exec_cmdW
);
1291 case 0: /* bad command */
1292 trace( "server A got unhandled command\n" );
1295 case 1: /* ANSI command */
1297 ok( !lstrcmpA(cmd
, exec_cmdA
), "server A got wrong command '%s'\n", cmd
);
1298 else /* we get garbage as the A command was mapped W->A */
1299 ok( cmd
[0] != exec_cmdA
[0], "server A got wrong command '%s'\n", cmd
);
1302 case 2: /* ANSI command in Unicode format */
1304 ok( !lstrcmpA(cmd
, exec_cmdA
), "server A got wrong command '%s'\n", cmd
);
1306 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdAW
), "server A got wrong command '%s'\n", cmd
);
1309 case 3: /* Unicode command */
1311 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdW
), "server A got wrong command '%s'\n", cmd
);
1312 else /* correctly mapped W->A */
1313 ok( !lstrcmpA(cmd
, exec_cmdWA
), "server A got wrong command '%s'\n", cmd
);
1316 case 4: /* Unicode command in ANSI format */
1318 ok( !lstrcmpA(cmd
, exec_cmdWA
), "server A got wrong command '%s'\n", cmd
);
1319 else /* we get garbage as the A command was mapped W->A */
1320 ok( cmd
[0] != exec_cmdWA
[0], "server A got wrong command '%s'\n", cmd
);
1323 GlobalUnlock((HGLOBAL
)hi
);
1325 else ok( 0, "bad command data %lx\n", hi
);
1328 trace("server A: posting %s WM_DDE_ACK to %p\n", ack
.fAck
? "POSITIVE" : "NEGATIVE", (HWND
)wparam
);
1330 status
= *((WORD
*)&ack
);
1331 lparam
= ReuseDDElParam(lparam
, WM_DDE_EXECUTE
, WM_DDE_ACK
, status
, hi
);
1333 PostMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
1337 case WM_DDE_TERMINATE
:
1342 trace("server A: got WM_DDE_TERMINATE from %p with %08lx\n", (HWND
)wparam
, lparam
);
1344 ack
.bAppReturnCode
= 0;
1349 trace("server A: posting %s WM_DDE_ACK to %p\n", ack
.fAck
? "POSITIVE" : "NEGATIVE", (HWND
)wparam
);
1351 status
= *((WORD
*)&ack
);
1352 lparam
= PackDDElParam(WM_DDE_ACK
, status
, 0);
1354 PostMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
1362 return DefWindowProcA(hwnd
, msg
, wparam
, lparam
);
1365 static LRESULT WINAPI
dde_server_wndprocW(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1367 static BOOL client_unicode
, conv_unicode
;
1372 case WM_DDE_INITIATE
:
1374 ATOM aService
= GlobalAddAtomW(TEST_DDE_SERVICE
);
1376 if (LOWORD(lparam
) == aService
)
1378 client_unicode
= IsWindowUnicode((HWND
)wparam
);
1379 conv_unicode
= client_unicode
;
1380 if (step
>= 10) client_unicode
= !client_unicode
; /* change the client window type */
1383 old_dde_client_wndproc
= (WNDPROC
)SetWindowLongPtrW((HWND
)wparam
, GWLP_WNDPROC
,
1384 (ULONG_PTR
)hook_dde_client_wndprocW
);
1386 old_dde_client_wndproc
= (WNDPROC
)SetWindowLongPtrA((HWND
)wparam
, GWLP_WNDPROC
,
1387 (ULONG_PTR
)hook_dde_client_wndprocA
);
1388 trace("server W: sending WM_DDE_ACK to %p\n", (HWND
)wparam
);
1389 SendMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, PackDDElParam(WM_DDE_ACK
, aService
, 0));
1392 GlobalDeleteAtom(aService
);
1394 trace("server W: got WM_DDE_INITIATE from %p with %08lx (client %s conv %s)\n", (HWND
)wparam
,
1395 lparam
, client_unicode
? "Unicode" : "ANSI", conv_unicode
? "Unicode" : "ANSI" );
1400 case WM_DDE_EXECUTE
:
1407 trace("server W: got WM_DDE_EXECUTE from %p with %08lx\n", (HWND
)wparam
, lparam
);
1409 UnpackDDElParam(WM_DDE_EXECUTE
, lparam
, &lo
, &hi
);
1410 trace("%08lx => lo %04lx hi %04lx\n", lparam
, lo
, hi
);
1412 ack
.bAppReturnCode
= 0;
1415 /* We have to send a negative acknowledge even if we don't
1416 * accept the command, otherwise Windows goes mad and next time
1417 * we send an acknowledge DDEML drops the connection.
1418 * Not sure how to call it: a bug or a feature.
1422 if ((cmd
= GlobalLock((HGLOBAL
)hi
)))
1424 ack
.fAck
= !lstrcmpA(cmd
, exec_cmdA
) || !lstrcmpW((LPCWSTR
)cmd
, exec_cmdW
);
1428 case 0: /* bad command */
1429 trace( "server W got unhandled command\n" );
1432 case 1: /* ANSI command */
1433 if (conv_unicode
&& !client_unicode
) /* W->A mapping -> garbage */
1434 ok( cmd
[0] != exec_cmdA
[0], "server W got wrong command '%s'\n", cmd
);
1435 else if (!conv_unicode
&& client_unicode
) /* A->W mapping */
1436 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdAW
), "server W got wrong command '%s'\n", cmd
);
1438 ok( !lstrcmpA(cmd
, exec_cmdA
), "server W got wrong command '%s'\n", cmd
);
1441 case 2: /* ANSI command in Unicode format */
1442 if (conv_unicode
&& !client_unicode
) /* W->A mapping */
1443 ok( !lstrcmpA(cmd
, exec_cmdA
), "server W got wrong command '%s'\n", cmd
);
1444 else if (!conv_unicode
&& client_unicode
) /* A->W mapping */
1445 ok( *(WCHAR
*)cmd
== exec_cmdAW
[0], "server W got wrong command '%s'\n", cmd
);
1447 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdAW
), "server W got wrong command '%s'\n", cmd
);
1450 case 3: /* Unicode command */
1451 if (conv_unicode
&& !client_unicode
) /* W->A mapping */
1452 ok( !lstrcmpA(cmd
, exec_cmdWA
), "server W got wrong command '%s'\n", cmd
);
1453 else if (!conv_unicode
&& client_unicode
) /* A->W mapping */
1454 ok( *(WCHAR
*)cmd
== exec_cmdW
[0], "server W got wrong command '%s'\n", cmd
);
1456 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdW
), "server W got wrong command '%s'\n", cmd
);
1459 case 4: /* Unicode command in ANSI format */
1460 if (conv_unicode
&& !client_unicode
) /* W->A mapping -> garbage */
1461 ok( cmd
[0] != exec_cmdWA
[0], "server W got wrong command '%s'\n", cmd
);
1462 else if (!conv_unicode
&& client_unicode
) /* A->W mapping */
1463 ok( !lstrcmpW((LPCWSTR
)cmd
, exec_cmdW
), "server W got wrong command '%s'\n", cmd
);
1465 ok( !lstrcmpA(cmd
, exec_cmdWA
), "server W got wrong command '%s'\n", cmd
);
1468 GlobalUnlock((HGLOBAL
)hi
);
1470 else ok( 0, "bad command data %lx\n", hi
);
1473 trace("server W: posting %s WM_DDE_ACK to %p\n", ack
.fAck
? "POSITIVE" : "NEGATIVE", (HWND
)wparam
);
1475 status
= *((WORD
*)&ack
);
1476 lparam
= ReuseDDElParam(lparam
, WM_DDE_EXECUTE
, WM_DDE_ACK
, status
, hi
);
1478 PostMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
1482 case WM_DDE_TERMINATE
:
1487 trace("server W: got WM_DDE_TERMINATE from %p with %08lx\n", (HWND
)wparam
, lparam
);
1489 ack
.bAppReturnCode
= 0;
1494 trace("server W: posting %s WM_DDE_ACK to %p\n", ack
.fAck
? "POSITIVE" : "NEGATIVE", (HWND
)wparam
);
1496 status
= *((WORD
*)&ack
);
1497 lparam
= PackDDElParam(WM_DDE_ACK
, status
, 0);
1499 PostMessageW((HWND
)wparam
, WM_DDE_ACK
, (WPARAM
)hwnd
, lparam
);
1507 return DefWindowProcW(hwnd
, msg
, wparam
, lparam
);
1510 static HWND
create_dde_server( BOOL unicode
)
1515 static const char server_class_nameA
[] = "dde_server_windowA";
1516 static const WCHAR server_class_nameW
[] = {'d','d','e','_','s','e','r','v','e','r','_','w','i','n','d','o','w','W',0};
1520 memset(&wcW
, 0, sizeof(wcW
));
1521 wcW
.lpfnWndProc
= dde_server_wndprocW
;
1522 wcW
.lpszClassName
= server_class_nameW
;
1523 wcW
.hInstance
= GetModuleHandleA(0);
1524 RegisterClassW(&wcW
);
1526 server
= CreateWindowExW(0, server_class_nameW
, NULL
, WS_POPUP
,
1527 100, 100, CW_USEDEFAULT
, CW_USEDEFAULT
,
1528 GetDesktopWindow(), 0, GetModuleHandleA(0), NULL
);
1532 memset(&wcA
, 0, sizeof(wcA
));
1533 wcA
.lpfnWndProc
= dde_server_wndprocA
;
1534 wcA
.lpszClassName
= server_class_nameA
;
1535 wcA
.hInstance
= GetModuleHandleA(0);
1536 RegisterClassA(&wcA
);
1538 server
= CreateWindowExA(0, server_class_nameA
, NULL
, WS_POPUP
,
1539 100, 100, CW_USEDEFAULT
, CW_USEDEFAULT
,
1540 GetDesktopWindow(), 0, GetModuleHandleA(0), NULL
);
1542 ok(!IsWindowUnicode(server
) == !unicode
, "wrong unicode type\n");
1546 static HDDEDATA CALLBACK
client_dde_callback(UINT uType
, UINT uFmt
, HCONV hconv
,
1547 HSZ hsz1
, HSZ hsz2
, HDDEDATA hdata
,
1548 ULONG_PTR dwData1
, ULONG_PTR dwData2
)
1550 static const char * const cmd_type
[15] = {
1551 "XTYP_ERROR", "XTYP_ADVDATA", "XTYP_ADVREQ", "XTYP_ADVSTART",
1552 "XTYP_ADVSTOP", "XTYP_EXECUTE", "XTYP_CONNECT", "XTYP_CONNECT_CONFIRM",
1553 "XTYP_XACT_COMPLETE", "XTYP_POKE", "XTYP_REGISTER", "XTYP_REQUEST",
1554 "XTYP_DISCONNECT", "XTYP_UNREGISTER", "XTYP_WILDCONNECT" };
1556 const char *cmd_name
;
1558 type
= (uType
& XTYP_MASK
) >> XTYP_SHIFT
;
1559 cmd_name
= (type
<= 14) ? cmd_type
[type
] : "unknown";
1561 trace("client_dde_callback: %04x (%s) %d %p %p %p %p %08lx %08lx\n",
1562 uType
, cmd_name
, uFmt
, hconv
, hsz1
, hsz2
, hdata
, dwData1
, dwData2
);
1566 static void test_dde_aw_transaction( BOOL client_unicode
, BOOL server_unicode
)
1569 DWORD dde_inst
, ret
, err
;
1574 BOOL conv_unicode
= client_unicode
;
1576 static char test_cmd
[] = "test dde command";
1578 if (!(hwnd_server
= create_dde_server( server_unicode
))) return;
1582 ret
= DdeInitializeW(&dde_inst
, client_dde_callback
, APPCMD_CLIENTONLY
, 0);
1584 ret
= DdeInitializeA(&dde_inst
, client_dde_callback
, APPCMD_CLIENTONLY
, 0);
1585 ok(ret
== DMLERR_NO_ERROR
, "DdeInitializeA failed with error %04x (%x)\n",
1586 ret
, DdeGetLastError(dde_inst
));
1588 hsz_server
= DdeCreateStringHandleW(dde_inst
, TEST_DDE_SERVICE
, CP_WINUNICODE
);
1590 hconv
= DdeConnect(dde_inst
, hsz_server
, 0, NULL
);
1591 ok(hconv
!= 0, "DdeConnect error %x\n", DdeGetLastError(dde_inst
));
1592 err
= DdeGetLastError(dde_inst
);
1593 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
1595 info
.cb
= sizeof(info
);
1596 ret
= DdeQueryConvInfo(hconv
, QID_SYNC
, &info
);
1597 ok(ret
, "wrong info size %d, DdeQueryConvInfo error %x\n", ret
, DdeGetLastError(dde_inst
));
1598 ok(info
.ConvCtxt
.iCodePage
== client_unicode
? CP_WINUNICODE
: CP_WINANSI
,
1599 "wrong iCodePage %d\n", info
.ConvCtxt
.iCodePage
);
1600 ok(!info
.hConvPartner
, "unexpected info.hConvPartner: %p\n", info
.hConvPartner
);
1602 ok((info
.wStatus
& DDE_FACK
), "unexpected info.wStatus: %04x\n", info
.wStatus
);
1604 ok((info
.wStatus
& (ST_CONNECTED
| ST_CLIENT
)) == (ST_CONNECTED
| ST_CLIENT
), "unexpected info.wStatus: %04x\n", info
.wStatus
);
1605 ok(info
.wConvst
== XST_CONNECTED
, "unexpected info.wConvst: %04x\n", info
.wConvst
);
1606 ok(info
.wType
== 0, "unexpected info.wType: %04x\n", info
.wType
);
1608 client_unicode
= IsWindowUnicode( info
.hwnd
);
1609 trace("hwnd %p, hwndPartner %p, unicode %u\n", info
.hwnd
, info
.hwndPartner
, client_unicode
);
1611 trace("sending test client transaction command\n");
1613 hdata
= DdeClientTransaction((LPBYTE
)test_cmd
, strlen(test_cmd
) + 1, hconv
, (HSZ
)0xdead, 0xbeef, XTYP_EXECUTE
, 1000, &ret
);
1614 ok(!hdata
, "DdeClientTransaction succeeded\n");
1615 ok(ret
== DDE_FNOTPROCESSED
|| broken(ret
== (0xdead0000 | DDE_FNOTPROCESSED
)), /* win9x */
1616 "wrong status code %04x\n", ret
);
1617 err
= DdeGetLastError(dde_inst
);
1618 ok(err
== DMLERR_NOTPROCESSED
, "wrong dde error %x\n", err
);
1620 trace("sending ANSI client transaction command\n");
1622 hdata
= DdeClientTransaction((LPBYTE
)exec_cmdA
, lstrlenA(exec_cmdA
) + 1, hconv
, 0, 0, XTYP_EXECUTE
, 1000, &ret
);
1623 err
= DdeGetLastError(dde_inst
);
1624 if (conv_unicode
&& (!client_unicode
|| !server_unicode
)) /* W->A mapping -> garbage */
1626 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1627 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1628 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1630 else if (!conv_unicode
&& client_unicode
&& server_unicode
) /* A->W mapping -> wrong cmd */
1632 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1633 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1634 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1636 else /* no mapping */
1638 ok(hdata
!= 0, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1639 ok(ret
== DDE_FACK
, "wrong status code %04x\n", ret
);
1640 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
1643 trace("sending ANSI-as-Unicode client transaction command\n");
1645 hdata
= DdeClientTransaction((LPBYTE
)exec_cmdAW
, (lstrlenW(exec_cmdAW
) + 1) * sizeof(WCHAR
),
1646 hconv
, 0, 0, XTYP_EXECUTE
, 1000, &ret
);
1647 err
= DdeGetLastError(dde_inst
);
1648 if (conv_unicode
&& (!client_unicode
|| !server_unicode
)) /* W->A mapping */
1650 ok(hdata
!= 0, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1651 ok(ret
== DDE_FACK
, "wrong status code %04x\n", ret
);
1652 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
1654 else if (!conv_unicode
&& client_unicode
&& server_unicode
) /* A->W mapping -> garbage */
1656 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1657 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1658 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1660 else /* no mapping */
1662 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1663 ok(ret
== DDE_FNOTPROCESSED
|| broken(ret
== (0xdead0000 | DDE_FNOTPROCESSED
)), /* win9x */
1664 "wrong status code %04x\n", ret
);
1665 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1668 trace("sending unicode client transaction command\n");
1670 hdata
= DdeClientTransaction((LPBYTE
)exec_cmdW
, (lstrlenW(exec_cmdW
) + 1) * sizeof(WCHAR
), hconv
, 0, 0, XTYP_EXECUTE
, 1000, &ret
);
1671 err
= DdeGetLastError(dde_inst
);
1672 if (conv_unicode
&& (!client_unicode
|| !server_unicode
)) /* W->A mapping -> wrong cmd */
1674 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1675 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1676 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1678 else if (!conv_unicode
&& client_unicode
&& server_unicode
) /* A->W mapping -> garbage */
1680 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1681 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1682 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1684 else /* no mapping */
1686 ok(hdata
!= 0, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1687 ok(ret
== DDE_FACK
, "wrong status code %04x\n", ret
);
1688 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
1691 trace("sending Unicode-as-ANSI client transaction command\n");
1693 hdata
= DdeClientTransaction((LPBYTE
)exec_cmdWA
, lstrlenA(exec_cmdWA
) + 1, hconv
, 0, 0, XTYP_EXECUTE
, 1000, &ret
);
1694 err
= DdeGetLastError(dde_inst
);
1695 if (conv_unicode
&& (!client_unicode
|| !server_unicode
)) /* W->A mapping -> garbage */
1697 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1698 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1699 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1701 else if (!conv_unicode
&& client_unicode
&& server_unicode
) /* A->W mapping */
1703 ok(hdata
!= 0, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1704 ok(ret
== DDE_FACK
, "wrong status code %04x\n", ret
);
1705 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
1707 else /* no mapping */
1709 ok(!hdata
, "DdeClientTransaction returned %p, error %x\n", hdata
, err
);
1710 ok(ret
== DDE_FNOTPROCESSED
, "wrong status code %04x\n", ret
);
1711 ok(err
== DMLERR_NOTPROCESSED
, "DdeClientTransaction returned error %x\n", err
);
1714 got
= DdeDisconnect(hconv
);
1715 ok(got
, "DdeDisconnect error %x\n", DdeGetLastError(dde_inst
));
1717 info
.cb
= sizeof(info
);
1718 ret
= DdeQueryConvInfo(hconv
, QID_SYNC
, &info
);
1719 ok(!ret
, "DdeQueryConvInfo should fail\n");
1720 err
= DdeGetLastError(dde_inst
);
1722 ok(err
== DMLERR_INVALIDPARAMETER
, "wrong dde error %x\n", err
);
1725 got
= DdeFreeStringHandle(dde_inst
, hsz_server
);
1726 ok(got
, "DdeFreeStringHandle error %x\n", DdeGetLastError(dde_inst
));
1728 /* This call hangs on win2k SP4 and XP SP1.
1729 DdeUninitialize(dde_inst);*/
1731 DestroyWindow(hwnd_server
);
1734 static void test_initialisation(void)
1739 HSZ server
, topic
, item
;
1743 /* Initialise without a valid server window. */
1745 ret
= DdeInitializeA(&client_pid
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
1746 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", ret
);
1749 server
= DdeCreateStringHandleA(client_pid
, "TestDDEService", CP_WINANSI
);
1750 topic
= DdeCreateStringHandleA(client_pid
, "TestDDETopic", CP_WINANSI
);
1752 DdeGetLastError(client_pid
);
1754 /* There is no server window so no conversation can be extracted */
1755 conversation
= DdeConnect(client_pid
, server
, topic
, NULL
);
1756 ok(conversation
== NULL
, "Expected NULL conversation, %p\n", conversation
);
1757 ret
= DdeGetLastError(client_pid
);
1758 ok(ret
== DMLERR_NO_CONV_ESTABLISHED
, "Expected DMLERR_NO_CONV_ESTABLISHED, got %d\n", ret
);
1760 DdeFreeStringHandle(client_pid
, server
);
1762 item
= DdeCreateStringHandleA(client_pid
, "request", CP_WINANSI
);
1764 /* There is no conversation so an invalid parameter results */
1766 DdeGetLastError(client_pid
);
1767 hdata
= DdeClientTransaction(NULL
, 0, conversation
, item
, CF_TEXT
, XTYP_REQUEST
, default_timeout
, &res
);
1768 ok(hdata
== NULL
, "Expected NULL, got %p\n", hdata
);
1769 ret
= DdeGetLastError(client_pid
);
1771 ok(ret
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", ret
);
1772 ok(res
== 0xdeadbeef, "Expected 0xdeadbeef, got %08x\n", res
);
1774 DdeFreeStringHandle(client_pid
, server
);
1775 ret
= DdeDisconnect(conversation
);
1776 ok(ret
== FALSE
, "Expected FALSE, got %d\n", ret
);
1778 ret
= DdeUninitialize(client_pid
);
1779 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1782 static void test_DdeCreateStringHandleW(DWORD dde_inst
, int codepage
)
1784 static const WCHAR dde_string
[] = {'D','D','E',' ','S','t','r','i','n','g',0};
1791 str_handle
= DdeCreateStringHandleW(dde_inst
, dde_string
, codepage
);
1792 ok(str_handle
!= 0, "DdeCreateStringHandleW failed with error %08x\n",
1793 DdeGetLastError(dde_inst
));
1795 ret
= DdeQueryStringW(dde_inst
, str_handle
, NULL
, 0, codepage
);
1796 if (codepage
== CP_WINANSI
)
1797 ok(ret
== 1, "DdeQueryStringW returned wrong length %d\n", ret
);
1799 ok(ret
== lstrlenW(dde_string
), "DdeQueryStringW returned wrong length %d\n", ret
);
1801 ret
= DdeQueryStringW(dde_inst
, str_handle
, bufW
, 256, codepage
);
1802 if (codepage
== CP_WINANSI
)
1804 ok(ret
== 1, "DdeQueryStringW returned wrong length %d\n", ret
);
1805 ok(!lstrcmpA("D", (LPCSTR
)bufW
), "DdeQueryStringW returned wrong string\n");
1809 ok(ret
== lstrlenW(dde_string
), "DdeQueryStringW returned wrong length %d\n", ret
);
1810 ok(!lstrcmpW(dde_string
, bufW
), "DdeQueryStringW returned wrong string\n");
1813 ret
= DdeQueryStringA(dde_inst
, str_handle
, buf
, 256, CP_WINANSI
);
1814 if (codepage
== CP_WINANSI
)
1816 ok(ret
== 1, "DdeQueryStringA returned wrong length %d\n", ret
);
1817 ok(!lstrcmpA("D", buf
), "DdeQueryStringW returned wrong string\n");
1821 ok(ret
== lstrlenA("DDE String"), "DdeQueryStringA returned wrong length %d\n", ret
);
1822 ok(!lstrcmpA("DDE String", buf
), "DdeQueryStringA returned wrong string %s\n", buf
);
1825 ret
= DdeQueryStringA(dde_inst
, str_handle
, buf
, 256, CP_WINUNICODE
);
1826 if (codepage
== CP_WINANSI
)
1828 ok(ret
== 1, "DdeQueryStringA returned wrong length %d\n", ret
);
1829 ok(!lstrcmpA("D", buf
), "DdeQueryStringA returned wrong string %s\n", buf
);
1833 ok(ret
== lstrlenA("DDE String"), "DdeQueryStringA returned wrong length %d\n", ret
);
1834 ok(!lstrcmpW(dde_string
, (LPCWSTR
)buf
), "DdeQueryStringW returned wrong string\n");
1837 if (codepage
== CP_WINANSI
)
1839 atom
= FindAtomA((LPSTR
)dde_string
);
1840 ok(atom
!= 0, "Expected a valid atom\n");
1842 SetLastError(0xdeadbeef);
1843 atom
= GlobalFindAtomA((LPSTR
)dde_string
);
1844 ok(atom
== 0, "Expected 0, got %d\n", atom
);
1845 ok(GetLastError() == ERROR_FILE_NOT_FOUND
,
1846 "Expected ERROR_FILE_NOT_FOUND, got %d\n", GetLastError());
1850 atom
= FindAtomW(dde_string
);
1851 ok(atom
!= 0, "Expected a valid atom\n");
1853 SetLastError(0xdeadbeef);
1854 atom
= GlobalFindAtomW(dde_string
);
1855 ok(atom
== 0, "Expected 0, got %d\n", atom
);
1856 ok(GetLastError() == ERROR_FILE_NOT_FOUND
,
1857 "Expected ERROR_FILE_NOT_FOUND, got %d\n", GetLastError());
1860 ok(DdeFreeStringHandle(dde_inst
, str_handle
), "DdeFreeStringHandle failed\n");
1863 static void test_DdeCreateDataHandle(void)
1866 DWORD dde_inst
, dde_inst2
;
1872 WCHAR item_str
[] = {'i','t','e','m',0};
1876 res
= DdeInitializeA(&dde_inst
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
1877 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
1879 res
= DdeInitializeA(&dde_inst2
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
1880 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
1883 * This block tests an invalid instance Id. The correct behaviour is that if the instance Id
1884 * is invalid then the lastError of all instances is set to the error. There are two instances
1885 * created, lastError is cleared, an error is generated and then both instances are checked to
1886 * ensure that they both have the same error set
1888 item
= DdeCreateStringHandleA(0, "item", CP_WINANSI
);
1889 ok(item
== NULL
, "Expected NULL hsz got %p\n", item
);
1890 err
= DdeGetLastError(dde_inst
);
1891 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1892 err
= DdeGetLastError(dde_inst2
);
1893 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1894 item
= DdeCreateStringHandleW(0, item_str
, CP_WINUNICODE
);
1895 ok(item
== NULL
, "Expected NULL hsz got %p\n", item
);
1896 err
= DdeGetLastError(dde_inst
);
1897 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1898 err
= DdeGetLastError(dde_inst2
);
1899 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1901 item
= DdeCreateStringHandleA(dde_inst
, "item", CP_WINANSI
);
1902 ok(item
!= NULL
, "Expected non-NULL hsz\n");
1903 item
= DdeCreateStringHandleA(dde_inst2
, "item", CP_WINANSI
);
1904 ok(item
!= NULL
, "Expected non-NULL hsz\n");
1907 /* do not test with an invalid instance id: that crashes on win9x */
1908 hdata
= DdeCreateDataHandle(0xdeadbeef, (LPBYTE
)"data", MAX_PATH
, 0, item
, CF_TEXT
, 0);
1912 * This block tests an invalid instance Id. The correct behaviour is that if the instance Id
1913 * is invalid then the lastError of all instances is set to the error. There are two instances
1914 * created, lastError is cleared, an error is generated and then both instances are checked to
1915 * ensure that they both have the same error set
1917 DdeGetLastError(dde_inst
);
1918 DdeGetLastError(dde_inst2
);
1919 hdata
= DdeCreateDataHandle(0, (LPBYTE
)"data", MAX_PATH
, 0, item
, CF_TEXT
, 0);
1920 err
= DdeGetLastError(dde_inst
);
1921 ok(hdata
== NULL
, "Expected NULL, got %p\n", hdata
);
1922 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1923 err
= DdeGetLastError(dde_inst2
);
1924 ok(err
== DMLERR_INVALIDPARAMETER
, "Expected DMLERR_INVALIDPARAMETER, got %d\n", err
);
1926 ret
= DdeUninitialize(dde_inst2
);
1927 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
1931 DdeGetLastError(dde_inst
);
1932 hdata
= DdeCreateDataHandle(dde_inst
, NULL
, MAX_PATH
, 0, item
, CF_TEXT
, 0);
1933 err
= DdeGetLastError(dde_inst
);
1934 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
1935 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
1937 ptr
= DdeAccessData(hdata
, &size
);
1938 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
1939 ok(size
== 260, "Expected 260, got %d\n", size
);
1941 ret
= DdeUnaccessData(hdata
);
1942 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1944 ret
= DdeFreeDataHandle(hdata
);
1945 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1948 DdeGetLastError(dde_inst
);
1949 hdata
= DdeCreateDataHandle(dde_inst
, (LPBYTE
)"data", 0, 0, item
, CF_TEXT
, 0);
1950 err
= DdeGetLastError(dde_inst
);
1951 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
1952 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
1954 ptr
= DdeAccessData(hdata
, &size
);
1955 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
1956 ok(size
== 0, "Expected 0, got %d\n", size
);
1958 ret
= DdeUnaccessData(hdata
);
1959 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1961 ret
= DdeFreeDataHandle(hdata
);
1962 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1964 /* cbOff is non-zero */
1965 DdeGetLastError(dde_inst
);
1966 hdata
= DdeCreateDataHandle(dde_inst
, (LPBYTE
)"data", MAX_PATH
, 2, item
, CF_TEXT
, 0);
1967 err
= DdeGetLastError(dde_inst
);
1968 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
1969 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
1971 ptr
= DdeAccessData(hdata
, &size
);
1972 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
1973 ok(size
== 262, "Expected 262, got %d\n", size
);
1976 ok(lstrlenA((LPSTR
)ptr
) == 0, "Expected 0, got %d\n", lstrlenA((LPSTR
)ptr
));
1979 ret
= DdeUnaccessData(hdata
);
1980 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1982 ret
= DdeFreeDataHandle(hdata
);
1983 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
1986 DdeGetLastError(dde_inst
);
1987 hdata
= DdeCreateDataHandle(dde_inst
, (LPBYTE
)"data", MAX_PATH
, 0, 0, CF_TEXT
, 0);
1988 err
= DdeGetLastError(dde_inst
);
1989 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
1990 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
1992 ptr
= DdeAccessData(hdata
, &size
);
1993 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
1994 ok(!lstrcmpA((LPSTR
)ptr
, "data"), "Expected data, got %s\n", ptr
);
1995 ok(size
== 260, "Expected 260, got %d\n", size
);
1997 ret
= DdeUnaccessData(hdata
);
1998 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2000 ret
= DdeFreeDataHandle(hdata
);
2001 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2004 DdeGetLastError(dde_inst
);
2005 hdata
= DdeCreateDataHandle(dde_inst
, (LPBYTE
)"data", MAX_PATH
, 0, (HSZ
)0xdeadbeef, CF_TEXT
, 0);
2006 err
= DdeGetLastError(dde_inst
);
2007 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
2008 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
2010 ptr
= DdeAccessData(hdata
, &size
);
2011 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2012 ok(!lstrcmpA((LPSTR
)ptr
, "data"), "Expected data, got %s\n", ptr
);
2013 ok(size
== 260, "Expected 260, got %d\n", size
);
2015 ret
= DdeUnaccessData(hdata
);
2016 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2018 ret
= DdeFreeDataHandle(hdata
);
2019 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2021 /* invalid clipboard format */
2022 DdeGetLastError(dde_inst
);
2023 hdata
= DdeCreateDataHandle(dde_inst
, (LPBYTE
)"data", MAX_PATH
, 0, item
, 0xdeadbeef, 0);
2024 err
= DdeGetLastError(dde_inst
);
2025 ok(hdata
!= NULL
, "Expected non-NULL hdata\n");
2026 ok(err
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", err
);
2028 ptr
= DdeAccessData(hdata
, &size
);
2029 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2030 ok(!lstrcmpA((LPSTR
)ptr
, "data"), "Expected data, got %s\n", ptr
);
2031 ok(size
== 260, "Expected 260, got %d\n", size
);
2033 ret
= DdeUnaccessData(hdata
);
2034 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2036 ret
= DdeFreeDataHandle(hdata
);
2037 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2039 ret
= DdeUninitialize(dde_inst
);
2040 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
2043 static void test_DdeCreateStringHandle(void)
2045 DWORD dde_inst
, ret
;
2047 dde_inst
= 0xdeadbeef;
2048 SetLastError(0xdeadbeef);
2049 ret
= DdeInitializeW(&dde_inst
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
2050 ok(ret
== DMLERR_INVALIDPARAMETER
, "DdeInitializeW should fail, but got %04x instead\n", ret
);
2051 ok(DdeGetLastError(dde_inst
) == DMLERR_INVALIDPARAMETER
, "expected DMLERR_INVALIDPARAMETER\n");
2054 ret
= DdeInitializeW(&dde_inst
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
2055 ok(ret
== DMLERR_NO_ERROR
, "DdeInitializeW failed with error %04x (%08x)\n",
2056 ret
, DdeGetLastError(dde_inst
));
2058 test_DdeCreateStringHandleW(dde_inst
, 0);
2059 test_DdeCreateStringHandleW(dde_inst
, CP_WINUNICODE
);
2060 test_DdeCreateStringHandleW(dde_inst
, CP_WINANSI
);
2062 ok(DdeUninitialize(dde_inst
), "DdeUninitialize failed\n");
2065 static void test_FreeDDElParam(void)
2067 HGLOBAL val
, hglobal
;
2070 ret
= FreeDDElParam(WM_DDE_INITIATE
, 0);
2071 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2073 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2074 ret
= FreeDDElParam(WM_DDE_INITIATE
, (LPARAM
)hglobal
);
2075 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2076 val
= GlobalFree(hglobal
);
2077 ok(val
== NULL
, "Expected NULL, got %p\n", val
);
2079 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2080 ret
= FreeDDElParam(WM_DDE_ADVISE
, (LPARAM
)hglobal
);
2081 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2083 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2084 ret
= FreeDDElParam(WM_DDE_UNADVISE
, (LPARAM
)hglobal
);
2085 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2086 val
= GlobalFree(hglobal
);
2087 ok(val
== NULL
, "Expected NULL, got %p\n", val
);
2089 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2090 ret
= FreeDDElParam(WM_DDE_ACK
, (LPARAM
)hglobal
);
2091 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2093 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2094 ret
= FreeDDElParam(WM_DDE_DATA
, (LPARAM
)hglobal
);
2095 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2097 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2098 ret
= FreeDDElParam(WM_DDE_REQUEST
, (LPARAM
)hglobal
);
2099 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2100 val
= GlobalFree(hglobal
);
2101 ok(val
== NULL
, "Expected NULL, got %p\n", val
);
2103 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2104 ret
= FreeDDElParam(WM_DDE_POKE
, (LPARAM
)hglobal
);
2105 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2107 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 100);
2108 ret
= FreeDDElParam(WM_DDE_EXECUTE
, (LPARAM
)hglobal
);
2109 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2110 val
= GlobalFree(hglobal
);
2111 ok(val
== NULL
, "Expected NULL, got %p\n", val
);
2114 static void test_PackDDElParam(void)
2116 UINT_PTR lo
, hi
, *ptr
;
2120 lparam
= PackDDElParam(WM_DDE_INITIATE
, 0xcafe, 0xbeef);
2121 /* value gets sign-extended despite being an LPARAM */
2122 ok(lparam
== (int)0xbeefcafe, "Expected 0xbeefcafe, got %08lx\n", lparam
);
2125 ret
= UnpackDDElParam(WM_DDE_INITIATE
, lparam
, &lo
, &hi
);
2126 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2127 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2128 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2130 ret
= FreeDDElParam(WM_DDE_INITIATE
, lparam
);
2131 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2133 lparam
= PackDDElParam(WM_DDE_TERMINATE
, 0xcafe, 0xbeef);
2134 ok(lparam
== (int)0xbeefcafe, "Expected 0xbeefcafe, got %08lx\n", lparam
);
2137 ret
= UnpackDDElParam(WM_DDE_TERMINATE
, lparam
, &lo
, &hi
);
2138 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2139 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2140 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2142 ret
= FreeDDElParam(WM_DDE_TERMINATE
, lparam
);
2143 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2145 lparam
= PackDDElParam(WM_DDE_ADVISE
, 0xcafe, 0xbeef);
2146 /* win9x returns 0 here */
2148 ptr
= GlobalLock((HGLOBAL
)lparam
);
2149 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2150 ok(ptr
[0] == 0xcafe, "Expected 0xcafe, got %08lx\n", ptr
[0]);
2151 ok(ptr
[1] == 0xbeef, "Expected 0xbeef, got %08lx\n", ptr
[1]);
2153 ret
= GlobalUnlock((HGLOBAL
)lparam
);
2154 ok(ret
== 1, "Expected 1, got %d\n", ret
);
2157 ret
= UnpackDDElParam(WM_DDE_ADVISE
, lparam
, &lo
, &hi
);
2158 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2159 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2160 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2163 win_skip("no lparam for WM_DDE_ADVISE\n");
2165 ret
= FreeDDElParam(WM_DDE_ADVISE
, lparam
);
2166 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2168 lparam
= PackDDElParam(WM_DDE_UNADVISE
, 0xcafe, 0xbeef);
2169 ok(lparam
== (int)0xbeefcafe, "Expected 0xbeefcafe, got %08lx\n", lparam
);
2172 ret
= UnpackDDElParam(WM_DDE_UNADVISE
, lparam
, &lo
, &hi
);
2173 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2174 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2175 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2177 ret
= FreeDDElParam(WM_DDE_UNADVISE
, lparam
);
2178 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2180 lparam
= PackDDElParam(WM_DDE_ACK
, 0xcafe, 0xbeef);
2181 /* win9x returns the input (0xbeef<<16 | 0xcafe) here */
2182 if (lparam
!= (int)0xbeefcafe) {
2183 ptr
= GlobalLock((HGLOBAL
)lparam
);
2184 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2185 ok(ptr
[0] == 0xcafe, "Expected 0xcafe, got %08lx\n", ptr
[0]);
2186 ok(ptr
[1] == 0xbeef, "Expected 0xbeef, got %08lx\n", ptr
[1]);
2188 ret
= GlobalUnlock((HGLOBAL
)lparam
);
2189 ok(ret
== 1, "Expected 1, got %d\n", ret
);
2192 ret
= UnpackDDElParam(WM_DDE_ACK
, lparam
, &lo
, &hi
);
2193 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2194 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2195 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2197 ret
= FreeDDElParam(WM_DDE_ACK
, lparam
);
2198 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2201 win_skip("got lparam 0x%lx for WM_DDE_ACK\n", lparam
);
2203 lparam
= PackDDElParam(WM_DDE_DATA
, 0xcafe, 0xbeef);
2204 /* win9x returns 0 here */
2206 ptr
= GlobalLock((HGLOBAL
)lparam
);
2207 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2208 ok(ptr
[0] == 0xcafe, "Expected 0xcafe, got %08lx\n", ptr
[0]);
2209 ok(ptr
[1] == 0xbeef, "Expected 0xbeef, got %08lx\n", ptr
[1]);
2211 ret
= GlobalUnlock((HGLOBAL
)lparam
);
2212 ok(ret
== 1, "Expected 1, got %d\n", ret
);
2215 ret
= UnpackDDElParam(WM_DDE_DATA
, lparam
, &lo
, &hi
);
2216 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2217 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2218 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2221 win_skip("no lparam for WM_DDE_DATA\n");
2223 ret
= FreeDDElParam(WM_DDE_DATA
, lparam
);
2224 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2226 lparam
= PackDDElParam(WM_DDE_REQUEST
, 0xcafe, 0xbeef);
2227 ok(lparam
== (int)0xbeefcafe, "Expected 0xbeefcafe, got %08lx\n", lparam
);
2230 ret
= UnpackDDElParam(WM_DDE_REQUEST
, lparam
, &lo
, &hi
);
2231 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2232 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2233 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2235 ret
= FreeDDElParam(WM_DDE_REQUEST
, lparam
);
2236 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2238 lparam
= PackDDElParam(WM_DDE_POKE
, 0xcafe, 0xbeef);
2239 /* win9x returns 0 here */
2241 ptr
= GlobalLock((HGLOBAL
)lparam
);
2242 ok(ptr
!= NULL
, "Expected non-NULL ptr\n");
2243 ok(ptr
[0] == 0xcafe, "Expected 0xcafe, got %08lx\n", ptr
[0]);
2244 ok(ptr
[1] == 0xbeef, "Expected 0xbeef, got %08lx\n", ptr
[1]);
2246 ret
= GlobalUnlock((HGLOBAL
)lparam
);
2247 ok(ret
== 1, "Expected 1, got %d\n", ret
);
2250 ret
= UnpackDDElParam(WM_DDE_POKE
, lparam
, &lo
, &hi
);
2251 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2252 ok(lo
== 0xcafe, "Expected 0xcafe, got %08lx\n", lo
);
2253 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2256 win_skip("no lparam for WM_DDE_POKE\n");
2258 ret
= FreeDDElParam(WM_DDE_POKE
, lparam
);
2259 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2261 lparam
= PackDDElParam(WM_DDE_EXECUTE
, 0xcafe, 0xbeef);
2262 ok(lparam
== 0xbeef, "Expected 0xbeef, got %08lx\n", lparam
);
2265 ret
= UnpackDDElParam(WM_DDE_EXECUTE
, lparam
, &lo
, &hi
);
2266 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2267 ok(lo
== 0, "Expected 0, got %08lx\n", lo
);
2268 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2270 ret
= FreeDDElParam(WM_DDE_EXECUTE
, lparam
);
2271 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2274 static void test_UnpackDDElParam(void)
2276 UINT_PTR lo
, hi
, *ptr
;
2283 ret
= UnpackDDElParam(WM_DDE_INITIATE
, 0, &lo
, &hi
);
2284 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2285 ok(lo
== 0, "Expected 0, got %08lx\n", lo
);
2286 ok(hi
== 0, "Expected 0, got %08lx\n", hi
);
2291 ret
= UnpackDDElParam(WM_DDE_INITIATE
, 0xcafebabe, NULL
, &hi
);
2292 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2293 ok(lo
== 0xdead, "Expected 0xdead, got %08lx\n", lo
);
2294 ok(hi
== 0xcafe, "Expected 0xcafe, got %08lx\n", hi
);
2299 ret
= UnpackDDElParam(WM_DDE_INITIATE
, 0xcafebabe, &lo
, NULL
);
2300 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2301 ok(lo
== 0xbabe, "Expected 0xbabe, got %08lx\n", lo
);
2302 ok(hi
== 0xbeef, "Expected 0xbeef, got %08lx\n", hi
);
2306 ret
= UnpackDDElParam(WM_DDE_INITIATE
, 0xcafebabe, &lo
, &hi
);
2307 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2308 ok(lo
== 0xbabe, "Expected 0xbabe, got %08lx\n", lo
);
2309 ok(hi
== 0xcafe, "Expected 0xcafe, got %08lx\n", hi
);
2313 ret
= UnpackDDElParam(WM_DDE_TERMINATE
, 0xcafebabe, &lo
, &hi
);
2314 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2315 ok(lo
== 0xbabe, "Expected 0xbabe, got %08lx\n", lo
);
2316 ok(hi
== 0xcafe, "Expected 0xcafe, got %08lx\n", hi
);
2320 ret
= UnpackDDElParam(WM_DDE_ADVISE
, 0, &lo
, &hi
);
2321 ok(ret
== FALSE
, "Expected FALSE, got %d\n", ret
);
2323 broken(lo
== 0xdead), /* win2k */
2324 "Expected 0, got %08lx\n", lo
);
2326 broken(hi
== 0xbeef), /* win2k */
2327 "Expected 0, got %08lx\n", hi
);
2329 hglobal
= GlobalAlloc(GMEM_DDESHARE
, 2 * sizeof(*ptr
));
2330 ptr
= GlobalLock(hglobal
);
2331 ptr
[0] = 0xcafebabe;
2332 ptr
[1] = 0xdeadbeef;
2333 GlobalUnlock(hglobal
);
2337 ret
= UnpackDDElParam(WM_DDE_ADVISE
, (LPARAM
)hglobal
, &lo
, &hi
);
2338 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2339 ok(lo
== 0xcafebabe, "Expected 0xcafebabe, got %08lx\n", lo
);
2340 ok(hi
== 0xdeadbeef, "Expected 0xdeadbeef, got %08lx\n", hi
);
2344 ret
= UnpackDDElParam(WM_DDE_UNADVISE
, 0xcafebabe, &lo
, &hi
);
2345 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2346 ok(lo
== 0xbabe, "Expected 0xbabe, got %08lx\n", lo
);
2347 ok(hi
== 0xcafe, "Expected 0xcafe, got %08lx\n", hi
);
2351 ret
= UnpackDDElParam(WM_DDE_ACK
, (LPARAM
)hglobal
, &lo
, &hi
);
2352 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2353 ok(lo
== 0xcafebabe, "Expected 0xcafebabe, got %08lx\n", lo
);
2354 ok(hi
== 0xdeadbeef, "Expected 0xdeadbeef, got %08lx\n", hi
);
2358 ret
= UnpackDDElParam(WM_DDE_DATA
, (LPARAM
)hglobal
, &lo
, &hi
);
2359 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2360 ok(lo
== 0xcafebabe, "Expected 0xcafebabe, got %08lx\n", lo
);
2361 ok(hi
== 0xdeadbeef, "Expected 0xdeadbeef, got %08lx\n", hi
);
2365 ret
= UnpackDDElParam(WM_DDE_REQUEST
, 0xcafebabe, &lo
, &hi
);
2366 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2367 ok(lo
== 0xbabe, "Expected 0xbabe, got %08lx\n", lo
);
2368 ok(hi
== 0xcafe, "Expected 0xcafe, got %08lx\n", hi
);
2372 ret
= UnpackDDElParam(WM_DDE_POKE
, (LPARAM
)hglobal
, &lo
, &hi
);
2373 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2374 ok(lo
== 0xcafebabe, "Expected 0xcafebabe, got %08lx\n", lo
);
2375 ok(hi
== 0xdeadbeef, "Expected 0xdeadbeef, got %08lx\n", hi
);
2379 ret
= UnpackDDElParam(WM_DDE_EXECUTE
, 0xcafebabe, &lo
, &hi
);
2380 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2381 ok(lo
== 0, "Expected 0, got %08lx\n", lo
);
2382 ok(hi
== 0xcafebabe, "Expected 0xcafebabe, got %08lx\n", hi
);
2384 GlobalFree(hglobal
);
2387 static char test_cmd_a_to_a
[] = "Test dde command";
2388 static WCHAR test_cmd_w_to_w
[][32] = {
2389 {'t','e','s','t',' ','d','d','e',' ','c','o','m','m','a','n','d',0},
2390 { 0x2018, 0x2019, 0x0161, 0x0041, 0x02dc, 0 }, /* some chars that should map properly to CP1252 */
2391 { 0x2026, 0x2020, 0x2021, 0x0d0a, 0 }, /* false negative for IsTextUnicode */
2392 { 0x4efa, 0x4efc, 0x0061, 0x4efe, 0 }, /* some Chinese chars */
2394 static const int nb_callbacks
= 5 + sizeof(test_cmd_w_to_w
)/sizeof(test_cmd_w_to_w
[0]);
2396 static HDDEDATA CALLBACK
server_end_to_end_callback(UINT uType
, UINT uFmt
, HCONV hconv
,
2397 HSZ hsz1
, HSZ hsz2
, HDDEDATA hdata
,
2398 ULONG_PTR dwData1
, ULONG_PTR dwData2
)
2402 static int msg_index
= 0;
2403 static HCONV conversation
= 0;
2404 static char test_service
[] = "TestDDEService";
2405 static char test_topic
[] = "TestDDETopic";
2413 ok(msg_index
% nb_callbacks
== 1, "Expected 1 modulo %u, got %d\n", nb_callbacks
, msg_index
);
2414 return (HDDEDATA
)TRUE
;
2419 ok(msg_index
% nb_callbacks
== 2, "Expected 2 modulo %u, got %d\n", nb_callbacks
, msg_index
);
2420 ok(uFmt
== 0, "Expected 0, got %d, msg_index=%d\n", uFmt
, msg_index
);
2421 ok(hconv
== 0, "Expected 0, got %p, msg_index=%d\n", hconv
, msg_index
);
2422 ok(hdata
== 0, "Expected 0, got %p, msg_index=%d\n", hdata
, msg_index
);
2423 ok(dwData1
!= 0, "Expected not 0, got %08lx, msg_index=%d\n", dwData1
, msg_index
);
2424 ok(dwData2
== FALSE
, "Expected FALSE, got %08lx, msg_index=%d\n", dwData2
, msg_index
);
2426 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
2427 ok(!lstrcmpA(str
, test_topic
), "Expected %s, got %s, msg_index=%d\n",
2428 test_topic
, str
, msg_index
);
2429 ok(size
== 12, "Expected 12, got %d, msg_index=%d\n", size
, msg_index
);
2431 size
= DdeQueryStringA(server_pid
, hsz2
, str
, MAX_PATH
, CP_WINANSI
);
2432 ok(!lstrcmpA(str
, test_service
), "Expected %s, got %s, msg_index=%d\n",
2433 test_service
, str
, msg_index
);
2434 ok(size
== 14, "Expected 14, got %d, msg_index=%d\n", size
, msg_index
);
2436 return (HDDEDATA
) TRUE
;
2438 case XTYP_CONNECT_CONFIRM
:
2440 ok(msg_index
% nb_callbacks
== 3, "Expected 3 modulo %u, got %d\n", nb_callbacks
, msg_index
);
2441 conversation
= hconv
;
2442 return (HDDEDATA
) TRUE
;
2446 BYTE
*buffer
= NULL
;
2448 char test_cmd_w_to_a
[64];
2449 WCHAR test_cmd_a_to_w
[64];
2450 DWORD size_a
, size_w
, size_w_to_a
, size_a_to_w
;
2451 BOOL unicode_server
, unicode_client
, str_index
;
2453 ok(uFmt
== 0, "Expected 0, got %d\n", uFmt
);
2454 ok(hconv
== conversation
, "Expected conversation handle, got %p, msg_index=%d\n",
2456 ok(dwData1
== 0, "Expected 0, got %08lx, msg_index=%d\n", dwData1
, msg_index
);
2457 ok(dwData2
== 0, "Expected 0, got %08lx, msg_index=%d\n", dwData2
, msg_index
);
2458 ok(hsz2
== 0, "Expected 0, got %p, msg_index=%d\n", hsz2
, msg_index
);
2459 size
= DdeQueryStringA(server_pid
, hsz1
, str
, MAX_PATH
, CP_WINANSI
);
2460 ok(!lstrcmpA(str
, test_topic
), "Expected %s, got %s, msg_index=%d\n",
2461 test_topic
, str
, msg_index
);
2462 ok(size
== 12, "Expected 12, got %d, msg_index=%d\n", size
, msg_index
);
2463 ok(size
== 12, "Expected 12, got %d, msg_index=%d\n", size
, msg_index
);
2465 size
= DdeGetData(hdata
, NULL
, 0, 0);
2466 ok((buffer
= HeapAlloc(GetProcessHeap(), 0, size
)) != NULL
, "should not be null\n");
2467 rsize
= DdeGetData(hdata
, buffer
, size
, 0);
2468 ok(rsize
== size
, "Incorrect size returned, expected %d got %d, msg_index=%d\n",
2469 size
, rsize
, msg_index
);
2470 trace("msg %u strA \"%s\" strW %s\n", msg_index
, buffer
, wine_dbgstr_w((WCHAR
*)buffer
));
2472 unicode_server
= (msg_index
/ nb_callbacks
== 1 || msg_index
/ nb_callbacks
== 2);
2473 unicode_client
= (msg_index
/ nb_callbacks
== 1 || msg_index
/ nb_callbacks
== 3);
2474 str_index
= msg_index
% nb_callbacks
- 4;
2475 cmd_w
= test_cmd_w_to_w
[str_index
- 1];
2476 size_a
= strlen(test_cmd_a_to_a
) + 1;
2477 size_w
= (lstrlenW(cmd_w
) + 1) * sizeof(WCHAR
);
2478 size_a_to_w
= MultiByteToWideChar( CP_ACP
, 0, test_cmd_a_to_a
, -1, test_cmd_a_to_w
,
2479 sizeof(test_cmd_a_to_w
)/sizeof(WCHAR
) ) * sizeof(WCHAR
);
2480 size_w_to_a
= WideCharToMultiByte( CP_ACP
, 0, cmd_w
, -1,
2481 test_cmd_w_to_a
, sizeof(test_cmd_w_to_a
), NULL
, NULL
);
2484 case 0: /* ASCII string */
2487 ok(size
== size_a_to_w
, "Wrong size %d/%d, msg_index=%d\n", size
, size_a_to_w
, msg_index
);
2488 ok(!lstrcmpW((WCHAR
*)buffer
, test_cmd_a_to_w
),
2489 "Expected %s, msg_index=%d\n", wine_dbgstr_w(test_cmd_a_to_w
), msg_index
);
2491 else if (unicode_client
)
2493 /* ASCII string mapped W->A -> garbage */
2497 ok(size
== size_a
, "Wrong size %d/%d, msg_index=%d\n", size
, size_a
, msg_index
);
2498 ok(!lstrcmpA((CHAR
*)buffer
, test_cmd_a_to_a
), "Expected %s, got %s, msg_index=%d\n",
2499 test_cmd_a_to_a
, buffer
, msg_index
);
2503 case 1: /* Unicode string with only 8-bit chars */
2506 ok(size
== size_w
, "Wrong size %d/%d, msg_index=%d\n", size
, size_w
, msg_index
);
2507 ok(!lstrcmpW((WCHAR
*)buffer
, cmd_w
),
2508 "Expected %s, msg_index=%d\n", wine_dbgstr_w(cmd_w
), msg_index
);
2510 else if (unicode_client
)
2512 ok(size
== size_w_to_a
, "Wrong size %d/%d, msg_index=%d\n", size
, size_w_to_a
, msg_index
);
2513 ok(!lstrcmpA((CHAR
*)buffer
, test_cmd_w_to_a
), "Expected %s, got %s, msg_index=%d\n",
2514 test_cmd_w_to_a
, buffer
, msg_index
);
2518 ok(size
== size_w_to_a
, "Wrong size %d/%d, msg_index=%d\n",
2519 size
, size_w_to_a
, msg_index
);
2520 ok(!lstrcmpA((CHAR
*)buffer
, test_cmd_w_to_a
), "Expected %s, got %s, msg_index=%d\n",
2521 test_cmd_w_to_a
, buffer
, msg_index
);
2525 case 2: /* normal Unicode string */
2526 case 3: /* IsTextUnicode false negative */
2527 case 4: /* Chinese chars */
2530 /* double A->W mapping */
2531 /* NT uses the full size, XP+ only until the first null */
2532 DWORD nt_size
= MultiByteToWideChar( CP_ACP
, 0, (char *)cmd_w
, size_w
, test_cmd_a_to_w
,
2533 sizeof(test_cmd_a_to_w
)/sizeof(WCHAR
) ) * sizeof(WCHAR
);
2534 DWORD xp_size
= MultiByteToWideChar( CP_ACP
, 0, (char *)cmd_w
, -1, NULL
, 0 ) * sizeof(WCHAR
);
2535 ok(size
== xp_size
|| broken(size
== nt_size
) ||
2536 broken(str_index
== 4 && IsDBCSLeadByte(cmd_w
[0])) /* East Asian */,
2537 "Wrong size %d/%d, msg_index=%d\n", size
, size_a_to_w
, msg_index
);
2538 ok(!lstrcmpW((WCHAR
*)buffer
, test_cmd_a_to_w
),
2539 "Expected %s, msg_index=%d\n", wine_dbgstr_w(test_cmd_a_to_w
), msg_index
);
2541 else if (unicode_client
)
2543 ok(size
== size_w_to_a
, "Wrong size %d/%d, msg_index=%d\n", size
, size_w_to_a
, msg_index
);
2544 ok(!lstrcmpA((CHAR
*)buffer
, test_cmd_w_to_a
), "Expected %s, got %s, msg_index=%d\n",
2545 test_cmd_w_to_a
, buffer
, msg_index
);
2549 ok(size
== size_w
, "Wrong size %d/%d, msg_index=%d\n", size
, size_w
, msg_index
);
2550 ok(!lstrcmpW((WCHAR
*)buffer
, cmd_w
),
2551 "Expected %s, msg_index=%d\n", wine_dbgstr_w(cmd_w
), msg_index
);
2556 ok( 0, "Invalid message %u\n", msg_index
);
2559 return (HDDEDATA
) DDE_FACK
;
2561 case XTYP_DISCONNECT
:
2562 return (HDDEDATA
) TRUE
;
2565 ok(FALSE
, "Unhandled msg: %08x, msg_index=%d\n", uType
, msg_index
);
2571 static HDDEDATA CALLBACK
client_end_to_end_callback(UINT uType
, UINT uFmt
, HCONV hconv
,
2572 HSZ hsz1
, HSZ hsz2
, HDDEDATA hdata
,
2573 ULONG_PTR dwData1
, ULONG_PTR dwData2
)
2577 case XTYP_DISCONNECT
:
2578 return (HDDEDATA
) TRUE
;
2581 ok(FALSE
, "Unhandled msg: %08x\n", uType
);
2587 static void test_end_to_end_client(BOOL type_a
)
2590 DWORD client_pid
= 0;
2594 static char test_service
[] = "TestDDEService";
2595 static WCHAR test_service_w
[] = {'T','e','s','t','D','D','E','S','e','r','v','i','c','e',0};
2596 static char test_topic
[] = "TestDDETopic";
2597 static WCHAR test_topic_w
[] = {'T','e','s','t','D','D','E','T','o','p','i','c',0};
2599 trace("Start end to end client %s\n", type_a
? "ASCII" : "UNICODE");
2602 ret
= DdeInitializeA(&client_pid
, client_end_to_end_callback
, APPCMD_CLIENTONLY
, 0);
2604 ret
= DdeInitializeW(&client_pid
, client_end_to_end_callback
, APPCMD_CLIENTONLY
, 0);
2605 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %x\n", ret
);
2609 server
= DdeCreateStringHandleA(client_pid
, test_service
, CP_WINANSI
);
2610 topic
= DdeCreateStringHandleA(client_pid
, test_topic
, CP_WINANSI
);
2613 server
= DdeCreateStringHandleW(client_pid
, test_service_w
, CP_WINUNICODE
);
2614 topic
= DdeCreateStringHandleW(client_pid
, test_topic_w
, CP_WINUNICODE
);
2617 DdeGetLastError(client_pid
);
2618 hconv
= DdeConnect(client_pid
, server
, topic
, NULL
);
2619 ok(hconv
!= NULL
, "Expected non-NULL conversation\n");
2620 ret
= DdeGetLastError(client_pid
);
2621 ok(ret
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %x\n", ret
);
2622 DdeFreeStringHandle(client_pid
, server
);
2624 /* Test both A and W data being passed to DdeClientTransaction */
2625 hdata
= DdeClientTransaction((LPBYTE
)test_cmd_a_to_a
, sizeof(test_cmd_a_to_a
),
2626 hconv
, (HSZ
)0xdead, 0xbeef, XTYP_EXECUTE
, 1000, &ret
);
2627 ok(hdata
!= NULL
, "DdeClientTransaction failed\n");
2628 ok(ret
== DDE_FACK
, "wrong status code %x\n", ret
);
2629 err
= DdeGetLastError(client_pid
);
2630 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
2632 for (i
= 0; i
< sizeof(test_cmd_w_to_w
)/sizeof(test_cmd_w_to_w
[0]); i
++)
2634 hdata
= DdeClientTransaction((LPBYTE
)test_cmd_w_to_w
[i
],
2635 (lstrlenW(test_cmd_w_to_w
[i
]) + 1) * sizeof(WCHAR
),
2636 hconv
, (HSZ
)0xdead, 0xbeef, XTYP_EXECUTE
, 1000, &ret
);
2637 ok(hdata
!= NULL
, "DdeClientTransaction failed\n");
2638 ok(ret
== DDE_FACK
, "wrong status code %x\n", ret
);
2639 err
= DdeGetLastError(client_pid
);
2640 ok(err
== DMLERR_NO_ERROR
, "wrong dde error %x\n", err
);
2643 DdeFreeStringHandle(client_pid
, topic
);
2644 ret
= DdeDisconnect(hconv
);
2645 ok(ret
== TRUE
, "Expected TRUE, got %x\n", ret
);
2647 ret
= DdeUninitialize(client_pid
);
2648 ok(ret
== TRUE
, "Expected TRUE, got %x\n", ret
);
2652 static void test_end_to_end_server(HANDLE hproc
, HANDLE hthread
, BOOL type_a
)
2659 static CHAR test_service
[] = "TestDDEService";
2661 trace("start end to end server %s\n", type_a
? "ASCII" : "UNICODE");
2665 res
= DdeInitializeA(&server_pid
, server_end_to_end_callback
, APPCLASS_STANDARD
, 0);
2667 res
= DdeInitializeW(&server_pid
, server_end_to_end_callback
, APPCLASS_STANDARD
, 0);
2668 ok(res
== DMLERR_NO_ERROR
, "Expected DMLERR_NO_ERROR, got %d\n", res
);
2670 server
= DdeCreateStringHandleA(server_pid
, test_service
, CP_WINANSI
);
2671 ok(server
!= NULL
, "Expected non-NULL string handle\n");
2673 hdata
= DdeNameService(server_pid
, server
, 0, DNS_REGISTER
);
2674 ok(hdata
== (HDDEDATA
)TRUE
, "Expected TRUE, got %p\n", hdata
);
2675 ResumeThread( hthread
);
2678 while (MsgWaitForMultipleObjects( 1, &hproc
, FALSE
, INFINITE
, QS_ALLINPUT
) != 0)
2680 while (PeekMessage(&msg
, 0, 0, 0, PM_REMOVE
)) DispatchMessageA(&msg
);
2683 ret
= DdeUninitialize(server_pid
);
2684 ok(ret
== TRUE
, "Expected TRUE, got %d\n", ret
);
2685 GetExitCodeProcess( hproc
, &res
);
2686 ok( !res
, "client failed with %u error(s)\n", res
);
2693 char buffer
[MAX_PATH
];
2694 STARTUPINFO startup
;
2695 PROCESS_INFORMATION proc
;
2696 DWORD dde_inst
= 0xdeadbeef;
2698 argc
= winetest_get_mainargs(&argv
);
2701 if (!lstrcmpA(argv
[2], "ddeml"))
2702 test_ddeml_client();
2703 else if (!lstrcmpA(argv
[2], "msg"))
2705 else if (!lstrcmpA(argv
[2], "enda"))
2706 test_end_to_end_client(TRUE
);
2707 else if (!lstrcmpA(argv
[2], "endw"))
2708 test_end_to_end_client(FALSE
);
2713 test_initialisation();
2715 SetLastError(0xdeadbeef);
2716 DdeInitializeW(&dde_inst
, client_ddeml_callback
, APPCMD_CLIENTONLY
, 0);
2717 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED
)
2719 win_skip("Skipping tests on win9x because of brokenness\n");
2723 ZeroMemory(&startup
, sizeof(STARTUPINFO
));
2724 sprintf(buffer
, "%s dde ddeml", argv
[0]);
2725 startup
.cb
= sizeof(startup
);
2726 startup
.dwFlags
= STARTF_USESHOWWINDOW
;
2727 startup
.wShowWindow
= SW_SHOWNORMAL
;
2729 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2730 CREATE_SUSPENDED
, NULL
, NULL
, &startup
, &proc
);
2732 test_msg_server(proc
.hProcess
, proc
.hThread
);
2734 sprintf(buffer
, "%s dde msg", argv
[0]);
2735 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2736 0, NULL
, NULL
, &startup
, &proc
);
2738 test_ddeml_server(proc
.hProcess
);
2740 /* Test the combinations of A and W interfaces with A and W data
2741 end to end to ensure that data conversions are accurate */
2742 sprintf(buffer
, "%s dde enda", argv
[0]);
2743 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2744 CREATE_SUSPENDED
, NULL
, NULL
, &startup
, &proc
);
2746 test_end_to_end_server(proc
.hProcess
, proc
.hThread
, TRUE
);
2748 /* Don't bother testing W interfaces on Win9x/WinMe */
2749 SetLastError(0xdeadbeef);
2750 lstrcmpW(NULL
, NULL
);
2751 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED
)
2753 win_skip("Skipping W-interface tests\n");
2757 sprintf(buffer
, "%s dde endw", argv
[0]);
2758 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2759 CREATE_SUSPENDED
, NULL
, NULL
, &startup
, &proc
);
2761 test_end_to_end_server(proc
.hProcess
, proc
.hThread
, FALSE
);
2763 sprintf(buffer
, "%s dde enda", argv
[0]);
2764 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2765 CREATE_SUSPENDED
, NULL
, NULL
, &startup
, &proc
);
2767 test_end_to_end_server(proc
.hProcess
, proc
.hThread
, FALSE
);
2769 sprintf(buffer
, "%s dde endw", argv
[0]);
2770 CreateProcessA(NULL
, buffer
, NULL
, NULL
, FALSE
,
2771 CREATE_SUSPENDED
, NULL
, NULL
, &startup
, &proc
);
2773 test_end_to_end_server(proc
.hProcess
, proc
.hThread
, TRUE
);
2775 test_dde_aw_transaction( FALSE
, TRUE
);
2776 test_dde_aw_transaction( TRUE
, FALSE
);
2777 test_dde_aw_transaction( TRUE
, TRUE
);
2778 test_dde_aw_transaction( FALSE
, FALSE
);
2780 test_dde_aw_transaction( FALSE
, TRUE
);
2781 test_dde_aw_transaction( TRUE
, FALSE
);
2782 test_dde_aw_transaction( TRUE
, TRUE
);
2784 test_dde_aw_transaction( FALSE
, FALSE
);
2786 test_DdeCreateDataHandle();
2787 test_DdeCreateStringHandle();
2788 test_FreeDDElParam();
2789 test_PackDDElParam();
2790 test_UnpackDDElParam();