4 * Copyright 2006 Jan Zerebecki
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
26 #include "wine/test.h"
28 /* The tests use the MCI's own save capability to create the tempfile.wav to play.
29 * To use a pre-existing file, write-protect it. */
30 static MCIERROR ok_saved
= MCIERR_FILE_NOT_FOUND
;
33 MCI_STATUS_PARMS status
;
34 MCI_WAVE_SET_PARMS set
;
35 MCI_WAVE_OPEN_PARMS open
;
36 MCI_GETDEVCAPS_PARMS caps
;
37 MCI_SYSINFO_PARMS sys
;
39 MCI_GENERIC_PARMS gen
;
42 static const char* dbg_mcierr(MCIERROR err
)
45 case 0: return "0=NOERROR";
46 #define X(label) case label: return #label ;
47 X(MCIERR_INVALID_DEVICE_ID
)
48 X(MCIERR_UNRECOGNIZED_KEYWORD
)
49 X(MCIERR_UNRECOGNIZED_COMMAND
)
51 X(MCIERR_INVALID_DEVICE_NAME
)
52 X(MCIERR_OUT_OF_MEMORY
)
54 X(MCIERR_CANNOT_LOAD_DRIVER
)
55 X(MCIERR_MISSING_COMMAND_STRING
)
56 X(MCIERR_PARAM_OVERFLOW
)
57 X(MCIERR_MISSING_STRING_ARGUMENT
)
59 X(MCIERR_PARSER_INTERNAL
)
60 X(MCIERR_DRIVER_INTERNAL
)
61 X(MCIERR_MISSING_PARAMETER
)
62 X(MCIERR_UNSUPPORTED_FUNCTION
)
63 X(MCIERR_FILE_NOT_FOUND
)
64 X(MCIERR_DEVICE_NOT_READY
)
67 X(MCIERR_CANNOT_USE_ALL
)
69 X(MCIERR_EXTENSION_NOT_FOUND
)
71 X(MCIERR_FLAGS_NOT_COMPATIBLE
)
72 X(MCIERR_FILE_NOT_SAVED
)
73 X(MCIERR_DEVICE_TYPE_REQUIRED
)
74 X(MCIERR_DEVICE_LOCKED
)
75 X(MCIERR_DUPLICATE_ALIAS
)
76 X(MCIERR_BAD_CONSTANT
)
77 X(MCIERR_MUST_USE_SHAREABLE
)
78 X(MCIERR_MISSING_DEVICE_NAME
)
79 X(MCIERR_BAD_TIME_FORMAT
)
80 X(MCIERR_NO_CLOSING_QUOTE
)
81 X(MCIERR_DUPLICATE_FLAGS
)
82 X(MCIERR_INVALID_FILE
)
83 X(MCIERR_NULL_PARAMETER_BLOCK
)
84 X(MCIERR_UNNAMED_RESOURCE
)
85 X(MCIERR_NEW_REQUIRES_ALIAS
)
86 X(MCIERR_NOTIFY_ON_AUTO_OPEN
)
87 X(MCIERR_NO_ELEMENT_ALLOWED
)
88 X(MCIERR_NONAPPLICABLE_FUNCTION
)
89 X(MCIERR_ILLEGAL_FOR_AUTO_OPEN
)
90 X(MCIERR_FILENAME_REQUIRED
)
91 X(MCIERR_EXTRA_CHARACTERS
)
92 X(MCIERR_DEVICE_NOT_INSTALLED
)
96 X(MCIERR_DEVICE_LENGTH
)
97 X(MCIERR_DEVICE_ORD_LENGTH
)
99 X(MCIERR_WAVE_OUTPUTSINUSE
)
100 X(MCIERR_WAVE_SETOUTPUTINUSE
)
101 X(MCIERR_WAVE_INPUTSINUSE
)
102 X(MCIERR_WAVE_SETINPUTINUSE
)
103 X(MCIERR_WAVE_OUTPUTUNSPECIFIED
)
104 X(MCIERR_WAVE_INPUTUNSPECIFIED
)
105 X(MCIERR_WAVE_OUTPUTSUNSUITABLE
)
106 X(MCIERR_WAVE_SETOUTPUTUNSUITABLE
)
107 X(MCIERR_WAVE_INPUTSUNSUITABLE
)
108 X(MCIERR_WAVE_SETINPUTUNSUITABLE
)
109 X(MCIERR_SEQ_DIV_INCOMPATIBLE
)
110 X(MCIERR_SEQ_PORT_INUSE
)
111 X(MCIERR_SEQ_PORT_NONEXISTENT
)
112 X(MCIERR_SEQ_PORT_MAPNODEVICE
)
113 X(MCIERR_SEQ_PORT_MISCERROR
)
115 X(MCIERR_SEQ_PORTUNSPECIFIED
)
116 X(MCIERR_SEQ_NOMIDIPRESENT
)
118 X(MCIERR_CREATEWINDOW
)
121 X(MCIERR_NO_IDENTITY
)
124 static char name
[20]; /* Not to be called twice in a parameter list! */
125 sprintf(name
, "MMSYSERR %u", err
);
131 static BOOL
spurious_message(LPMSG msg
)
133 /* WM_DEVICECHANGE 0x0219 appears randomly */
134 if(msg
->message
!= MM_MCINOTIFY
) {
135 trace("skipping spurious message %04x\n",msg
->message
);
141 /* A single ok() in each code path allows to prefix this with todo_wine */
142 #define test_notification(hwnd, command, type) test_notification_dbg(hwnd, command, type, __LINE__)
143 static void test_notification_dbg(HWND hwnd
, const char* command
, WPARAM type
, int line
)
144 { /* Use type 0 as meaning no message */
147 do { seen
= PeekMessageA(&msg
, hwnd
, 0, 0, PM_REMOVE
); }
148 while(seen
&& spurious_message(&msg
));
150 /* We observe transient delayed notification, mostly on native.
151 * Notification is not always present right when mciSend returns. */
152 trace_(__FILE__
,line
)("Waiting for delayed notification from %s\n", command
);
153 MsgWaitForMultipleObjects(0, NULL
, FALSE
, 3000, QS_POSTMESSAGE
);
154 seen
= PeekMessageA(&msg
, hwnd
, MM_MCINOTIFY
, MM_MCINOTIFY
, PM_REMOVE
);
157 ok_(__FILE__
,line
)(type
==0, "Expect message %04lx from %s\n", type
, command
);
158 else if(msg
.hwnd
!= hwnd
)
159 ok_(__FILE__
,line
)(msg
.hwnd
== hwnd
, "Didn't get the handle to our test window\n");
160 else if(msg
.message
!= MM_MCINOTIFY
)
161 ok_(__FILE__
,line
)(msg
.message
== MM_MCINOTIFY
, "got %04x instead of MM_MCINOTIFY from command %s\n", msg
.message
, command
);
162 else ok_(__FILE__
,line
)(msg
.wParam
== type
, "got %04lx instead of MCI_NOTIFY_xyz %04lx from command %s\n", msg
.wParam
, type
, command
);
165 static void test_openCloseWAVE(HWND hwnd
)
168 MCI_PARMS_UNION parm
;
169 const char command_open
[] = "open new type waveaudio alias mysound notify";
170 const char command_close_my
[] = "close mysound notify";
171 const char command_close_all
[] = "close all notify";
172 const char command_sysinfo
[] = "sysinfo waveaudio quantity open";
174 DWORD intbuf
[3] = { 0xDEADF00D, 99, 0xABADCAFE };
175 memset(buf
, 0, sizeof(buf
));
176 test_notification(hwnd
, "-prior to any command-", 0);
178 /* Avoid Sysinfo quantity with notify because Win9x and newer differ. */
179 err
= mciSendString("sysinfo all quantity", buf
, sizeof(buf
), hwnd
);
180 ok(!err
,"mci sysinfo all quantity returned %s\n", dbg_mcierr(err
));
181 if(!err
) trace("[MCI] with %s drivers\n", buf
);
183 parm
.sys
.lpstrReturn
= (LPSTR
)&intbuf
[1];
184 parm
.sys
.dwRetSize
= sizeof(DWORD
);
185 parm
.sys
.wDeviceType
= MCI_DEVTYPE_WAVEFORM_AUDIO
; /* ignored */
186 err
= mciSendCommand(MCI_ALL_DEVICE_ID
, MCI_SYSINFO
, MCI_SYSINFO_QUANTITY
| MCI_WAIT
, (DWORD_PTR
)&parm
);
187 ok(!err
,"mciSendCommand(MCI_ALL_DEVICE_ID, MCI_SYSINFO QUANTITY, MCI_WAIT, 0) returned %s\n", dbg_mcierr(err
));
188 if(!err
) ok(atoi(buf
)==intbuf
[1],"sysinfo all quantity string and command differ\n");
190 parm
.sys
.dwRetSize
= sizeof(DWORD
)-1;
191 err
= mciSendCommand(MCI_ALL_DEVICE_ID
, MCI_SYSINFO
, MCI_SYSINFO_QUANTITY
, (DWORD_PTR
)&parm
);
192 ok(err
==MCIERR_PARAM_OVERFLOW
|| broken(!err
/* Win9x */),"mciSendCommand MCI_SYSINFO with too small buffer returned %s\n", dbg_mcierr(err
));
194 err
= mciSendString("open new type waveaudio alias r shareable", buf
, sizeof(buf
), NULL
);
195 ok(err
==MCIERR_UNSUPPORTED_FUNCTION
,"mci open new shareable returned %s\n", dbg_mcierr(err
));
197 err
= mciSendString("close r", NULL
, 0, NULL
);
198 ok(!err
,"mci close shareable returned %s\n", dbg_mcierr(err
));
201 err
= mciSendString(command_open
, buf
, sizeof(buf
), hwnd
);
202 ok(!err
,"mci %s returned %s\n", command_open
, dbg_mcierr(err
));
203 ok(!strcmp(buf
,"1"), "mci open deviceId: %s, expected 1\n", buf
);
204 /* Wine<=1.1.33 used to ignore anything past alias XY */
205 test_notification(hwnd
,"open new alias notify",MCI_NOTIFY_SUCCESSFUL
);
207 err
= mciSendString("status mysound time format", buf
, sizeof(buf
), hwnd
);
208 ok(!err
,"mci status time format returned %s\n", dbg_mcierr(err
));
210 if (PRIMARYLANGID(LANGIDFROMLCID(GetThreadLocale())) == LANG_ENGLISH
)
211 ok(!strcmp(buf
,"milliseconds"), "mci status time format: %s\n", buf
);
212 else trace("locale-dependent time format: %s (ms)\n", buf
);
215 memset(buf
, 0, sizeof(buf
));
216 parm
.sys
.dwNumber
= 1;
217 parm
.sys
.wDeviceType
= MCI_DEVTYPE_WAVEFORM_AUDIO
; /* ignored */
218 parm
.sys
.lpstrReturn
= buf
;
219 parm
.sys
.dwRetSize
= sizeof(buf
);
220 parm
.sys
.dwCallback
= (DWORD_PTR
)hwnd
;
221 err
= mciSendCommand(MCI_ALL_DEVICE_ID
, MCI_SYSINFO
, MCI_SYSINFO_NAME
| MCI_SYSINFO_OPEN
| MCI_NOTIFY
, (DWORD_PTR
)&parm
);
222 ok(!err
,"mciCommand MCI_SYSINFO all name 1 open notify: %s\n", dbg_mcierr(err
));
223 if(!err
) ok(!strcmp(buf
,"mysound"), "sysinfo name returned %s\n", buf
);
224 test_notification(hwnd
, "SYSINFO name notify\n", MCI_NOTIFY_SUCCESSFUL
);
226 memset(buf
, 0, sizeof(buf
));
227 parm
.sys
.dwNumber
= 1;
228 parm
.sys
.wDeviceType
= MCI_DEVTYPE_WAVEFORM_AUDIO
; /* ignored */
229 parm
.sys
.lpstrReturn
= buf
;
230 parm
.sys
.dwRetSize
= 8; /* mysound\0 */
231 err
= mciSendCommand(MCI_ALL_DEVICE_ID
, MCI_SYSINFO
, MCI_SYSINFO_NAME
| MCI_SYSINFO_OPEN
, (DWORD_PTR
)&parm
);
232 ok(!err
,"mciCommand MCI_SYSINFO all name 1 open buffer[8]: %s\n", dbg_mcierr(err
));
233 if(!err
) ok(!strcmp(buf
,"mysound"), "sysinfo name returned %s\n", buf
);
235 /* dwRetSize counts characters, not bytes, despite what MSDN says. */
236 parm
.sys
.dwNumber
= 1;
237 parm
.sys
.wDeviceType
= MCI_DEVTYPE_WAVEFORM_AUDIO
; /* ignored */
238 parm
.sys
.lpstrReturn
= buf
;
239 parm
.sys
.dwRetSize
= 8; /* mysound\0 */
240 /* MCI_..._PARMSA and PARMSW share the same layout, use one for both tests. */
241 err
= mciSendCommandW(MCI_ALL_DEVICE_ID
, MCI_SYSINFO
, MCI_SYSINFO_NAME
| MCI_SYSINFO_OPEN
, (DWORD_PTR
)&parm
);
242 ok(!err
|| broken(err
==MMSYSERR_NOTSUPPORTED
/* Win9x */), "mciCommandW MCI_SYSINFO all name 1 open buffer[8]: %s\n", dbg_mcierr(err
));
243 /* TODO strcmpW((LPWSTR)buf,"mysound") */
245 parm
.sys
.dwNumber
= 1;
246 parm
.sys
.wDeviceType
= MCI_DEVTYPE_WAVEFORM_AUDIO
; /* ignored */
247 parm
.sys
.lpstrReturn
= buf
;
248 parm
.sys
.dwRetSize
= 7; /* too short for mysound\0 */
249 err
= mciSendCommandW(MCI_ALL_DEVICE_ID
, MCI_SYSINFO
, MCI_SYSINFO_NAME
| MCI_SYSINFO_OPEN
, (DWORD_PTR
)&parm
);
250 ok(err
==MCIERR_PARAM_OVERFLOW
|| broken(err
==MMSYSERR_NOTSUPPORTED
/* Win9x */), "mciCommandW MCI_SYSINFO all name 1 open too small: %s\n", dbg_mcierr(err
));
252 /* Win9x overwrites the tiny buffer and returns success, newer versions signal overflow. */
253 memset(buf
, 0, sizeof(buf
));
254 parm
.sys
.dwNumber
= 1;
255 parm
.sys
.wDeviceType
= MCI_DEVTYPE_WAVEFORM_AUDIO
; /* ignored */
256 parm
.sys
.lpstrReturn
= buf
;
257 parm
.sys
.dwRetSize
= 2; /* too short for mysound\0 */
258 err
= mciSendCommand(MCI_ALL_DEVICE_ID
, MCI_SYSINFO
, MCI_SYSINFO_NAME
| MCI_SYSINFO_OPEN
, (DWORD_PTR
)&parm
);
259 ok(err
==MCIERR_PARAM_OVERFLOW
|| broken(!err
/* Win9x */),"mciCommand MCI_SYSINFO all name 1 open too small: %s\n", dbg_mcierr(err
));
260 if(!err
) ok(!strcmp(buf
,"mysound"), "sysinfo short name returned %s\n", buf
);
262 err
= mciGetDeviceID("all");
263 ok(MCI_ALL_DEVICE_ID
==err
|| /* Win9x */(UINT16
)MCI_ALL_DEVICE_ID
==err
,"mciGetDeviceID all returned %u, expected %d\n", err
, MCI_ALL_DEVICE_ID
);
265 err
= mciSendString(command_close_my
, NULL
, 0, hwnd
);
266 ok(!err
,"mci %s returned %s\n", command_close_my
, dbg_mcierr(err
));
267 test_notification(hwnd
, command_close_my
, MCI_NOTIFY_SUCCESSFUL
);
269 test_notification(hwnd
, command_close_my
, 0);
271 err
= mciSendString("open no-such-file-exists.wav alias y", buf
, sizeof(buf
), NULL
);
272 ok(err
==MCIERR_FILE_NOT_FOUND
,"open no-such-file.wav returned %s\n", dbg_mcierr(err
));
274 err
= mciSendString("close y", NULL
, 0, NULL
);
275 ok(!err
,"close y returned %s\n", dbg_mcierr(err
));
278 err
= mciSendString("open no-such-dir\\file.wav alias y type waveaudio", buf
, sizeof(buf
), NULL
);
279 ok(err
==MCIERR_FILE_NOT_FOUND
|| broken(err
==MCIERR_INVALID_FILE
/* Win9X */),"open no-such-dir/file.wav returned %s\n", dbg_mcierr(err
));
281 err
= mciSendString("close y", NULL
, 0, NULL
);
282 ok(!err
,"close y returned %s\n", dbg_mcierr(err
));
285 err
= mciSendString(command_close_all
, NULL
, 0, NULL
);
286 ok(!err
,"mci %s (without buffer) returned %s\n", command_close_all
, dbg_mcierr(err
));
288 memset(buf
, 0, sizeof(buf
));
289 err
= mciSendString(command_close_all
, buf
, sizeof(buf
), hwnd
);
290 ok(!err
,"mci %s (with output buffer) returned %s\n", command_close_all
, dbg_mcierr(err
));
291 ok(buf
[0] == 0, "mci %s changed output buffer: %s\n", command_close_all
, buf
);
292 /* No notification left, everything closed already */
293 test_notification(hwnd
, command_close_all
, 0);
294 /* TODO test close all sends one notification per open device */
296 memset(buf
, 0, sizeof(buf
));
297 err
= mciSendString(command_sysinfo
, buf
, sizeof(buf
), NULL
);
298 ok(!err
,"mci %s returned %s\n", command_sysinfo
, dbg_mcierr(err
));
299 ok(buf
[0] == '0' && buf
[1] == 0, "mci %s, expected output buffer '0', got: '%s'\n", command_sysinfo
, buf
);
301 err
= mciSendString("open new type waveaudio", buf
, sizeof(buf
), NULL
);
302 ok(err
==MCIERR_NEW_REQUIRES_ALIAS
,"mci open new without alias returned %s\n", dbg_mcierr(err
));
304 parm
.open
.lpstrDeviceType
= (LPSTR
)MCI_DEVTYPE_WAVEFORM_AUDIO
;
305 err
= mciSendCommand(0, MCI_OPEN
,
306 MCI_OPEN_TYPE
| MCI_OPEN_TYPE_ID
,
308 ok(!err
,"mciCommand OPEN_TYPE_ID waveaudio: %s\n", dbg_mcierr(err
));
311 MCIDEVICEID wDeviceID
= parm
.open
.wDeviceID
;
312 parm
.caps
.dwItem
= MCI_GETDEVCAPS_DEVICE_TYPE
;
313 err
= mciSendCommand(wDeviceID
, MCI_GETDEVCAPS
, MCI_GETDEVCAPS_ITEM
, (DWORD_PTR
)&parm
);
314 ok(!err
,"mciCommand MCI_GETDEVCAPS device type: %s\n", dbg_mcierr(err
));
315 ok(MCI_DEVTYPE_WAVEFORM_AUDIO
==parm
.caps
.dwReturn
,"mciCommand GETDEVCAPS says %u, expected %u\n", parm
.caps
.dwReturn
, MCI_DEVTYPE_WAVEFORM_AUDIO
);
318 ok(0xDEADF00D==intbuf
[0] && 0xABADCAFE==intbuf
[2],"DWORD buffer corruption\n");
320 err
= mciSendCommand(MCI_ALL_DEVICE_ID
, MCI_CLOSE
, MCI_WAIT
, 0); /* from MSDN */
321 ok(!err
,"mciSendCommand(MCI_ALL_DEVICE_ID, MCI_CLOSE, MCI_WAIT, 0) returned %s\n", dbg_mcierr(err
));
323 err
= mciSendCommand(MCI_ALL_DEVICE_ID
, MCI_CLOSE
, MCI_NOTIFY
, 0);
324 ok(!err
,"mciSendCommand(MCI_ALL_DEVICE_ID, MCI_CLOSE, MCI_NOTIFY, 0) returned %s\n", dbg_mcierr(err
));
326 parm
.gen
.dwCallback
= (DWORD_PTR
)hwnd
;
327 err
= mciSendCommand(MCI_ALL_DEVICE_ID
, MCI_CLOSE
, MCI_NOTIFY
, (DWORD_PTR
)&parm
);
328 ok(!err
,"mciSendCommand(MCI_ALL_DEVICE_ID, MCI_CLOSE, MCI_NOTIFY, hwnd) returned %s\n", dbg_mcierr(err
));
329 test_notification(hwnd
, command_close_all
, 0); /* None left */
332 static void test_recordWAVE(HWND hwnd
)
336 DWORD nsamp
= 16000, expect
;
337 UINT ndevs
= waveInGetNumDevs();
338 MCIERROR err
, ok_pcm
;
339 MCIDEVICEID wDeviceID
;
340 MCI_PARMS_UNION parm
;
342 memset(buf
, 0, sizeof(buf
));
343 test_notification(hwnd
, "-prior to recording-", 0);
345 parm
.open
.lpstrDeviceType
= "waveaudio";
346 parm
.open
.lpstrElementName
= ""; /* "new" at the command level */
347 parm
.open
.lpstrAlias
= "x"; /* to enable mciSendString */
348 parm
.open
.dwCallback
= (DWORD_PTR
)hwnd
;
349 err
= mciSendCommand(0, MCI_OPEN
,
350 MCI_OPEN_ELEMENT
| MCI_OPEN_TYPE
| MCI_OPEN_ALIAS
| MCI_NOTIFY
,
352 ok(!err
,"mciCommand open new type waveaudio alias x notify: %s\n", dbg_mcierr(err
));
353 wDeviceID
= parm
.open
.wDeviceID
;
355 err
= mciGetDeviceID("x");
356 ok(err
==wDeviceID
,"mciGetDeviceID x returned %u, expected %u\n", err
, wDeviceID
);
358 /* Only the alias is looked up. */
359 err
= mciGetDeviceID("waveaudio");
360 todo_wine
ok(err
==0,"mciGetDeviceID waveaudio returned %u, expected 0\n", err
);
362 test_notification(hwnd
, "open new", MCI_NOTIFY_SUCCESSFUL
);
363 test_notification(hwnd
, "open new no #2", 0);
365 /* Do not query time format as string because result depends on locale! */
366 parm
.status
.dwItem
= MCI_STATUS_TIME_FORMAT
;
367 err
= mciSendCommand(wDeviceID
, MCI_STATUS
, MCI_STATUS_ITEM
, (DWORD_PTR
)&parm
);
368 ok(!err
,"mciCommand status time format: %s\n", dbg_mcierr(err
));
369 ok(parm
.status
.dwReturn
==MCI_FORMAT_MILLISECONDS
,"status time format: %ld\n",parm
.status
.dwReturn
);
371 /* Info file fails until named in Open or Save. */
372 err
= mciSendString("info x file", buf
, sizeof(buf
), NULL
);
373 todo_wine
ok(err
==MCIERR_NONAPPLICABLE_FUNCTION
,"mci info new file returned %s\n", dbg_mcierr(err
));
375 /* Check the default recording: 8-bits per sample, mono, 11kHz */
376 err
= mciSendString("status x samplespersec", buf
, sizeof(buf
), NULL
);
377 ok(!err
,"mci status samplespersec returned %s\n", dbg_mcierr(err
));
378 if(!err
) ok(!strcmp(buf
,"11025"), "mci status samplespersec expected 11025, got: %s\n", buf
);
380 /* MCI seems to solely support PCM, no need for ACM conversion. */
381 err
= mciSendString("set x format tag 2", NULL
, 0, NULL
);
382 ok(err
==MCIERR_OUTOFRANGE
,"mci set format tag 2 returned %s\n", dbg_mcierr(err
));
384 /* MCI appears to scan the available devices for support of this format,
385 * returning MCIERR_OUTOFRANGE on machines with no sound.
386 * However some w2k8/w7 machines return no error when there's no wave
387 * input device (perhaps querying waveOutGetNumDevs instead of waveIn?),
388 * still the record command below fails with MCIERR_WAVE_INPUTSUNSUITABLE.
389 * Don't skip here, record will fail below. */
390 err
= mciSendString("set x format tag pcm", NULL
, 0, NULL
);
391 ok(!err
|| err
==MCIERR_OUTOFRANGE
,"mci set format tag pcm returned %s\n", dbg_mcierr(err
));
394 /* MSDN warns against not setting all wave format parameters.
395 * Indeed, it produces strange results, incl.
396 * inconsistent PCMWAVEFORMAT headers in the saved file.
398 err
= mciSendString("set x bytespersec 22050 alignment 2 samplespersec 11025 channels 1 bitspersample 16", NULL
, 0, NULL
);
399 ok(err
==ok_pcm
,"mci set 5 wave parameters returned %s\n", dbg_mcierr(err
));
400 /* Investigate: on w2k, set samplespersec 22050 sets nChannels to 2!
401 * err = mciSendString("set x samplespersec 22050", NULL, 0, NULL);
402 * ok(!err,"mci set samplespersec returned %s\n", dbg_mcierr(err));
405 /* Checks are generally performed immediately. */
406 err
= mciSendString("set x bitspersample 4", NULL
, 0, NULL
);
407 todo_wine
ok(err
==MCIERR_OUTOFRANGE
,"mci set bitspersample 4 returned %s\n", dbg_mcierr(err
));
409 parm
.set
.wFormatTag
= WAVE_FORMAT_PCM
;
410 parm
.set
.nSamplesPerSec
= nsamp
;
411 parm
.set
.wBitsPerSample
= nbits
;
412 parm
.set
.nChannels
= nch
;
413 parm
.set
.nBlockAlign
= parm
.set
.nChannels
* parm
.set
.wBitsPerSample
/8;
414 parm
.set
.nAvgBytesPerSec
= parm
.set
.nSamplesPerSec
* parm
.set
.nBlockAlign
;
415 err
= mciSendCommand(wDeviceID
, MCI_SET
,
416 MCI_WAVE_SET_SAMPLESPERSEC
| MCI_WAVE_SET_CHANNELS
|
417 MCI_WAVE_SET_BITSPERSAMPLE
| MCI_WAVE_SET_BLOCKALIGN
|
418 MCI_WAVE_SET_AVGBYTESPERSEC
| MCI_WAVE_SET_FORMATTAG
, (DWORD_PTR
)&parm
);
419 ok(err
==ok_pcm
,"mciCommand set wave format: %s\n", dbg_mcierr(err
));
421 parm
.caps
.dwItem
= MCI_WAVE_GETDEVCAPS_INPUTS
;
422 parm
.caps
.dwCallback
= (DWORD_PTR
)hwnd
;
423 err
= mciSendCommand(wDeviceID
, MCI_GETDEVCAPS
, MCI_GETDEVCAPS_ITEM
| MCI_NOTIFY
, (DWORD_PTR
)&parm
);
424 ok(!err
,"mciCommand MCI_GETDEVCAPS inputs: %s\n", dbg_mcierr(err
));
425 ok(parm
.caps
.dwReturn
==ndevs
,"mciCommand GETDEVCAPS claims %u inputs, expected %u\n", parm
.caps
.dwReturn
, ndevs
);
426 ok(!ok_pcm
|| !parm
.caps
.dwReturn
,"No input device accepts PCM!?\n");
427 test_notification(hwnd
, "GETDEVCAPS inputs", MCI_NOTIFY_SUCCESSFUL
);
429 /* A few ME machines pass all tests except set format tag pcm! */
430 err
= mciSendString("record x to 2000 wait", NULL
, 0, hwnd
);
431 ok(err
|| !ok_pcm
,"can record yet set wave format pcm returned %s\n", dbg_mcierr(ok_pcm
));
432 if(!ndevs
) todo_wine
/* with sound disabled */
433 ok(ndevs
>0 ? !err
: err
==MCIERR_WAVE_INPUTSUNSUITABLE
,"mci record to 2000 returned %s\n", dbg_mcierr(err
));
435 ok(ndevs
>0 ? !err
: err
==MCIERR_WAVE_INPUTSUNSUITABLE
,"mci record to 2000 returned %s\n", dbg_mcierr(err
));
437 if (err
==MCIERR_WAVE_INPUTSUNSUITABLE
)
438 skip("Please install audio driver. Everything is skipped.\n");
439 else skip("Cannot record cause %s. Everything is skipped.\n", dbg_mcierr(err
));
441 err
= mciSendString("close x", NULL
, 0, NULL
);
442 ok(!err
,"mci close returned %s\n", dbg_mcierr(err
));
443 test_notification(hwnd
,"record skipped",0);
447 /* Query some wave format parameters depending on the time format. */
448 err
= mciSendString("status x position", buf
, sizeof(buf
), NULL
);
449 ok(!err
,"mci status position returned %s\n", dbg_mcierr(err
));
450 if(!err
) todo_wine
ok(!strcmp(buf
,"2000"), "mci status position gave %s, expected 2000, some tests will fail\n", buf
);
452 err
= mciSendString("set x time format 8", NULL
, 0, NULL
); /* bytes */
453 ok(!err
,"mci returned %s\n", dbg_mcierr(err
));
455 parm
.status
.dwItem
= MCI_STATUS_POSITION
;
456 err
= mciSendCommand(wDeviceID
, MCI_STATUS
, MCI_STATUS_ITEM
, (DWORD_PTR
)&parm
);
457 ok(!err
,"mciCommand status position: %s\n", dbg_mcierr(err
));
458 expect
= 2 * nsamp
* nch
* nbits
/8;
459 if(!err
) todo_wine
ok(parm
.status
.dwReturn
==expect
,"recorded %lu bytes, expected %u\n",parm
.status
.dwReturn
,expect
);
461 parm
.set
.dwTimeFormat
= MCI_FORMAT_SAMPLES
;
462 err
= mciSendCommand(wDeviceID
, MCI_SET
, MCI_SET_TIME_FORMAT
, (DWORD_PTR
)&parm
);
463 ok(!err
,"mciCommand set time format samples: %s\n", dbg_mcierr(err
));
465 parm
.status
.dwItem
= MCI_STATUS_POSITION
;
466 err
= mciSendCommand(wDeviceID
, MCI_STATUS
, MCI_STATUS_ITEM
, (DWORD_PTR
)&parm
);
467 ok(!err
,"mciCommand status position: %s\n", dbg_mcierr(err
));
469 if(!err
) todo_wine
ok(parm
.status
.dwReturn
==expect
,"recorded %lu samples, expected %u\n",parm
.status
.dwReturn
,expect
);
471 err
= mciSendString("set x time format milliseconds", NULL
, 0, NULL
);
472 ok(!err
,"mci set time format milliseconds returned %s\n", dbg_mcierr(err
));
474 err
= mciSendString("save x tempfile1.wav", NULL
, 0, NULL
);
475 ok(!err
,"mci save returned %s\n", dbg_mcierr(err
));
477 err
= mciSendString("save x tempfile.wav", NULL
, 0, NULL
);
478 ok(!err
,"mci save returned %s\n", dbg_mcierr(err
));
479 if(!err
) ok_saved
= 0;
481 /* Save must not rename the original file. */
482 if (!DeleteFile("tempfile1.wav"))
483 todo_wine
ok(FALSE
, "Save must not rename the original file; DeleteFile returned %d\n", GetLastError());
485 err
= mciSendString("set x channels 2", NULL
, 0, NULL
);
486 ok(err
==MCIERR_NONAPPLICABLE_FUNCTION
,"mci set channels after saving returned %s\n", dbg_mcierr(err
));
488 parm
.seek
.dwTo
= 600;
489 err
= mciSendCommand(wDeviceID
, MCI_SEEK
, MCI_TO
| MCI_WAIT
, (DWORD_PTR
)&parm
);
490 ok(!err
,"mciCommand seek to 600: %s\n", dbg_mcierr(err
));
492 /* Truncate to current position */
493 err
= mciSendString("delete x", NULL
, 0, NULL
);
494 todo_wine
ok(!err
,"mci delete returned %s\n", dbg_mcierr(err
));
497 err
= mciSendString("status x length", buf
, sizeof(buf
), NULL
);
498 ok(!err
,"mci status length returned %s\n", dbg_mcierr(err
));
499 todo_wine
ok(!strcmp(buf
,"600"), "mci status length after delete gave %s, expected 600\n", buf
);
501 err
= mciSendString("close x", NULL
, 0, NULL
);
502 ok(!err
,"mci close returned %s\n", dbg_mcierr(err
));
503 test_notification(hwnd
,"record complete",0);
506 static void test_playWAVE(HWND hwnd
)
510 memset(buf
, 0, sizeof(buf
));
512 err
= mciSendString("open waveaudio!tempfile.wav alias mysound", NULL
, 0, NULL
);
513 ok(err
==ok_saved
,"mci open waveaudio!tempfile.wav returned %s\n", dbg_mcierr(err
));
515 skip("Cannot open waveaudio!tempfile.wav for playing (%s), skipping\n", dbg_mcierr(err
));
519 err
= mciSendString("status mysound length", buf
, sizeof(buf
), NULL
);
520 ok(!err
,"mci status length returned %s\n", dbg_mcierr(err
));
521 todo_wine
ok(!strcmp(buf
,"2000"), "mci status length gave %s, expected 2000, some tests will fail.\n", buf
);
523 err
= mciSendString("cue output", NULL
, 0, NULL
);
524 todo_wine
ok(err
==MCIERR_UNRECOGNIZED_COMMAND
,"mci incorrect cue output returned %s\n", dbg_mcierr(err
));
526 /* Test MCI to the bones -- Some todo_wine from Cue and
527 * from Play from 0 to 0 are not worth fixing. */
528 err
= mciSendString("cue mysound output notify", NULL
, 0, hwnd
);
529 ok(!err
,"mci cue output after open file returned %s\n", dbg_mcierr(err
));
530 /* Notification is delayed as a play thread is started. */
531 todo_wine
test_notification(hwnd
, "cue immediate", 0);
533 /* Cue pretends to put the MCI into paused state. */
534 err
= mciSendString("status mysound mode", buf
, sizeof(buf
), hwnd
);
535 ok(!err
,"mci status mode returned %s\n", dbg_mcierr(err
));
536 todo_wine
ok(!strcmp(buf
,"paused"), "mci status mode: %s, expected (pseudo)paused\n", buf
);
538 /* Strange pause where Pause is rejected, unlike Play; Pause; Pause tested below */
539 err
= mciSendString("pause mysound", NULL
, 0, hwnd
);
540 ok(err
==MCIERR_NONAPPLICABLE_FUNCTION
,"mci pause after cue returned %s\n", dbg_mcierr(err
));
542 /* MCI appears to start the play thread in this border case.
543 * Guessed that from (flaky) status mode and late notification arrival. */
544 err
= mciSendString("play mysound from 0 to 0 notify", NULL
, 0, hwnd
);
545 ok(!err
,"mci play from 0 to 0 returned %s\n", dbg_mcierr(err
));
546 todo_wine
test_notification(hwnd
, "cue aborted by play", MCI_NOTIFY_ABORTED
);
547 /* play's own notification follows below */
549 err
= mciSendString("play mysound from 250 to 0", NULL
, 0, NULL
);
550 ok(err
==MCIERR_OUTOFRANGE
,"mci play from 250 to 0 returned %s\n", dbg_mcierr(err
));
552 Sleep(50); /* Give play from 0 to 0 time to finish. */
553 todo_wine
test_notification(hwnd
, "play from 0 to 0", MCI_NOTIFY_SUCCESSFUL
);
555 err
= mciSendString("status mysound mode", buf
, sizeof(buf
), hwnd
);
556 ok(!err
,"mci status mode returned %s\n", dbg_mcierr(err
));
557 ok(!strcmp(buf
,"stopped"), "mci status mode: %s after play from 0 to 0\n", buf
);
559 err
= mciSendString("play MYSOUND from 250 to 0 notify", NULL
, 0, hwnd
);
560 ok(err
==MCIERR_OUTOFRANGE
,"mci play from 250 to 0 notify returned %s\n", dbg_mcierr(err
));
561 /* No notification (checked below) sent if error */
563 /* A second play caused Wine<1.1.33 to hang */
564 err
= mciSendString("play mysound from 500 to 1500 wait", NULL
, 0, NULL
);
565 ok(!err
,"mci play from 500 to 1500 returned %s\n", dbg_mcierr(err
));
567 memset(buf
, 0, sizeof(buf
));
568 err
= mciSendString("status mysound position", buf
, sizeof(buf
), hwnd
);
569 ok(!err
,"mci status position returned %s\n", dbg_mcierr(err
));
570 if(!err
) ok(!strcmp(buf
,"1500"), "mci status position: %s\n", buf
);
572 /* mci will not play position < current */
573 err
= mciSendString("play mysound to 1000", NULL
, 0, NULL
);
574 ok(err
==MCIERR_OUTOFRANGE
,"mci play to 1000 returned %s\n", dbg_mcierr(err
));
576 /* mci will not play to > end */
577 err
= mciSendString("play mysound TO 3000 notify", NULL
, 0, hwnd
);
578 ok(err
==MCIERR_OUTOFRANGE
,"mci play to 3000 notify returned %s\n", dbg_mcierr(err
));
580 err
= mciSendString("play mysound to 2000", NULL
, 0, NULL
);
581 ok(!err
,"mci play to 2000 returned %s\n", dbg_mcierr(err
));
583 /* Rejected while playing */
584 err
= mciSendString("cue mysound output", NULL
, 0, NULL
);
585 ok(err
==MCIERR_NONAPPLICABLE_FUNCTION
,"mci cue output while playing returned %s\n", dbg_mcierr(err
));
587 err
= mciSendString("play mysound to 3000", NULL
, 0, NULL
);
588 ok(err
==MCIERR_OUTOFRANGE
,"mci play to 3000 returned %s\n", dbg_mcierr(err
));
590 err
= mciSendString("stop mysound Wait", NULL
, 0, NULL
);
591 ok(!err
,"mci stop wait returned %s\n", dbg_mcierr(err
));
592 test_notification(hwnd
, "play/cue/pause/stop", 0);
594 err
= mciSendString("Seek Mysound to 250 wait Notify", NULL
, 0, hwnd
);
595 ok(!err
,"mci seek to 250 wait notify returned %s\n", dbg_mcierr(err
));
596 test_notification(hwnd
,"seek wait notify",MCI_NOTIFY_SUCCESSFUL
);
598 memset(buf
, 0, sizeof(buf
));
599 err
= mciSendString("status mysound position notify", buf
, sizeof(buf
), hwnd
);
600 ok(!err
,"mci status position notify returned %s\n", dbg_mcierr(err
));
601 if(!err
) ok(!strcmp(buf
,"250"), "mci status position: %s\n", buf
);
602 /* Immediate commands like status also send notifications. */
603 test_notification(hwnd
,"status position",MCI_NOTIFY_SUCCESSFUL
);
605 memset(buf
, 0, sizeof(buf
));
606 err
= mciSendString("status mysound mode", buf
, sizeof(buf
), hwnd
);
607 ok(!err
,"mci status mode returned %s\n", dbg_mcierr(err
));
608 ok(!strcmp(buf
,"stopped"), "mci status mode: %s\n", buf
);
610 /* Another play from == to testcase */
611 err
= mciSendString("play mysound to 250 wait notify", NULL
, 0, hwnd
);
612 ok(!err
,"mci play (from 250) to 250 returned %s\n", dbg_mcierr(err
));
613 todo_wine
test_notification(hwnd
,"play to 250 wait notify",MCI_NOTIFY_SUCCESSFUL
);
615 err
= mciSendString("cue mysound output", NULL
, 0, NULL
);
616 ok(!err
,"mci cue output after play returned %s\n", dbg_mcierr(err
));
618 err
= mciSendString("close mysound", NULL
, 0, NULL
);
619 ok(!err
,"mci close returned %s\n", dbg_mcierr(err
));
620 test_notification(hwnd
,"after close",0);
623 static void test_asyncWAVE(HWND hwnd
)
625 MCIDEVICEID wDeviceID
;
626 MCI_PARMS_UNION parm
;
629 memset(buf
, 0, sizeof(buf
));
631 err
= mciSendString("open tempfile.wav alias mysound notify type waveaudio", buf
, sizeof(buf
), hwnd
);
632 ok(err
==ok_saved
,"mci open tempfile.wav returned %s\n", dbg_mcierr(err
));
634 skip("Cannot open tempfile.wav for playing (%s), skipping\n", dbg_mcierr(err
));
637 ok(!strcmp(buf
,"1"), "mci open deviceId: %s, expected 1\n", buf
);
638 wDeviceID
= atoi(buf
);
639 ok(wDeviceID
,"mci open DeviceID: %d\n", wDeviceID
);
640 test_notification(hwnd
,"open alias notify",MCI_NOTIFY_SUCCESSFUL
);
642 err
= mciGetDeviceID("mysound");
643 ok(err
==wDeviceID
,"mciGetDeviceID alias returned %u, expected %u\n", err
, wDeviceID
);
645 /* Only the alias is looked up. */
646 err
= mciGetDeviceID("tempfile.wav");
647 todo_wine
ok(err
==0,"mciGetDeviceID element returned %u, expected 0\n", err
);
649 err
= mciGetDeviceID("waveaudio");
650 todo_wine
ok(err
==0,"mciGetDeviceID waveaudio returned %u, expected 0\n", err
);
652 err
= mciSendString("status mysound mode", buf
, sizeof(buf
), hwnd
);
653 ok(!err
,"mci status mode returned %s\n", dbg_mcierr(err
));
654 ok(!strcmp(buf
,"stopped"), "mci status mode: %s\n", buf
);
656 err
= mciSendString("play mysound notify", NULL
, 0, hwnd
);
657 ok(!err
,"mci play returned %s\n", dbg_mcierr(err
));
659 /* Give Wine's asynchronous thread time to start up. Furthermore,
660 * it uses 3 buffers per second, so that the positions reported
661 * will be 333ms, 667ms etc. at best. */
662 Sleep(100); /* milliseconds */
664 /* Do not query time format as string because result depends on locale! */
665 parm
.status
.dwItem
= MCI_STATUS_TIME_FORMAT
;
666 err
= mciSendCommand(wDeviceID
, MCI_STATUS
, MCI_STATUS_ITEM
, (DWORD_PTR
)&parm
);
667 ok(!err
,"mciCommand status time format: %s\n", dbg_mcierr(err
));
668 if(!err
) ok(parm
.status
.dwReturn
==MCI_FORMAT_MILLISECONDS
,"status time format: %ld\n",parm
.status
.dwReturn
);
670 parm
.set
.dwTimeFormat
= MCI_FORMAT_MILLISECONDS
;
671 err
= mciSendCommand(wDeviceID
, MCI_SET
, MCI_SET_TIME_FORMAT
, (DWORD_PTR
)&parm
);
672 ok(!err
,"mciCommand set time format ms: %s\n", dbg_mcierr(err
));
675 err
= mciSendString("status mysound position", buf
, sizeof(buf
), hwnd
);
676 ok(!err
,"mci status position returned %s\n", dbg_mcierr(err
));
677 ok(strcmp(buf
,"2000"), "mci status position: %s, expected 2000\n", buf
);
678 trace("position after Sleep: %sms\n",buf
);
680 /* Some machines reach 79ms only during the 100ms sleep. */
681 ok(p2
>=67,"not enough time elapsed %ums\n",p2
);
682 test_notification(hwnd
,"play (nowait)",0);
684 err
= mciSendString("pause mysound wait", NULL
, 0, hwnd
);
685 ok(!err
,"mci pause wait returned %s\n", dbg_mcierr(err
));
688 err
= mciSendString("status mysound mode notify", buf
, sizeof(buf
), hwnd
);
689 ok(!err
,"mci status mode returned %s\n", dbg_mcierr(err
));
690 if(!err
) ok(!strcmp(buf
,"paused"), "mci status mode: %s\n", buf
);
691 test_notification(hwnd
,"play",MCI_NOTIFY_SUPERSEDED
);
692 test_notification(hwnd
,"status",MCI_NOTIFY_SUCCESSFUL
);
695 err
= mciSendString("status mysound position", buf
, sizeof(buf
), hwnd
);
696 ok(!err
,"mci status position returned %s\n", dbg_mcierr(err
));
697 trace("position while paused: %sms\n",buf
);
699 ok(p1
>=p2
, "position not increasing: %u > %u\n", p2
, p1
);
701 err
= mciSendString("stop mysound wait", NULL
, 0, NULL
);
702 ok(!err
,"mci stop returned %s\n", dbg_mcierr(err
));
705 err
= mciSendString("info mysound file notify", buf
, sizeof(buf
), hwnd
);
706 ok(!err
,"mci info file returned %s\n", dbg_mcierr(err
));
707 if(!err
) { /* fully qualified name */
708 int len
= strlen(buf
);
709 todo_wine
ok(len
>2 && buf
[1]==':',"Expected full pathname from info file: %s\n", buf
);
710 ok(len
>=12 && !strcmp(&buf
[len
-12],"tempfile.wav"), "info file returned: %s\n", buf
);
712 test_notification(hwnd
,"info file",MCI_NOTIFY_SUCCESSFUL
);
715 err
= mciSendString("status mysound mode", buf
, sizeof(buf
), hwnd
);
716 ok(!err
,"mci status mode returned %s\n", dbg_mcierr(err
));
717 ok(!strcmp(buf
,"stopped"), "mci status mode: %s\n", buf
);
720 err
= mciSendString("status mysound position", buf
, sizeof(buf
), hwnd
);
721 ok(!err
,"mci status position returned %s\n", dbg_mcierr(err
));
722 trace("position once stopped: %sms\n",buf
);
724 /* An XP machine let the position increase slightly after pause. */
725 ok(p2
>=p1
&& p2
<=p1
+16,"position changed from %ums to %ums\n",p1
,p2
);
727 /* No Resume once stopped (waveaudio, sequencer and cdaudio differ). */
728 err
= mciSendString("resume mysound wait", NULL
, 0, NULL
);
729 ok(err
==MCIERR_NONAPPLICABLE_FUNCTION
,"mci resume wait returned %s\n", dbg_mcierr(err
));
731 err
= mciSendString("play mysound wait", NULL
, 0, NULL
);
732 ok(!err
,"mci play wait returned %s\n", dbg_mcierr(err
));
735 err
= mciSendString("status mysound position", buf
, sizeof(buf
), hwnd
);
736 ok(!err
,"mci status position returned %s\n", dbg_mcierr(err
));
737 todo_wine
ok(!strcmp(buf
,"2000"), "mci status position: %s\n", buf
);
739 err
= mciSendString("seek mysound to start wait", NULL
, 0, NULL
);
740 ok(!err
,"mci seek to start wait returned %s\n", dbg_mcierr(err
));
742 err
= mciSendString("play mysound to 1000 notify", NULL
, 0, hwnd
);
743 ok(!err
,"mci play returned %s\n", dbg_mcierr(err
));
745 /* Sleep(200); not needed with Wine any more. */
747 err
= mciSendString("pause mysound notify", NULL
, 0, NULL
); /* notify no callback */
748 ok(!err
,"mci pause notify returned %s\n", dbg_mcierr(err
));
749 /* Supersede even though pause cannot notify given no callback */
750 test_notification(hwnd
,"pause aborted play #1 notification",MCI_NOTIFY_SUPERSEDED
);
751 test_notification(hwnd
,"impossible pause notification",0);
753 err
= mciSendString("cue mysound output notify", NULL
, 0, hwnd
);
754 ok(err
==MCIERR_NONAPPLICABLE_FUNCTION
,"mci cue output while paused returned %s\n", dbg_mcierr(err
));
755 test_notification(hwnd
,"cue output notify #2",0);
757 err
= mciSendString("resume mysound notify", NULL
, 0, hwnd
);
758 ok(!err
,"mci resume notify returned %s\n", dbg_mcierr(err
));
759 test_notification(hwnd
, "resume notify", MCI_NOTIFY_SUCCESSFUL
);
761 /* Seek or even Stop used to hang Wine<1.1.32 on MacOS. */
762 err
= mciSendString("seek mysound to 0 wait", NULL
, 0, NULL
);
763 ok(!err
,"mci seek to start returned %s\n", dbg_mcierr(err
));
766 err
= mciSendString("status mysound mode", buf
, sizeof(buf
), NULL
);
767 ok(!err
,"mci status mode returned %s\n", dbg_mcierr(err
));
768 if(!err
) ok(!strcmp(buf
,"stopped"), "mci status mode: %s\n", buf
);
770 err
= mciSendString("seek mysound wait", NULL
, 0, NULL
);
771 ok(err
==MCIERR_MISSING_PARAMETER
,"mci seek to nowhere returned %s\n", dbg_mcierr(err
));
773 /* cdaudio does not detect to start to end as error */
774 err
= mciSendString("seek mysound to start to 0", NULL
, 0, NULL
);
775 ok(err
==MCIERR_FLAGS_NOT_COMPATIBLE
,"mci seek to start to 0 returned %s\n", dbg_mcierr(err
));
777 err
= mciSendString("PLAY mysound to 1000 notify", NULL
, 0, hwnd
);
778 ok(!err
,"mci play to 1000 notify returned %s\n", dbg_mcierr(err
));
780 /* Sleep(200); not needed with Wine any more. */
781 /* Give it 400ms and resume will appear to complete below. */
783 err
= mciSendString("pause mysound wait", NULL
, 0, NULL
);
784 ok(!err
,"mci pause wait returned %s\n", dbg_mcierr(err
));
785 /* Unlike sequencer and cdaudio, waveaudio's pause does not abort. */
786 test_notification(hwnd
,"pause aborted play #2 notification",0);
788 err
= mciSendString("resume mysound wait", NULL
, 0, NULL
);
789 ok(!err
,"mci resume wait returned %s\n", dbg_mcierr(err
));
790 /* Resume is a short asynchronous call, something else is playing. */
792 err
= mciSendString("status mysound mode", buf
, sizeof(buf
), NULL
);
793 ok(!err
,"mci status mode returned %s\n", dbg_mcierr(err
));
794 if(!err
) ok(!strcmp(buf
,"playing"), "mci status mode: %s\n", buf
);
796 /* Note extra space before alias */
797 err
= mciSendString("pause mysound wait", NULL
, 0, NULL
);
798 todo_wine
ok(!err
,"mci pause (space) wait returned %s\n", dbg_mcierr(err
));
800 err
= mciSendString("pause mysound wait", NULL
, 0, NULL
);
801 ok(!err
,"mci pause wait returned %s\n", dbg_mcierr(err
));
803 /* Better ask position only when paused, is it updated while playing? */
805 err
= mciSendString("status mysound position", buf
, sizeof(buf
), NULL
);
806 ok(!err
,"mci status position returned %s\n", dbg_mcierr(err
));
807 /* TODO compare position < 900 */
808 ok(strcmp(buf
,"1000"), "mci resume waited\n");
809 ok(strcmp(buf
,"2000"), "mci resume played to end\n");
810 trace("position after resume: %sms\n",buf
);
811 test_notification(hwnd
,"play (aborted by pause/resume/pause)",0);
813 err
= mciSendString("close mysound wait", NULL
, 0, NULL
);
814 ok(!err
,"mci close wait returned %s\n", dbg_mcierr(err
));
815 test_notification(hwnd
,"play (aborted by close)",MCI_NOTIFY_ABORTED
);
818 static void test_AutoOpenWAVE(HWND hwnd
)
820 /* This test used(?) to cause intermittent crashes when Wine exits, after
821 * fixme:winmm:MMDRV_Exit Closing while ll-driver open
823 UINT ndevs
= waveOutGetNumDevs();
824 MCIERROR err
, ok_snd
= ndevs
? 0 : MCIERR_HARDWARE
;
825 MCI_PARMS_UNION parm
;
826 char buf
[512], path
[300], command
[330];
827 DWORD intbuf
[3] = { 0xDEADF00D, 99, 0xABADCAFE };
828 memset(buf
, 0, sizeof(buf
)); memset(path
, 0, sizeof(path
));
830 /* Do not crash on NULL buffer pointer */
831 err
= mciSendString("sysinfo waveaudio quantity open", NULL
, 0, NULL
);
832 ok(err
==MCIERR_PARAM_OVERFLOW
,"mci sysinfo without buffer returned %s\n", dbg_mcierr(err
));
834 err
= mciSendString("sysinfo waveaudio quantity open", buf
, sizeof(buf
), NULL
);
835 ok(!err
,"mci sysinfo waveaudio quantity open returned %s\n", dbg_mcierr(err
));
836 if(!err
) ok(!strcmp(buf
,"0"), "sysinfo quantity open expected 0, got: %s, some more tests will fail.\n", buf
);
838 /* Who knows why some machines pass all tests but return MCIERR_HARDWARE here? */
839 err
= mciSendString("sound NoSuchSoundDefined wait", NULL
, 0, NULL
);
840 todo_wine
ok(err
==ok_snd
|| broken(err
==MCIERR_HARDWARE
),"mci sound NoSuchSoundDefined returned %s\n", dbg_mcierr(err
));
842 err
= mciSendString("sound SystemExclamation notify wait", NULL
, 0, hwnd
);
843 todo_wine
ok(err
==ok_snd
|| broken(err
==MCIERR_HARDWARE
),"mci sound SystemExclamation returned %s\n", dbg_mcierr(err
));
844 test_notification(hwnd
, "sound notify", err
? 0 : MCI_NOTIFY_SUCCESSFUL
);
846 Sleep(16); /* time to auto-close makes sysinfo below return expected error */
848 err
= mciSendString("sysinfo waveaudio notify name 1 open", buf
, sizeof(buf
), hwnd
);
849 ok(err
==MCIERR_OUTOFRANGE
,"sysinfo waveaudio name 1 returned %s\n", dbg_mcierr(err
));
850 if(!err
) trace("sysinfo dangling open alias: %s\n", buf
);
851 test_notification(hwnd
, "sysinfo name outofrange\n", err
? 0 : MCI_NOTIFY_SUCCESSFUL
);
853 err
= mciSendString("play no-such-file-exists.wav notify", buf
, sizeof(buf
), NULL
);
854 if(err
==MCIERR_FILE_NOT_FOUND
) { /* a Wine detector */
855 /* Unsupported auto-open leaves the file open, preventing clean-up */
856 skip("Skipping auto-open tests in Wine\n");
860 test_notification(hwnd
, "-prior to auto-open-", 0);
862 err
= mciSendString("play tempfile.wav notify", buf
, sizeof(buf
), hwnd
);
863 todo_wine
ok(err
==MCIERR_NOTIFY_ON_AUTO_OPEN
,"mci auto-open play notify returned %s\n", dbg_mcierr(err
));
865 if(err
) /* FIXME: don't open twice yet, it confuses Wine. */
866 err
= mciSendString("play tempfile.wav", buf
, sizeof(buf
), hwnd
);
867 ok(err
==ok_saved
,"mci auto-open play returned %s\n", dbg_mcierr(err
));
869 if(err
==MCIERR_FILE_NOT_FOUND
) {
870 skip("Cannot open tempfile.wav for auto-play, skipping\n");
875 err
= mciSendString("sysinfo waveaudio quantity open", buf
, sizeof(buf
), NULL
);
876 ok(!err
,"mci sysinfo waveaudio quantity after auto-open returned %s\n", dbg_mcierr(err
));
877 if(!err
) todo_wine
ok(!strcmp(buf
,"1"), "sysinfo quantity open expected 1, got: %s\n", buf
);
879 parm
.sys
.lpstrReturn
= (LPSTR
)&intbuf
[1];
880 parm
.sys
.dwRetSize
= 2*sizeof(DWORD
); /* only one DWORD is used */
881 parm
.sys
.wDeviceType
= MCI_DEVTYPE_WAVEFORM_AUDIO
;
882 err
= mciSendCommand(0, MCI_SYSINFO
, MCI_SYSINFO_QUANTITY
| MCI_SYSINFO_OPEN
, (DWORD_PTR
)&parm
);
883 ok(!err
,"mciSendCommand(0(WAVEAUDIO), MCI_SYSINFO, OPEN | MCI_NOTIFY) returned %s\n", dbg_mcierr(err
));
884 if(!err
) ok(atoi(buf
)==intbuf
[1],"sysinfo waveaudio quantity open string and command differ\n");
887 err
= mciSendString("sysinfo waveaudio name 1 open notify", buf
, sizeof(buf
), hwnd
);
888 ok(!err
,"mci sysinfo waveaudio name after auto-open returned %s\n", dbg_mcierr(err
));
889 /* This is the alias, not necessarily a file name. */
890 if(!err
) ok(!strcmp(buf
,"tempfile.wav"), "sysinfo name 1 open: %s\n", buf
);
891 test_notification(hwnd
, "sysinfo name notify\n", MCI_NOTIFY_SUCCESSFUL
);
893 /* Save the full pathname to the file. */
894 err
= mciSendString("info tempfile.wav file", path
, sizeof(path
), NULL
);
895 ok(!err
,"mci info tempfile.wav file returned %s\n", dbg_mcierr(err
));
896 if(err
) strcpy(path
,"tempfile.wav");
898 err
= mciSendString("status tempfile.wav mode", NULL
, 0, hwnd
);
899 ok(!err
,"mci status tempfile.wav mode without buffer returned %s\n", dbg_mcierr(err
));
901 sprintf(command
,"status \"%s\" mode",path
);
902 err
= mciSendString(command
, buf
, sizeof(buf
), hwnd
);
903 ok(!err
,"mci status \"%s\" mode returned %s\n", path
, dbg_mcierr(err
));
906 err
= mciSendString("status tempfile.wav mode", buf
, sizeof(buf
), hwnd
);
907 ok(!err
,"mci status tempfile.wav mode returned %s\n", dbg_mcierr(err
));
908 if(!err
) ok(!strcmp(buf
,"playing"), "mci auto-open status mode, got: %s\n", buf
);
910 err
= mciSendString("open tempfile.wav", buf
, sizeof(buf
), NULL
);
911 todo_wine
ok(err
==MCIERR_DEVICE_OPEN
, "mci open from auto-open returned %s\n", dbg_mcierr(err
));
913 /* w2k/xp and Wine differ. While the device is busy playing, it is
914 * regularly open and accessible via the filename: subsequent
915 * commands must not cause auto-open each. In Wine, a subsequent
916 * command with notify request may cause the initial play
917 * notification to be superseded, in turn causing MCI to close the
918 * device. I.e. MCI uses the auto-open notification for itself,
919 * that's why it's not available to the app. On w2k/xp,
920 * subsequent commands with notify requests are returned with
921 * MCIERR_NOTIFY_ON_AUTO_OPEN and thus don't abort the original
924 err
= mciSendString("status tempfile.wav mode notify", buf
, sizeof(buf
), hwnd
);
925 todo_wine
ok(err
==MCIERR_NOTIFY_ON_AUTO_OPEN
, "mci status auto-open notify returned %s\n", dbg_mcierr(err
));
927 trace("Wine style MCI auto-close upon notification\n");
929 /* "playing" because auto-close comes after the status call. */
930 todo_wine
ok(!strcmp(buf
,"playing"), "mci auto-open status mode notify, got: %s\n", buf
);
931 /* fixme:winmm:MMDRV_Exit Closing while ll-driver open
932 * is explained by failure to auto-close a device. */
933 test_notification(hwnd
,"status notify",MCI_NOTIFY_SUCCESSFUL
);
934 /* MCI received NOTIFY_SUPERSEDED and auto-closed the device. */
936 test_notification(hwnd
,"auto-open",0);
937 } else if(err
==MCIERR_NOTIFY_ON_AUTO_OPEN
) { /* MS style */
938 trace("MS style MCI auto-open forbids notification\n");
940 err
= mciSendString("pause tempfile.wav", NULL
, 0, hwnd
);
941 ok(!err
,"mci auto-still-open pause returned %s\n", dbg_mcierr(err
));
943 err
= mciSendString("status tempfile.wav mode", buf
, sizeof(buf
), hwnd
);
944 ok(!err
,"mci status mode returned %s\n", dbg_mcierr(err
));
945 if(!err
) ok(!strcmp(buf
,"paused"), "mci auto-open status mode, got: %s\n", buf
);
948 err
= mciSendString("stop tempfile.wav", NULL
, 0, hwnd
);
949 ok(!err
,"mci auto-still-open stop returned %s\n", dbg_mcierr(err
));
950 Sleep(16); /* makes sysinfo quantity open below succeed */
953 err
= mciSendString("sysinfo waveaudio quantity open", buf
, sizeof(buf
), NULL
);
954 ok(!err
,"mci sysinfo waveaudio quantity open after close returned %s\n", dbg_mcierr(err
));
955 if(!err
) todo_wine
ok(!strcmp(buf
,"0"), "sysinfo quantity open expected 0 after auto-close, got: %s\n", buf
);
957 /* w95-WinME (not w2k/XP) switch to C:\ after auto-playing once. Prevent
958 * MCIERR_FILE_NOT_FOUND by using the full path name from the Info file command.
960 sprintf(command
,"status \"%s\" mode wait",path
);
961 err
= mciSendString(command
, buf
, sizeof(buf
), hwnd
);
962 ok(!err
,"mci re-auto-open status mode returned %s\n", dbg_mcierr(err
));
963 if(!err
) ok(!strcmp(buf
,"stopped"), "mci re-auto-open status mode, got: %s\n", buf
);
965 buf
[0]=0; /* This uses auto-open as well. */
966 err
= mciSendString("capability waveaudio outputs", buf
, sizeof(buf
), NULL
);
967 ok(!err
,"mci capability waveaudio outputs returned %s\n", dbg_mcierr(err
));
968 /* Wine with no sound selected in winecfg's audio tab fails this test. */
969 if(!err
) ok(atoi(buf
)==ndevs
,"Expected %d audio outputs, got %s\n", ndevs
, buf
);
971 err
= mciSendString("capability waveaudio device type", buf
, sizeof(buf
), hwnd
);
972 ok(!err
,"mci capability device type returned %s\n", dbg_mcierr(err
));
973 if(!err
) ok(!strcmp(buf
,"waveaudio"), "mci capability device type response: %s\n", buf
);
975 /* waveaudio forbids Pause without Play. */
976 sprintf(command
,"pause \"%s\"",path
);
977 err
= mciSendString(command
, NULL
, 0, hwnd
);
978 ok(err
==MCIERR_NONAPPLICABLE_FUNCTION
,"mci auto-open pause returned %s\n", dbg_mcierr(err
));
980 ok(0xDEADF00D==intbuf
[0] && 0xABADCAFE==intbuf
[2],"DWORD buffer corruption\n");
987 hwnd
= CreateWindowExA(0, "static", "winmm test", WS_POPUP
, 0,0,100,100,
989 test_openCloseWAVE(hwnd
);
990 test_recordWAVE(hwnd
);
992 test_asyncWAVE(hwnd
);
993 test_AutoOpenWAVE(hwnd
);
994 /* Win9X hangs when exiting with something still open. */
995 err
= mciSendString("close all", NULL
, 0, hwnd
);
996 ok(!err
,"final close all returned %s\n", dbg_mcierr(err
));
997 ok(DeleteFile("tempfile.wav")||ok_saved
,"Delete tempfile.wav (cause auto-open?)\n");