winmm/tests: Add more MCI tests.
[wine] / dlls / winmm / tests / mci.c
1 /*
2  * Test winmm mci
3  *
4  * Copyright 2006 Jan Zerebecki
5  *           2009 Jörg Höhle
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include <stdio.h>
23 #include "windows.h"
24 #include "mmsystem.h"
25 #include "mmreg.h"
26 #include "wine/test.h"
27
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;
31
32 typedef union {
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;
38       MCI_SEEK_PARMS      seek;
39       MCI_GENERIC_PARMS   gen;
40     } MCI_PARMS_UNION;
41
42 static const char* dbg_mcierr(MCIERROR err)
43 {
44      switch (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)
50      X(MCIERR_HARDWARE)
51      X(MCIERR_INVALID_DEVICE_NAME)
52      X(MCIERR_OUT_OF_MEMORY)
53      X(MCIERR_DEVICE_OPEN)
54      X(MCIERR_CANNOT_LOAD_DRIVER)
55      X(MCIERR_MISSING_COMMAND_STRING)
56      X(MCIERR_PARAM_OVERFLOW)
57      X(MCIERR_MISSING_STRING_ARGUMENT)
58      X(MCIERR_BAD_INTEGER)
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)
65      X(MCIERR_INTERNAL)
66      X(MCIERR_DRIVER)
67      X(MCIERR_CANNOT_USE_ALL)
68      X(MCIERR_MULTIPLE)
69      X(MCIERR_EXTENSION_NOT_FOUND)
70      X(MCIERR_OUTOFRANGE)
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)
93      X(MCIERR_GET_CD)
94      X(MCIERR_SET_CD)
95      X(MCIERR_SET_DRIVE)
96      X(MCIERR_DEVICE_LENGTH)
97      X(MCIERR_DEVICE_ORD_LENGTH)
98      X(MCIERR_NO_INTEGER)
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)
114      X(MCIERR_SEQ_TIMER)
115      X(MCIERR_SEQ_PORTUNSPECIFIED)
116      X(MCIERR_SEQ_NOMIDIPRESENT)
117      X(MCIERR_NO_WINDOW)
118      X(MCIERR_CREATEWINDOW)
119      X(MCIERR_FILE_READ)
120      X(MCIERR_FILE_WRITE)
121      X(MCIERR_NO_IDENTITY)
122 #undef X
123      default: {
124          static char name[20]; /* Not to be called twice in a parameter list! */
125          sprintf(name, "MMSYSERR %u", err);
126          return name;
127          }
128      }
129 }
130
131 static BOOL spurious_message(LPMSG msg)
132 {
133   /* WM_DEVICECHANGE 0x0219 appears randomly */
134   if(msg->message != MM_MCINOTIFY) {
135     trace("skipping spurious message %04x\n",msg->message);
136     return TRUE;
137   }
138   return FALSE;
139 }
140
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 */
145     MSG msg;
146     BOOL seen;
147     do { seen = PeekMessageA(&msg, hwnd, 0, 0, PM_REMOVE); }
148     while(seen && spurious_message(&msg));
149     if(type && !seen) {
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);
155     }
156     if(!seen)
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);
163 }
164
165 static void test_openCloseWAVE(HWND hwnd)
166 {
167     MCIERROR err;
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";
173     char buf[1024];
174     DWORD intbuf[3] = { 0xDEADF00D, 99, 0xABADCAFE };
175     memset(buf, 0, sizeof(buf));
176     test_notification(hwnd, "-prior to any command-", 0);
177
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);
182
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");
189
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));
193
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));
196     if(!err) {
197         err = mciSendString("close r", NULL, 0, NULL);
198         ok(!err,"mci close shareable returned %s\n", dbg_mcierr(err));
199     }
200
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);
206
207     err = mciSendString("status mysound time format", buf, sizeof(buf), hwnd);
208     ok(!err,"mci status time format returned %s\n", dbg_mcierr(err));
209     if(!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);
213     }
214
215     parm.sys.dwNumber = 1;
216     parm.sys.wDeviceType = MCI_DEVTYPE_WAVEFORM_AUDIO; /* ignored */
217     parm.sys.lpstrReturn = buf;
218     parm.sys.dwRetSize = sizeof(buf);
219     parm.sys.dwCallback = (DWORD_PTR)hwnd;
220     err = mciSendCommand(MCI_ALL_DEVICE_ID, MCI_SYSINFO, MCI_SYSINFO_NAME | MCI_SYSINFO_OPEN | MCI_NOTIFY, (DWORD_PTR)&parm);
221     ok(!err,"mciCommand MCI_SYSINFO all name 1 open notify: %s\n", dbg_mcierr(err));
222     if(!err) ok(!strcmp(buf,"mysound"),"sysinfo name returned %s\n", buf);
223     test_notification(hwnd, "SYSINFO name notify\n", MCI_NOTIFY_SUCCESSFUL);
224
225     err = mciGetDeviceID("all");
226     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);
227
228     err = mciSendString(command_close_my, NULL, 0, hwnd);
229     ok(!err,"mci %s returned %s\n", command_close_my, dbg_mcierr(err));
230     test_notification(hwnd, command_close_my, MCI_NOTIFY_SUCCESSFUL);
231     Sleep(5);
232     test_notification(hwnd, command_close_my, 0);
233
234     err = mciSendString("open no-such-file-exists.wav alias y", buf, sizeof(buf), NULL);
235     ok(err==MCIERR_FILE_NOT_FOUND,"open no-such-file.wav returned %s\n", dbg_mcierr(err));
236     if(!err) {
237         err = mciSendString("close y", NULL, 0, NULL);
238         ok(!err,"close y returned %s\n", dbg_mcierr(err));
239     }
240
241     err = mciSendString("open no-such-dir\\file.wav alias y type waveaudio", buf, sizeof(buf), NULL);
242     ok(err==MCIERR_FILE_NOT_FOUND || broken(err==MCIERR_INVALID_FILE /* Win9X */),"open no-such-dir/file.wav returned %s\n", dbg_mcierr(err));
243     if(!err) {
244         err = mciSendString("close y", NULL, 0, NULL);
245         ok(!err,"close y returned %s\n", dbg_mcierr(err));
246     }
247
248     err = mciSendString(command_close_all, NULL, 0, NULL);
249     ok(!err,"mci %s (without buffer) returned %s\n", command_close_all, dbg_mcierr(err));
250
251     memset(buf, 0, sizeof(buf));
252     err = mciSendString(command_close_all, buf, sizeof(buf), hwnd);
253     ok(!err,"mci %s (with output buffer) returned %s\n", command_close_all, dbg_mcierr(err));
254     ok(buf[0] == 0, "mci %s changed output buffer: %s\n", command_close_all, buf);
255     /* No notification left, everything closed already */
256     test_notification(hwnd, command_close_all, 0);
257     /* TODO test close all sends one notification per open device */
258
259     memset(buf, 0, sizeof(buf));
260     err = mciSendString(command_sysinfo, buf, sizeof(buf), NULL);
261     ok(!err,"mci %s returned %s\n", command_sysinfo, dbg_mcierr(err));
262     ok(buf[0] == '0' && buf[1] == 0, "mci %s, expected output buffer '0', got: '%s'\n", command_sysinfo, buf);
263
264     err = mciSendString("open new type waveaudio", buf, sizeof(buf), NULL);
265     ok(err==MCIERR_NEW_REQUIRES_ALIAS,"mci open new without alias returned %s\n", dbg_mcierr(err));
266
267     parm.open.lpstrDeviceType = (LPSTR)MCI_DEVTYPE_WAVEFORM_AUDIO;
268     err = mciSendCommand(0, MCI_OPEN,
269         MCI_OPEN_TYPE | MCI_OPEN_TYPE_ID,
270         (DWORD_PTR)&parm);
271     ok(!err,"mciCommand OPEN_TYPE_ID waveaudio: %s\n", dbg_mcierr(err));
272
273     if(!err) {
274         MCIDEVICEID wDeviceID = parm.open.wDeviceID;
275         parm.caps.dwItem = MCI_GETDEVCAPS_DEVICE_TYPE;
276         err = mciSendCommand(wDeviceID, MCI_GETDEVCAPS, MCI_GETDEVCAPS_ITEM, (DWORD_PTR)&parm);
277         ok(!err,"mciCommand MCI_GETDEVCAPS device type: %s\n", dbg_mcierr(err));
278         ok(MCI_DEVTYPE_WAVEFORM_AUDIO==parm.caps.dwReturn,"mciCommand GETDEVCAPS says %u, expected %u\n", parm.caps.dwReturn, MCI_DEVTYPE_WAVEFORM_AUDIO);
279     }
280
281     ok(0xDEADF00D==intbuf[0] && 0xABADCAFE==intbuf[2],"DWORD buffer corruption\n");
282
283     err = mciSendCommand(MCI_ALL_DEVICE_ID, MCI_CLOSE, MCI_WAIT, 0); /* from MSDN */
284     ok(!err,"mciSendCommand(MCI_ALL_DEVICE_ID, MCI_CLOSE, MCI_WAIT, 0) returned %s\n", dbg_mcierr(err));
285
286     err = mciSendCommand(MCI_ALL_DEVICE_ID, MCI_CLOSE, MCI_NOTIFY, 0);
287     ok(!err,"mciSendCommand(MCI_ALL_DEVICE_ID, MCI_CLOSE, MCI_NOTIFY, 0) returned %s\n", dbg_mcierr(err));
288
289     parm.gen.dwCallback = (DWORD_PTR)hwnd;
290     err = mciSendCommand(MCI_ALL_DEVICE_ID, MCI_CLOSE, MCI_NOTIFY, (DWORD_PTR)&parm);
291     ok(!err,"mciSendCommand(MCI_ALL_DEVICE_ID, MCI_CLOSE, MCI_NOTIFY, hwnd) returned %s\n", dbg_mcierr(err));
292     test_notification(hwnd, command_close_all, 0); /* None left */
293 }
294
295 static void test_recordWAVE(HWND hwnd)
296 {
297     WORD nch    = 1;
298     WORD nbits  = 16;
299     DWORD nsamp = 16000, expect;
300     UINT ndevs  = waveInGetNumDevs();
301     MCIERROR err, ok_pcm;
302     MCIDEVICEID wDeviceID;
303     MCI_PARMS_UNION parm;
304     char buf[1024];
305     memset(buf, 0, sizeof(buf));
306     test_notification(hwnd, "-prior to recording-", 0);
307
308     parm.open.lpstrDeviceType = "waveaudio";
309     parm.open.lpstrElementName = ""; /* "new" at the command level */
310     parm.open.lpstrAlias = "x"; /* to enable mciSendString */
311     parm.open.dwCallback = (DWORD_PTR)hwnd;
312     err = mciSendCommand(0, MCI_OPEN,
313         MCI_OPEN_ELEMENT | MCI_OPEN_TYPE | MCI_OPEN_ALIAS | MCI_NOTIFY,
314         (DWORD_PTR)&parm);
315     ok(!err,"mciCommand open new type waveaudio alias x notify: %s\n", dbg_mcierr(err));
316     wDeviceID = parm.open.wDeviceID;
317
318     err = mciGetDeviceID("x");
319     ok(err==wDeviceID,"mciGetDeviceID x returned %u, expected %u\n", err, wDeviceID);
320
321     /* Only the alias is looked up. */
322     err = mciGetDeviceID("waveaudio");
323     todo_wine ok(err==0,"mciGetDeviceID waveaudio returned %u, expected 0\n", err);
324
325     /* In Wine, both MCI_Open and the individual drivers send notifications. */
326     test_notification(hwnd, "open new", MCI_NOTIFY_SUCCESSFUL);
327     todo_wine test_notification(hwnd, "open new no #2", 0);
328
329     /* Do not query time format as string because result depends on locale! */
330     parm.status.dwItem = MCI_STATUS_TIME_FORMAT;
331     err = mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM, (DWORD_PTR)&parm);
332     ok(!err,"mciCommand status time format: %s\n", dbg_mcierr(err));
333     ok(parm.status.dwReturn==MCI_FORMAT_MILLISECONDS,"status time format: %ld\n",parm.status.dwReturn);
334
335     /* Info file fails until named in Open or Save. */
336     err = mciSendString("info x file", buf, sizeof(buf), NULL);
337     todo_wine ok(err==MCIERR_NONAPPLICABLE_FUNCTION,"mci info new file returned %s\n", dbg_mcierr(err));
338
339     /* Check the default recording: 8-bits per sample, mono, 11kHz */
340     err = mciSendString("status x samplespersec", buf, sizeof(buf), NULL);
341     ok(!err,"mci status samplespersec returned %s\n", dbg_mcierr(err));
342     if(!err) ok(!strcmp(buf,"11025"), "mci status samplespersec expected 11025, got: %s\n", buf);
343
344     /* MCI seems to solely support PCM, no need for ACM conversion. */
345     err = mciSendString("set x format tag 2", NULL, 0, NULL);
346     ok(err==MCIERR_OUTOFRANGE,"mci set format tag 2 returned %s\n", dbg_mcierr(err));
347
348     /* MCI appears to scan the available devices for support of this format,
349      * returning MCIERR_OUTOFRANGE on machines with no sound.
350      * However some w2k8/w7 machines return no error when there's no wave
351      * input device (perhaps querying waveOutGetNumDevs instead of waveIn?),
352      * still the record command below fails with MCIERR_WAVE_INPUTSUNSUITABLE.
353      * Don't skip here, record will fail below. */
354     err = mciSendString("set x format tag pcm", NULL, 0, NULL);
355     ok(!err || err==MCIERR_OUTOFRANGE,"mci set format tag pcm returned %s\n", dbg_mcierr(err));
356     ok_pcm = err;
357
358     /* MSDN warns against not setting all wave format parameters.
359      * Indeed, it produces strange results, incl.
360      * inconsistent PCMWAVEFORMAT headers in the saved file.
361      */
362     err = mciSendString("set x bytespersec 22050 alignment 2 samplespersec 11025 channels 1 bitspersample 16", NULL, 0, NULL);
363     ok(err==ok_pcm,"mci set 5 wave parameters returned %s\n", dbg_mcierr(err));
364     /* Investigate: on w2k, set samplespersec 22050 sets nChannels to 2!
365      *  err = mciSendString("set x samplespersec 22050", NULL, 0, NULL);
366      *  ok(!err,"mci set samplespersec returned %s\n", dbg_mcierr(err));
367      */
368
369     /* Checks are generally performed immediately. */
370     err = mciSendString("set x bitspersample 4", NULL, 0, NULL);
371     todo_wine ok(err==MCIERR_OUTOFRANGE,"mci set bitspersample 4 returned %s\n", dbg_mcierr(err));
372
373     parm.set.wFormatTag = WAVE_FORMAT_PCM;
374     parm.set.nSamplesPerSec = nsamp;
375     parm.set.wBitsPerSample = nbits;
376     parm.set.nChannels      = nch;
377     parm.set.nBlockAlign    = parm.set.nChannels * parm.set.wBitsPerSample /8;
378     parm.set.nAvgBytesPerSec= parm.set.nSamplesPerSec * parm.set.nBlockAlign;
379     err = mciSendCommand(wDeviceID, MCI_SET,
380         MCI_WAVE_SET_SAMPLESPERSEC | MCI_WAVE_SET_CHANNELS |
381         MCI_WAVE_SET_BITSPERSAMPLE | MCI_WAVE_SET_BLOCKALIGN |
382         MCI_WAVE_SET_AVGBYTESPERSEC| MCI_WAVE_SET_FORMATTAG, (DWORD_PTR)&parm);
383     ok(err==ok_pcm,"mciCommand set wave format: %s\n", dbg_mcierr(err));
384
385     parm.caps.dwItem = MCI_WAVE_GETDEVCAPS_INPUTS;
386     parm.caps.dwCallback = (DWORD_PTR)hwnd;
387     err = mciSendCommand(wDeviceID, MCI_GETDEVCAPS, MCI_GETDEVCAPS_ITEM | MCI_NOTIFY, (DWORD_PTR)&parm);
388     ok(!err,"mciCommand MCI_GETDEVCAPS inputs: %s\n", dbg_mcierr(err));
389     ok(parm.caps.dwReturn==ndevs,"mciCommand GETDEVCAPS claims %u inputs, expected %u\n", parm.caps.dwReturn, ndevs);
390     ok(!ok_pcm || !parm.caps.dwReturn,"No input device accepts PCM!?\n");
391     test_notification(hwnd, "GETDEVCAPS inputs", MCI_NOTIFY_SUCCESSFUL);
392
393     /* A few ME machines pass all tests except set format tag pcm! */
394     err = mciSendString("record x to 2000 wait", NULL, 0, hwnd);
395     ok(err || !ok_pcm,"can record yet set wave format pcm returned %s\n", dbg_mcierr(ok_pcm));
396     if(!ndevs) todo_wine /* with sound disabled */
397     ok(ndevs>0 ? !err : err==MCIERR_WAVE_INPUTSUNSUITABLE,"mci record to 2000 returned %s\n", dbg_mcierr(err));
398     else
399     ok(ndevs>0 ? !err : err==MCIERR_WAVE_INPUTSUNSUITABLE,"mci record to 2000 returned %s\n", dbg_mcierr(err));
400     if(err) {
401         if (err==MCIERR_WAVE_INPUTSUNSUITABLE)
402              skip("Please install audio driver. Everything is skipped.\n");
403         else skip("Cannot record cause %s. Everything is skipped.\n", dbg_mcierr(err));
404
405         err = mciSendString("close x", NULL, 0, NULL);
406         ok(!err,"mci close returned %s\n", dbg_mcierr(err));
407         test_notification(hwnd,"record skipped",0);
408         return;
409     }
410
411     /* Query some wave format parameters depending on the time format. */
412     err = mciSendString("status x position", buf, sizeof(buf), NULL);
413     ok(!err,"mci status position returned %s\n", dbg_mcierr(err));
414     if(!err) todo_wine ok(!strcmp(buf,"2000"), "mci status position gave %s, expected 2000, some tests will fail\n", buf);
415
416     err = mciSendString("set x time format 8", NULL, 0, NULL); /* bytes */
417     ok(!err,"mci returned %s\n", dbg_mcierr(err));
418
419     parm.status.dwItem = MCI_STATUS_POSITION;
420     err = mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM, (DWORD_PTR)&parm);
421     ok(!err,"mciCommand status position: %s\n", dbg_mcierr(err));
422     expect = 2 * nsamp * nch * nbits/8;
423     if(!err) todo_wine ok(parm.status.dwReturn==expect,"recorded %lu bytes, expected %u\n",parm.status.dwReturn,expect);
424
425     parm.set.dwTimeFormat = MCI_FORMAT_SAMPLES;
426     err = mciSendCommand(wDeviceID, MCI_SET, MCI_SET_TIME_FORMAT, (DWORD_PTR)&parm);
427     ok(!err,"mciCommand set time format samples: %s\n", dbg_mcierr(err));
428
429     parm.status.dwItem = MCI_STATUS_POSITION;
430     err = mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM, (DWORD_PTR)&parm);
431     ok(!err,"mciCommand status position: %s\n", dbg_mcierr(err));
432     expect = 2 * nsamp;
433     if(!err) todo_wine ok(parm.status.dwReturn==expect,"recorded %lu samples, expected %u\n",parm.status.dwReturn,expect);
434
435     err = mciSendString("set x time format milliseconds", NULL, 0, NULL);
436     ok(!err,"mci set time format milliseconds returned %s\n", dbg_mcierr(err));
437
438     err = mciSendString("save x tempfile1.wav", NULL, 0, NULL);
439     ok(!err,"mci save returned %s\n", dbg_mcierr(err));
440
441     err = mciSendString("save x tempfile.wav", NULL, 0, NULL);
442     ok(!err,"mci save returned %s\n", dbg_mcierr(err));
443     if(!err) ok_saved = 0;
444
445     /* Save must not rename the original file. */
446     if (!DeleteFile("tempfile1.wav"))
447         todo_wine ok(FALSE, "Save must not rename the original file; DeleteFile returned %d\n", GetLastError());
448
449     err = mciSendString("set x channels 2", NULL, 0, NULL);
450     ok(err==MCIERR_NONAPPLICABLE_FUNCTION,"mci set channels after saving returned %s\n", dbg_mcierr(err));
451
452     parm.seek.dwTo = 600;
453     err = mciSendCommand(wDeviceID, MCI_SEEK, MCI_TO | MCI_WAIT, (DWORD_PTR)&parm);
454     ok(!err,"mciCommand seek to 600: %s\n", dbg_mcierr(err));
455
456     /* Truncate to current position */
457     err = mciSendString("delete x", NULL, 0, NULL);
458     todo_wine ok(!err,"mci delete returned %s\n", dbg_mcierr(err));
459
460     buf[0]='\0';
461     err = mciSendString("status x length", buf, sizeof(buf), NULL);
462     ok(!err,"mci status length returned %s\n", dbg_mcierr(err));
463     todo_wine ok(!strcmp(buf,"600"), "mci status length after delete gave %s, expected 600\n", buf);
464
465     err = mciSendString("close x", NULL, 0, NULL);
466     ok(!err,"mci close returned %s\n", dbg_mcierr(err));
467     test_notification(hwnd,"record complete",0);
468 }
469
470 static void test_playWAVE(HWND hwnd)
471 {
472     MCIERROR err;
473     char buf[1024];
474     memset(buf, 0, sizeof(buf));
475
476     err = mciSendString("open waveaudio!tempfile.wav alias mysound", NULL, 0, NULL);
477     ok(err==ok_saved,"mci open waveaudio!tempfile.wav returned %s\n", dbg_mcierr(err));
478     if(err) {
479         skip("Cannot open waveaudio!tempfile.wav for playing (%s), skipping\n", dbg_mcierr(err));
480         return;
481     }
482
483     err = mciSendString("status mysound length", buf, sizeof(buf), NULL);
484     ok(!err,"mci status length returned %s\n", dbg_mcierr(err));
485     todo_wine ok(!strcmp(buf,"2000"), "mci status length gave %s, expected 2000, some tests will fail.\n", buf);
486
487     err = mciSendString("cue output", NULL, 0, NULL);
488     todo_wine ok(err==MCIERR_UNRECOGNIZED_COMMAND,"mci incorrect cue output returned %s\n", dbg_mcierr(err));
489
490     /* Test MCI to the bones -- Some todo_wine from Cue and
491      * from Play from 0 to 0 are not worth fixing. */
492     err = mciSendString("cue mysound output notify", NULL, 0, hwnd);
493     ok(!err,"mci cue output after open file returned %s\n", dbg_mcierr(err));
494     /* Notification is delayed as a play thread is started. */
495     todo_wine test_notification(hwnd, "cue immediate", 0);
496
497     /* Cue pretends to put the MCI into paused state. */
498     err = mciSendString("status mysound mode", buf, sizeof(buf), hwnd);
499     ok(!err,"mci status mode returned %s\n", dbg_mcierr(err));
500     todo_wine ok(!strcmp(buf,"paused"), "mci status mode: %s, expected (pseudo)paused\n", buf);
501
502     /* Strange pause where Pause is rejected, unlike Play; Pause; Pause tested below */
503     err = mciSendString("pause mysound", NULL, 0, hwnd);
504     ok(err==MCIERR_NONAPPLICABLE_FUNCTION,"mci pause after cue returned %s\n", dbg_mcierr(err));
505
506     /* MCI appears to start the play thread in this border case.
507      * Guessed that from (flaky) status mode and late notification arrival. */
508     err = mciSendString("play mysound from 0 to 0 notify", NULL, 0, hwnd);
509     ok(!err,"mci play from 0 to 0 returned %s\n", dbg_mcierr(err));
510     todo_wine test_notification(hwnd, "cue aborted by play", MCI_NOTIFY_ABORTED);
511     /* play's own notification follows below */
512
513     err = mciSendString("play mysound from 250 to 0", NULL, 0, NULL);
514     ok(err==MCIERR_OUTOFRANGE,"mci play from 250 to 0 returned %s\n", dbg_mcierr(err));
515
516     Sleep(50); /* Give play from 0 to 0 time to finish. */
517     todo_wine test_notification(hwnd, "play from 0 to 0", MCI_NOTIFY_SUCCESSFUL);
518
519     err = mciSendString("status mysound mode", buf, sizeof(buf), hwnd);
520     ok(!err,"mci status mode returned %s\n", dbg_mcierr(err));
521     ok(!strcmp(buf,"stopped"), "mci status mode: %s after play from 0 to 0\n", buf);
522
523     err = mciSendString("play MYSOUND from 250 to 0 notify", NULL, 0, hwnd);
524     ok(err==MCIERR_OUTOFRANGE,"mci play from 250 to 0 notify returned %s\n", dbg_mcierr(err));
525     /* No notification (checked below) sent if error */
526
527     /* A second play caused Wine<1.1.33 to hang */
528     err = mciSendString("play mysound from 500 to 1500 wait", NULL, 0, NULL);
529     ok(!err,"mci play from 500 to 1500 returned %s\n", dbg_mcierr(err));
530
531     memset(buf, 0, sizeof(buf));
532     err = mciSendString("status mysound position", buf, sizeof(buf), hwnd);
533     ok(!err,"mci status position returned %s\n", dbg_mcierr(err));
534     if(!err) ok(!strcmp(buf,"1500"), "mci status position: %s\n", buf);
535
536     /* mci will not play position < current */
537     err = mciSendString("play mysound to 1000", NULL, 0, NULL);
538     ok(err==MCIERR_OUTOFRANGE,"mci play to 1000 returned %s\n", dbg_mcierr(err));
539
540     /* mci will not play to > end */
541     err = mciSendString("play mysound TO 3000 notify", NULL, 0, hwnd);
542     ok(err==MCIERR_OUTOFRANGE,"mci play to 3000 notify returned %s\n", dbg_mcierr(err));
543
544     err = mciSendString("play mysound to 2000", NULL, 0, NULL);
545     ok(!err,"mci play to 2000 returned %s\n", dbg_mcierr(err));
546
547     /* Rejected while playing */
548     err = mciSendString("cue mysound output", NULL, 0, NULL);
549     ok(err==MCIERR_NONAPPLICABLE_FUNCTION,"mci cue output while playing returned %s\n", dbg_mcierr(err));
550
551     err = mciSendString("play mysound to 3000", NULL, 0, NULL);
552     ok(err==MCIERR_OUTOFRANGE,"mci play to 3000 returned %s\n", dbg_mcierr(err));
553
554     err = mciSendString("stop mysound Wait", NULL, 0, NULL);
555     ok(!err,"mci stop wait returned %s\n", dbg_mcierr(err));
556     test_notification(hwnd, "play/cue/pause/stop", 0);
557
558     err = mciSendString("Seek Mysound to 250 wait Notify", NULL, 0, hwnd);
559     ok(!err,"mci seek to 250 wait notify returned %s\n", dbg_mcierr(err));
560     test_notification(hwnd,"seek wait notify",MCI_NOTIFY_SUCCESSFUL);
561
562     memset(buf, 0, sizeof(buf));
563     err = mciSendString("status mysound position notify", buf, sizeof(buf), hwnd);
564     ok(!err,"mci status position notify returned %s\n", dbg_mcierr(err));
565     if(!err) ok(!strcmp(buf,"250"), "mci status position: %s\n", buf);
566     /* Immediate commands like status also send notifications. */
567     test_notification(hwnd,"status position",MCI_NOTIFY_SUCCESSFUL);
568
569     memset(buf, 0, sizeof(buf));
570     err = mciSendString("status mysound mode", buf, sizeof(buf), hwnd);
571     ok(!err,"mci status mode returned %s\n", dbg_mcierr(err));
572     ok(!strcmp(buf,"stopped"), "mci status mode: %s\n", buf);
573
574     /* Another play from == to testcase */
575     err = mciSendString("play mysound to 250 wait notify", NULL, 0, hwnd);
576     ok(!err,"mci play (from 250) to 250 returned %s\n", dbg_mcierr(err));
577     todo_wine test_notification(hwnd,"play to 250 wait notify",MCI_NOTIFY_SUCCESSFUL);
578
579     err = mciSendString("cue mysound output", NULL, 0, NULL);
580     ok(!err,"mci cue output after play returned %s\n", dbg_mcierr(err));
581
582     err = mciSendString("close mysound", NULL, 0, NULL);
583     ok(!err,"mci close returned %s\n", dbg_mcierr(err));
584     test_notification(hwnd,"after close",0);
585 }
586
587 static void test_asyncWAVE(HWND hwnd)
588 {
589     MCIDEVICEID wDeviceID;
590     MCI_PARMS_UNION parm;
591     int err, p1, p2;
592     char buf[1024];
593     memset(buf, 0, sizeof(buf));
594
595     err = mciSendString("open tempfile.wav alias mysound notify type waveaudio", buf, sizeof(buf), hwnd);
596     ok(err==ok_saved,"mci open tempfile.wav returned %s\n", dbg_mcierr(err));
597     if(err) {
598         skip("Cannot open tempfile.wav for playing (%s), skipping\n", dbg_mcierr(err));
599         return;
600     }
601     ok(!strcmp(buf,"1"), "mci open deviceId: %s, expected 1\n", buf);
602     wDeviceID = atoi(buf);
603     ok(wDeviceID,"mci open DeviceID: %d\n", wDeviceID);
604     test_notification(hwnd,"open alias notify",MCI_NOTIFY_SUCCESSFUL);
605
606     err = mciGetDeviceID("mysound");
607     ok(err==wDeviceID,"mciGetDeviceID alias returned %u, expected %u\n", err, wDeviceID);
608
609     /* Only the alias is looked up. */
610     err = mciGetDeviceID("tempfile.wav");
611     todo_wine ok(err==0,"mciGetDeviceID element returned %u, expected 0\n", err);
612
613     err = mciGetDeviceID("waveaudio");
614     todo_wine ok(err==0,"mciGetDeviceID waveaudio returned %u, expected 0\n", err);
615
616     err = mciSendString("status mysound mode", buf, sizeof(buf), hwnd);
617     ok(!err,"mci status mode returned %s\n", dbg_mcierr(err));
618     ok(!strcmp(buf,"stopped"), "mci status mode: %s\n", buf);
619
620     err = mciSendString("play mysound notify", NULL, 0, hwnd);
621     ok(!err,"mci play returned %s\n", dbg_mcierr(err));
622
623     /* Give Wine's asynchronous thread time to start up.  Furthermore,
624      * it uses 3 buffers per second, so that the positions reported
625      * will be 333ms, 667ms etc. at best. */
626     Sleep(100); /* milliseconds */
627
628     /* Do not query time format as string because result depends on locale! */
629     parm.status.dwItem = MCI_STATUS_TIME_FORMAT;
630     err = mciSendCommand(wDeviceID, MCI_STATUS, MCI_STATUS_ITEM, (DWORD_PTR)&parm);
631     ok(!err,"mciCommand status time format: %s\n", dbg_mcierr(err));
632     if(!err) ok(parm.status.dwReturn==MCI_FORMAT_MILLISECONDS,"status time format: %ld\n",parm.status.dwReturn);
633
634     parm.set.dwTimeFormat = MCI_FORMAT_MILLISECONDS;
635     err = mciSendCommand(wDeviceID, MCI_SET, MCI_SET_TIME_FORMAT, (DWORD_PTR)&parm);
636     ok(!err,"mciCommand set time format ms: %s\n", dbg_mcierr(err));
637
638     buf[0]=0;
639     err = mciSendString("status mysound position", buf, sizeof(buf), hwnd);
640     ok(!err,"mci status position returned %s\n", dbg_mcierr(err));
641     ok(strcmp(buf,"2000"), "mci status position: %s, expected 2000\n", buf);
642     trace("position after Sleep: %sms\n",buf);
643     p2 = atoi(buf);
644     /* Some machines reach 79ms only during the 100ms sleep. */
645     ok(p2>=67,"not enough time elapsed %ums\n",p2);
646     test_notification(hwnd,"play (nowait)",0);
647
648     err = mciSendString("pause mysound wait", NULL, 0, hwnd);
649     ok(!err,"mci pause wait returned %s\n", dbg_mcierr(err));
650
651     buf[0]=0;
652     err = mciSendString("status mysound mode notify", buf, sizeof(buf), hwnd);
653     ok(!err,"mci status mode returned %s\n", dbg_mcierr(err));
654     if(!err) ok(!strcmp(buf,"paused"), "mci status mode: %s\n", buf);
655     test_notification(hwnd,"play",MCI_NOTIFY_SUPERSEDED);
656     test_notification(hwnd,"status",MCI_NOTIFY_SUCCESSFUL);
657
658     buf[0]=0;
659     err = mciSendString("status mysound position", buf, sizeof(buf), hwnd);
660     ok(!err,"mci status position returned %s\n", dbg_mcierr(err));
661     trace("position while paused: %sms\n",buf);
662     p1 = atoi(buf);
663     ok(p1>=p2, "position not increasing: %u > %u\n", p2, p1);
664
665     err = mciSendString("stop mysound wait", NULL, 0, NULL);
666     ok(!err,"mci stop returned %s\n", dbg_mcierr(err));
667
668     buf[0]=0;
669     err = mciSendString("info mysound file notify", buf, sizeof(buf), hwnd);
670     ok(!err,"mci info file returned %s\n", dbg_mcierr(err));
671     if(!err) { /* fully qualified name */
672         int len = strlen(buf);
673         todo_wine ok(len>2 && buf[1]==':',"Expected full pathname from info file: %s\n", buf);
674         ok(len>=12 && !strcmp(&buf[len-12],"tempfile.wav"), "info file returned: %s\n", buf);
675     }
676     test_notification(hwnd,"info file",MCI_NOTIFY_SUCCESSFUL);
677
678     buf[0]=0;
679     err = mciSendString("status mysound mode", buf, sizeof(buf), hwnd);
680     ok(!err,"mci status mode returned %s\n", dbg_mcierr(err));
681     ok(!strcmp(buf,"stopped"), "mci status mode: %s\n", buf);
682
683     buf[0]=0;
684     err = mciSendString("status mysound position", buf, sizeof(buf), hwnd);
685     ok(!err,"mci status position returned %s\n", dbg_mcierr(err));
686     trace("position once stopped: %sms\n",buf);
687     p2 = atoi(buf);
688     /* An XP machine let the position increase slightly after pause. */
689     ok(p2>=p1 && p2<=p1+16,"position changed from %ums to %ums\n",p1,p2);
690
691     /* No Resume once stopped (waveaudio, sequencer and cdaudio differ). */
692     err = mciSendString("resume mysound wait", NULL, 0, NULL);
693     ok(err==MCIERR_NONAPPLICABLE_FUNCTION,"mci resume wait returned %s\n", dbg_mcierr(err));
694
695     err = mciSendString("play mysound wait", NULL, 0, NULL);
696     ok(!err,"mci play wait returned %s\n", dbg_mcierr(err));
697
698     buf[0]=0;
699     err = mciSendString("status mysound position", buf, sizeof(buf), hwnd);
700     ok(!err,"mci status position returned %s\n", dbg_mcierr(err));
701     todo_wine ok(!strcmp(buf,"2000"), "mci status position: %s\n", buf);
702
703     err = mciSendString("seek mysound to start wait", NULL, 0, NULL);
704     ok(!err,"mci seek to start wait returned %s\n", dbg_mcierr(err));
705
706     err = mciSendString("play mysound to 1000 notify", NULL, 0, hwnd);
707     ok(!err,"mci play returned %s\n", dbg_mcierr(err));
708
709     /* Sleep(200); not needed with Wine any more. */
710
711     err = mciSendString("pause mysound notify", NULL, 0, NULL); /* notify no callback */
712     ok(!err,"mci pause notify returned %s\n", dbg_mcierr(err));
713     /* Supersede even though pause cannot notify given no callback */
714     test_notification(hwnd,"pause aborted play #1 notification",MCI_NOTIFY_SUPERSEDED);
715     test_notification(hwnd,"impossible pause notification",0);
716
717     err = mciSendString("cue mysound output notify", NULL, 0, hwnd);
718     ok(err==MCIERR_NONAPPLICABLE_FUNCTION,"mci cue output while paused returned %s\n", dbg_mcierr(err));
719     test_notification(hwnd,"cue output notify #2",0);
720
721     err = mciSendString("resume mysound notify", NULL, 0, hwnd);
722     ok(!err,"mci resume notify returned %s\n", dbg_mcierr(err));
723     test_notification(hwnd, "resume notify", MCI_NOTIFY_SUCCESSFUL);
724
725     /* Seek or even Stop used to hang Wine<1.1.32 on MacOS. */
726     err = mciSendString("seek mysound to 0 wait", NULL, 0, NULL);
727     ok(!err,"mci seek to start returned %s\n", dbg_mcierr(err));
728
729     /* Seek stops. */
730     err = mciSendString("status mysound mode", buf, sizeof(buf), NULL);
731     ok(!err,"mci status mode returned %s\n", dbg_mcierr(err));
732     if(!err) ok(!strcmp(buf,"stopped"), "mci status mode: %s\n", buf);
733
734     err = mciSendString("seek mysound wait", NULL, 0, NULL);
735     ok(err==MCIERR_MISSING_PARAMETER,"mci seek to nowhere returned %s\n", dbg_mcierr(err));
736
737     /* cdaudio does not detect to start to end as error */
738     err = mciSendString("seek mysound to start to 0", NULL, 0, NULL);
739     ok(err==MCIERR_FLAGS_NOT_COMPATIBLE,"mci seek to start to 0 returned %s\n", dbg_mcierr(err));
740
741     err = mciSendString("PLAY mysound to 1000 notify", NULL, 0, hwnd);
742     ok(!err,"mci play to 1000 notify returned %s\n", dbg_mcierr(err));
743
744     /* Sleep(200); not needed with Wine any more. */
745     /* Give it 400ms and resume will appear to complete below. */
746
747     err = mciSendString("pause mysound wait", NULL, 0, NULL);
748     ok(!err,"mci pause wait returned %s\n", dbg_mcierr(err));
749     /* Unlike sequencer and cdaudio, waveaudio's pause does not abort. */
750     test_notification(hwnd,"pause aborted play #2 notification",0);
751
752     err = mciSendString("resume mysound wait", NULL, 0, NULL);
753     ok(!err,"mci resume wait returned %s\n", dbg_mcierr(err));
754     /* Resume is a short asynchronous call, something else is playing. */
755
756     err = mciSendString("status mysound mode", buf, sizeof(buf), NULL);
757     ok(!err,"mci status mode returned %s\n", dbg_mcierr(err));
758     if(!err) ok(!strcmp(buf,"playing"), "mci status mode: %s\n", buf);
759
760     /* Note extra space before alias */
761     err = mciSendString("pause  mysound wait", NULL, 0, NULL);
762     todo_wine ok(!err,"mci pause (space) wait returned %s\n", dbg_mcierr(err));
763
764     err = mciSendString("pause mysound wait", NULL, 0, NULL);
765     ok(!err,"mci pause wait returned %s\n", dbg_mcierr(err));
766
767     /* Better ask position only when paused, is it updated while playing? */
768     buf[0]='\0';
769     err = mciSendString("status mysound position", buf, sizeof(buf), NULL);
770     ok(!err,"mci status position returned %s\n", dbg_mcierr(err));
771     /* TODO compare position < 900 */
772     ok(strcmp(buf,"1000"), "mci resume waited\n");
773     ok(strcmp(buf,"2000"), "mci resume played to end\n");
774     trace("position after resume: %sms\n",buf);
775     test_notification(hwnd,"play (aborted by pause/resume/pause)",0);
776
777     err = mciSendString("close mysound wait", NULL, 0, NULL);
778     ok(!err,"mci close wait returned %s\n", dbg_mcierr(err));
779     test_notification(hwnd,"play (aborted by close)",MCI_NOTIFY_ABORTED);
780 }
781
782 static void test_AutoOpenWAVE(HWND hwnd)
783 {
784     /* This test used(?) to cause intermittent crashes when Wine exits, after
785      * fixme:winmm:MMDRV_Exit Closing while ll-driver open
786      */
787     UINT ndevs = waveOutGetNumDevs();
788     MCIERROR err, ok_snd = ndevs ? 0 : MCIERR_HARDWARE;
789     MCI_PARMS_UNION parm;
790     char buf[512], path[300], command[330];
791     DWORD intbuf[3] = { 0xDEADF00D, 99, 0xABADCAFE };
792     memset(buf, 0, sizeof(buf)); memset(path, 0, sizeof(path));
793
794     /* Do not crash on NULL buffer pointer */
795     err = mciSendString("sysinfo waveaudio quantity open", NULL, 0, NULL);
796     ok(err==MCIERR_PARAM_OVERFLOW,"mci sysinfo without buffer returned %s\n", dbg_mcierr(err));
797
798     err = mciSendString("sysinfo waveaudio quantity open", buf, sizeof(buf), NULL);
799     ok(!err,"mci sysinfo waveaudio quantity open returned %s\n", dbg_mcierr(err));
800     if(!err) ok(!strcmp(buf,"0"), "sysinfo quantity open expected 0, got: %s, some more tests will fail.\n", buf);
801
802     /* Who knows why some machines pass all tests but return MCIERR_HARDWARE here? */
803     err = mciSendString("sound NoSuchSoundDefined wait", NULL, 0, NULL);
804     todo_wine ok(err==ok_snd || broken(err==MCIERR_HARDWARE),"mci sound NoSuchSoundDefined returned %s\n", dbg_mcierr(err));
805
806     err = mciSendString("sound SystemExclamation notify wait", NULL, 0, hwnd);
807     todo_wine ok(err==ok_snd || broken(err==MCIERR_HARDWARE),"mci sound SystemExclamation returned %s\n", dbg_mcierr(err));
808     test_notification(hwnd, "sound notify", err ? 0 : MCI_NOTIFY_SUCCESSFUL);
809
810     Sleep(16); /* time to auto-close makes sysinfo below return expected error */
811     buf[0]=0;
812     err = mciSendString("sysinfo waveaudio notify name 1 open", buf, sizeof(buf), hwnd);
813     ok(err==MCIERR_OUTOFRANGE,"sysinfo waveaudio name 1 returned %s\n", dbg_mcierr(err));
814     if(!err) trace("sysinfo dangling open alias: %s\n", buf);
815     test_notification(hwnd, "sysinfo name outofrange\n", err ? 0 : MCI_NOTIFY_SUCCESSFUL);
816
817     err = mciSendString("play no-such-file-exists.wav notify", buf, sizeof(buf), NULL);
818     if(err==MCIERR_FILE_NOT_FOUND) { /* a Wine detector */
819         /* Unsupported auto-open leaves the file open, preventing clean-up */
820         skip("Skipping auto-open tests in Wine\n");
821         return;
822     }
823
824     test_notification(hwnd, "-prior to auto-open-", 0);
825
826     err = mciSendString("play tempfile.wav notify", buf, sizeof(buf), hwnd);
827     todo_wine ok(err==MCIERR_NOTIFY_ON_AUTO_OPEN,"mci auto-open play notify returned %s\n", dbg_mcierr(err));
828
829     if(err) /* FIXME: don't open twice yet, it confuses Wine. */
830     err = mciSendString("play tempfile.wav", buf, sizeof(buf), hwnd);
831     ok(err==ok_saved,"mci auto-open play returned %s\n", dbg_mcierr(err));
832
833     if(err==MCIERR_FILE_NOT_FOUND) {
834         skip("Cannot open tempfile.wav for auto-play, skipping\n");
835         return;
836     }
837
838     buf[0]=0;
839     err = mciSendString("sysinfo waveaudio quantity open", buf, sizeof(buf), NULL);
840     ok(!err,"mci sysinfo waveaudio quantity after auto-open returned %s\n", dbg_mcierr(err));
841     if(!err) todo_wine ok(!strcmp(buf,"1"), "sysinfo quantity open expected 1, got: %s\n", buf);
842
843     parm.sys.lpstrReturn = (LPSTR)&intbuf[1];
844     parm.sys.dwRetSize = 2*sizeof(DWORD); /* only one DWORD is used */
845     parm.sys.wDeviceType = MCI_DEVTYPE_WAVEFORM_AUDIO;
846     err = mciSendCommand(0, MCI_SYSINFO, MCI_SYSINFO_QUANTITY | MCI_SYSINFO_OPEN, (DWORD_PTR)&parm);
847     ok(!err,"mciSendCommand(0(WAVEAUDIO), MCI_SYSINFO, OPEN | MCI_NOTIFY) returned %s\n", dbg_mcierr(err));
848     if(!err) ok(atoi(buf)==intbuf[1],"sysinfo waveaudio quantity open string and command differ\n");
849
850     buf[0]=0;
851     err = mciSendString("sysinfo waveaudio name 1 open notify", buf, sizeof(buf), hwnd);
852     ok(!err,"mci sysinfo waveaudio name after auto-open returned %s\n", dbg_mcierr(err));
853     /* This is the alias, not necessarily a file name. */
854     if(!err) ok(!strcmp(buf,"tempfile.wav"), "sysinfo name 1 open: %s\n", buf);
855     test_notification(hwnd, "sysinfo name notify\n", MCI_NOTIFY_SUCCESSFUL);
856
857     /* Save the full pathname to the file. */
858     err = mciSendString("info tempfile.wav file", path, sizeof(path), NULL);
859     ok(!err,"mci info tempfile.wav file returned %s\n", dbg_mcierr(err));
860     if(err) strcpy(path,"tempfile.wav");
861
862     err = mciSendString("status tempfile.wav mode", NULL, 0, hwnd);
863     ok(!err,"mci status tempfile.wav mode without buffer returned %s\n", dbg_mcierr(err));
864
865     sprintf(command,"status \"%s\" mode",path);
866     err = mciSendString(command, buf, sizeof(buf), hwnd);
867     ok(!err,"mci status \"%s\" mode returned %s\n", path, dbg_mcierr(err));
868
869     buf[0]=0;
870     err = mciSendString("status tempfile.wav mode", buf, sizeof(buf), hwnd);
871     ok(!err,"mci status tempfile.wav mode returned %s\n", dbg_mcierr(err));
872     if(!err) ok(!strcmp(buf,"playing"), "mci auto-open status mode, got: %s\n", buf);
873
874     err = mciSendString("open tempfile.wav", buf, sizeof(buf), NULL);
875     todo_wine ok(err==MCIERR_DEVICE_OPEN, "mci open from auto-open returned %s\n", dbg_mcierr(err));
876
877     /* w2k/xp and Wine differ. While the device is busy playing, it is
878      * regularly open and accessible via the filename: subsequent
879      * commands must not cause auto-open each.  In Wine, a subsequent
880      * command with notify request may cause the initial play
881      * notification to be superseded, in turn causing MCI to close the
882      * device.  I.e. MCI uses the auto-open notification for itself,
883      * that's why it's not available to the app.  On w2k/xp,
884      * subsequent commands with notify requests are returned with
885      * MCIERR_NOTIFY_ON_AUTO_OPEN and thus don't abort the original
886      * command.
887      */
888     err = mciSendString("status tempfile.wav mode notify", buf, sizeof(buf), hwnd);
889     todo_wine ok(err==MCIERR_NOTIFY_ON_AUTO_OPEN, "mci status auto-open notify returned %s\n", dbg_mcierr(err));
890     if(!err) {
891         trace("Wine style MCI auto-close upon notification\n");
892
893         /* "playing" because auto-close comes after the status call. */
894         todo_wine ok(!strcmp(buf,"playing"), "mci auto-open status mode notify, got: %s\n", buf);
895         /* fixme:winmm:MMDRV_Exit Closing while ll-driver open
896          *  is explained by failure to auto-close a device. */
897         test_notification(hwnd,"status notify",MCI_NOTIFY_SUCCESSFUL);
898         /* MCI received NOTIFY_SUPERSEDED and auto-closed the device. */
899         Sleep(16);
900         test_notification(hwnd,"auto-open",0);
901     } else if(err==MCIERR_NOTIFY_ON_AUTO_OPEN) { /* MS style */
902         trace("MS style MCI auto-open forbids notification\n");
903
904         err = mciSendString("pause tempfile.wav", NULL, 0, hwnd);
905         ok(!err,"mci auto-still-open pause returned %s\n", dbg_mcierr(err));
906
907         err = mciSendString("status tempfile.wav mode", buf, sizeof(buf), hwnd);
908         ok(!err,"mci status mode returned %s\n", dbg_mcierr(err));
909         if(!err) ok(!strcmp(buf,"paused"), "mci auto-open status mode, got: %s\n", buf);
910
911         /* Auto-close */
912         err = mciSendString("stop tempfile.wav", NULL, 0, hwnd);
913         ok(!err,"mci auto-still-open stop returned %s\n", dbg_mcierr(err));
914         Sleep(16); /* makes sysinfo quantity open below succeed */
915     }
916
917     err = mciSendString("sysinfo waveaudio quantity open", buf, sizeof(buf), NULL);
918     ok(!err,"mci sysinfo waveaudio quantity open after close returned %s\n", dbg_mcierr(err));
919     if(!err) todo_wine ok(!strcmp(buf,"0"), "sysinfo quantity open expected 0 after auto-close, got: %s\n", buf);
920
921     /* w95-WinME (not w2k/XP) switch to C:\ after auto-playing once.  Prevent
922      * MCIERR_FILE_NOT_FOUND by using the full path name from the Info file command.
923      */
924     sprintf(command,"status \"%s\" mode wait",path);
925     err = mciSendString(command, buf, sizeof(buf), hwnd);
926     ok(!err,"mci re-auto-open status mode returned %s\n", dbg_mcierr(err));
927     if(!err) ok(!strcmp(buf,"stopped"), "mci re-auto-open status mode, got: %s\n", buf);
928
929     buf[0]=0; /* This uses auto-open as well. */
930     err = mciSendString("capability waveaudio outputs", buf, sizeof(buf), NULL);
931     ok(!err,"mci capability waveaudio outputs returned %s\n", dbg_mcierr(err));
932     /* Wine with no sound selected in winecfg's audio tab fails this test. */
933     if(!err) ok(atoi(buf)==ndevs,"Expected %d audio outputs, got %s\n", ndevs, buf);
934
935     err = mciSendString("capability waveaudio device type", buf, sizeof(buf), hwnd);
936     ok(!err,"mci capability device type returned %s\n", dbg_mcierr(err));
937     if(!err) ok(!strcmp(buf,"waveaudio"), "mci capability device type response: %s\n", buf);
938
939     /* waveaudio forbids Pause without Play. */
940     sprintf(command,"pause \"%s\"",path);
941     err = mciSendString(command, NULL, 0, hwnd);
942     ok(err==MCIERR_NONAPPLICABLE_FUNCTION,"mci auto-open pause returned %s\n", dbg_mcierr(err));
943
944     ok(0xDEADF00D==intbuf[0] && 0xABADCAFE==intbuf[2],"DWORD buffer corruption\n");
945 }
946
947 START_TEST(mci)
948 {
949     MCIERROR err;
950     HWND hwnd;
951     hwnd = CreateWindowExA(0, "static", "winmm test", WS_POPUP, 0,0,100,100,
952                            0, 0, 0, NULL);
953     test_openCloseWAVE(hwnd);
954     test_recordWAVE(hwnd);
955     test_playWAVE(hwnd);
956     test_asyncWAVE(hwnd);
957     test_AutoOpenWAVE(hwnd);
958     /* Win9X hangs when exiting with something still open. */
959     err = mciSendString("close all", NULL, 0, hwnd);
960     ok(!err,"final close all returned %s\n", dbg_mcierr(err));
961     ok(DeleteFile("tempfile.wav")||ok_saved,"Delete tempfile.wav (cause auto-open?)\n");
962     DestroyWindow(hwnd);
963 }