2 * Mailslot regression test
4 * Copyright 2003 Mike McCormack
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 #include "wine/test.h"
30 static const char szmspath
[] = "\\\\.\\mailslot\\wine_mailslot_test";
32 static int mailslot_test(void)
34 HANDLE hSlot
, hSlot2
, hWriter
, hWriter2
;
35 unsigned char buffer
[16];
36 DWORD count
, dwMax
, dwNext
, dwMsgCount
, dwTimeout
;
39 /* sanity check on GetMailslotInfo */
40 dwMax
= dwNext
= dwMsgCount
= dwTimeout
= 0;
41 ok( !GetMailslotInfo( INVALID_HANDLE_VALUE
, &dwMax
, &dwNext
,
42 &dwMsgCount
, &dwTimeout
), "getmailslotinfo succeeded\n");
44 /* open a mailslot that doesn't exist */
45 hWriter
= CreateFile(szmspath
, GENERIC_READ
|GENERIC_WRITE
,
46 FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, NULL
);
47 ok( hWriter
== INVALID_HANDLE_VALUE
, "nonexistent mailslot\n");
49 /* open a mailslot without the right name */
50 hSlot
= CreateMailslot( "blah", 0, 0, NULL
);
51 ok( hSlot
== INVALID_HANDLE_VALUE
,
52 "Created mailslot with invalid name\n");
53 ok( GetLastError() == ERROR_INVALID_NAME
,
54 "error should be ERROR_INVALID_NAME\n");
56 /* open a mailslot with a null name */
57 hSlot
= CreateMailslot( NULL
, 0, 0, NULL
);
58 ok( hSlot
== INVALID_HANDLE_VALUE
, "Created mailslot with invalid name\n");
59 ok( GetLastError() == ERROR_PATH_NOT_FOUND
, "error should be ERROR_PATH_NOT_FOUND\n");
61 /* valid open, but with wacky parameters ... then check them */
62 hSlot
= CreateMailslot( szmspath
, -1, -1, NULL
);
63 ok( hSlot
!= INVALID_HANDLE_VALUE
, "mailslot with valid name failed\n");
64 dwMax
= dwNext
= dwMsgCount
= dwTimeout
= 0;
65 ok( GetMailslotInfo( hSlot
, &dwMax
, &dwNext
, &dwMsgCount
, &dwTimeout
),
66 "getmailslotinfo failed\n");
67 ok( dwMax
== ~0U, "dwMax incorrect\n");
68 ok( dwNext
== MAILSLOT_NO_MESSAGE
, "dwNext incorrect\n");
69 ok( dwMsgCount
== 0, "dwMsgCount incorrect\n");
70 ok( dwTimeout
== ~0U, "dwTimeout incorrect\n");
71 ok( GetMailslotInfo( hSlot
, NULL
, NULL
, NULL
, NULL
),
72 "getmailslotinfo failed\n");
73 ok( CloseHandle(hSlot
), "failed to close mailslot\n");
75 /* now open it for real */
76 hSlot
= CreateMailslot( szmspath
, 0, 0, NULL
);
77 ok( hSlot
!= INVALID_HANDLE_VALUE
, "valid mailslot failed\n");
79 /* try and read/write to it */
81 SetLastError(0xdeadbeef);
82 ret
= ReadFile(INVALID_HANDLE_VALUE
, buffer
, 0, &count
, NULL
);
83 ok(!ret
, "ReadFile should fail\n");
84 ok(GetLastError() == ERROR_INVALID_HANDLE
, "wrong error %u\n", GetLastError());
85 ok(count
== 0, "expected 0, got %u\n", count
);
88 SetLastError(0xdeadbeef);
89 ret
= ReadFile(hSlot
, buffer
, 0, &count
, NULL
);
90 ok(!ret
, "ReadFile should fail\n");
92 ok(GetLastError() == ERROR_SEM_TIMEOUT
, "wrong error %u\n", GetLastError());
93 ok(count
== 0, "expected 0, got %u\n", count
);
96 memset(buffer
, 0, sizeof buffer
);
97 ret
= ReadFile( hSlot
, buffer
, sizeof buffer
, &count
, NULL
);
98 ok( !ret
, "slot read\n");
99 if (!ret
) ok( GetLastError() == ERROR_SEM_TIMEOUT
, "wrong error %u\n", GetLastError() );
100 else ok( count
== 0, "wrong count %u\n", count
);
101 ok( !WriteFile( hSlot
, buffer
, sizeof buffer
, &count
, NULL
),
103 ok( GetLastError() == ERROR_ACCESS_DENIED
, "wrong error %u\n", GetLastError() );
105 /* now try and open the client, but with the wrong sharing mode */
106 hWriter
= CreateFile(szmspath
, GENERIC_WRITE
,
107 0, NULL
, OPEN_EXISTING
, 0, NULL
);
108 ok( hWriter
!= INVALID_HANDLE_VALUE
/* vista */ || GetLastError() == ERROR_SHARING_VIOLATION
,
109 "error should be ERROR_SHARING_VIOLATION got %p / %u\n", hWriter
, GetLastError());
110 if (hWriter
!= INVALID_HANDLE_VALUE
) CloseHandle( hWriter
);
112 /* now open the client with the correct sharing mode */
113 hWriter
= CreateFile(szmspath
, GENERIC_READ
|GENERIC_WRITE
,
114 FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, NULL
);
115 ok( hWriter
!= INVALID_HANDLE_VALUE
, "existing mailslot err %u\n", GetLastError());
118 * opening a client should make no difference to
119 * whether we can read or write the mailslot
121 ret
= ReadFile( hSlot
, buffer
, sizeof buffer
/2, &count
, NULL
);
122 ok( !ret
, "slot read\n");
123 if (!ret
) ok( GetLastError() == ERROR_SEM_TIMEOUT
, "wrong error %u\n", GetLastError() );
124 else ok( count
== 0, "wrong count %u\n", count
);
125 ok( !WriteFile( hSlot
, buffer
, sizeof buffer
/2, &count
, NULL
),
127 ok( GetLastError() == ERROR_ACCESS_DENIED
, "wrong error %u\n", GetLastError() );
130 * we can't read from this client,
131 * but we should be able to write to it
133 ok( !ReadFile( hWriter
, buffer
, sizeof buffer
/2, &count
, NULL
),
134 "can read client\n");
135 ok( GetLastError() == ERROR_INVALID_PARAMETER
|| GetLastError() == ERROR_ACCESS_DENIED
,
136 "wrong error %u\n", GetLastError() );
137 ok( WriteFile( hWriter
, buffer
, sizeof buffer
/2, &count
, NULL
),
138 "can't write client\n");
139 ok( !ReadFile( hWriter
, buffer
, sizeof buffer
/2, &count
, NULL
),
140 "can read client\n");
141 ok( GetLastError() == ERROR_INVALID_PARAMETER
|| GetLastError() == ERROR_ACCESS_DENIED
,
142 "wrong error %u\n", GetLastError() );
145 * seeing as there's something in the slot,
146 * we should be able to read it once
148 ok( ReadFile( hSlot
, buffer
, sizeof buffer
, &count
, NULL
),
150 ok( count
== (sizeof buffer
/2), "short read\n" );
153 ret
= ReadFile( hSlot
, buffer
, sizeof buffer
, &count
, NULL
);
154 ok( !ret
, "slot read\n");
155 if (!ret
) ok( GetLastError() == ERROR_SEM_TIMEOUT
, "wrong error %u\n", GetLastError() );
156 else ok( count
== 0, "wrong count %u\n", count
);
158 /* now try open another writer... should fail */
159 hWriter2
= CreateFile(szmspath
, GENERIC_READ
|GENERIC_WRITE
,
160 FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, NULL
);
161 /* succeeds on vista, don't test */
162 if (hWriter2
!= INVALID_HANDLE_VALUE
) CloseHandle( hWriter2
);
164 /* now try open another as a reader ... also fails */
165 hWriter2
= CreateFile(szmspath
, GENERIC_READ
,
166 FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, NULL
);
167 /* succeeds on vista, don't test */
168 if (hWriter2
!= INVALID_HANDLE_VALUE
) CloseHandle( hWriter2
);
170 /* now try open another as a writer ... still fails */
171 hWriter2
= CreateFile(szmspath
, GENERIC_WRITE
,
172 FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, NULL
);
173 /* succeeds on vista, don't test */
174 if (hWriter2
!= INVALID_HANDLE_VALUE
) CloseHandle( hWriter2
);
176 /* now open another one */
177 hSlot2
= CreateMailslot( szmspath
, 0, 0, NULL
);
178 ok( hSlot2
== INVALID_HANDLE_VALUE
, "opened two mailslots\n");
180 /* close the client again */
181 ok( CloseHandle( hWriter
), "closing the client\n");
184 * now try reopen it with slightly different permissions ...
187 hWriter
= CreateFile(szmspath
, GENERIC_WRITE
,
188 FILE_SHARE_READ
|FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
, 0, NULL
);
189 ok( hWriter
!= INVALID_HANDLE_VALUE
, "sharing writer\n");
192 * now try open another as a writer ...
193 * but don't share with the first ... fail
195 hWriter2
= CreateFile(szmspath
, GENERIC_WRITE
,
196 FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, NULL
);
197 /* succeeds on vista, don't test */
198 if (hWriter2
!= INVALID_HANDLE_VALUE
) CloseHandle( hWriter2
);
200 /* now try open another as a writer ... and share with the first */
201 hWriter2
= CreateFile(szmspath
, GENERIC_WRITE
,
202 FILE_SHARE_READ
|FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
, 0, NULL
);
203 ok( hWriter2
!= INVALID_HANDLE_VALUE
, "2nd sharing writer\n");
205 /* check the mailslot info */
206 dwMax
= dwNext
= dwMsgCount
= dwTimeout
= 0;
207 ok( GetMailslotInfo( hSlot
, &dwMax
, &dwNext
, &dwMsgCount
, &dwTimeout
),
208 "getmailslotinfo failed\n");
209 ok( dwNext
== MAILSLOT_NO_MESSAGE
, "dwNext incorrect\n");
210 ok( dwMax
== 0, "dwMax incorrect\n");
211 ok( dwMsgCount
== 0, "dwMsgCount incorrect\n");
212 ok( dwTimeout
== 0, "dwTimeout incorrect\n");
214 /* check there's still no data */
215 ret
= ReadFile( hSlot
, buffer
, sizeof buffer
, &count
, NULL
);
216 ok( !ret
, "slot read\n");
217 if (!ret
) ok( GetLastError() == ERROR_SEM_TIMEOUT
, "wrong error %u\n", GetLastError() );
218 else ok( count
== 0, "wrong count %u\n", count
);
220 /* write two messages */
222 ok( WriteFile( hWriter
, buffer
, 1, &count
, NULL
), "1st write failed\n");
224 /* check the mailslot info */
225 dwNext
= dwMsgCount
= 0;
226 ok( GetMailslotInfo( hSlot
, NULL
, &dwNext
, &dwMsgCount
, NULL
),
227 "getmailslotinfo failed\n");
228 ok( dwNext
== 1, "dwNext incorrect\n");
229 ok( dwMsgCount
== 1, "dwMsgCount incorrect\n");
233 ok( WriteFile( hWriter2
, buffer
, 2, &count
, NULL
), "2nd write failed\n");
235 /* check the mailslot info */
236 dwNext
= dwMsgCount
= 0;
237 ok( GetMailslotInfo( hSlot
, NULL
, &dwNext
, &dwMsgCount
, NULL
),
238 "getmailslotinfo failed\n");
239 ok( dwNext
== 1, "dwNext incorrect\n");
241 ok( dwMsgCount
== 2, "dwMsgCount incorrect\n");
244 /* write a 3rd message with zero size */
245 ok( WriteFile( hWriter2
, buffer
, 0, &count
, NULL
), "3rd write failed\n");
247 /* check the mailslot info */
248 dwNext
= dwMsgCount
= 0;
249 ok( GetMailslotInfo( hSlot
, NULL
, &dwNext
, &dwMsgCount
, NULL
),
250 "getmailslotinfo failed\n");
251 ok( dwNext
== 1, "dwNext incorrect\n");
253 ok( dwMsgCount
== 3, "dwMsgCount incorrect %u\n", dwMsgCount
);
255 buffer
[0]=buffer
[1]=0;
258 * then check that they come out with the correct order and size,
259 * then the slot is empty
261 ok( ReadFile( hSlot
, buffer
, sizeof buffer
, &count
, NULL
),
262 "1st slot read failed\n");
263 ok( count
== 1, "failed to get 1st message\n");
264 ok( buffer
[0] == 'a', "1st message wrong\n");
266 /* check the mailslot info */
267 dwNext
= dwMsgCount
= 0;
268 ok( GetMailslotInfo( hSlot
, NULL
, &dwNext
, &dwMsgCount
, NULL
),
269 "getmailslotinfo failed\n");
270 ok( dwNext
== 2, "dwNext incorrect\n");
272 ok( dwMsgCount
== 2, "dwMsgCount incorrect %u\n", dwMsgCount
);
275 /* read the second message */
276 ok( ReadFile( hSlot
, buffer
, sizeof buffer
, &count
, NULL
),
277 "2nd slot read failed\n");
278 ok( count
== 2, "failed to get 2nd message\n");
279 ok( ( buffer
[0] == 'b' ) && ( buffer
[1] == 'c' ), "2nd message wrong\n");
281 /* check the mailslot info */
282 dwNext
= dwMsgCount
= 0;
283 ok( GetMailslotInfo( hSlot
, NULL
, &dwNext
, &dwMsgCount
, NULL
),
284 "getmailslotinfo failed\n");
285 ok( dwNext
== 0, "dwNext incorrect %u\n", dwNext
);
287 ok( dwMsgCount
== 1, "dwMsgCount incorrect %u\n", dwMsgCount
);
290 /* read the 3rd (zero length) message */
292 ok( ReadFile( hSlot
, buffer
, sizeof buffer
, &count
, NULL
),
293 "3rd slot read failed\n");
295 ok( count
== 0, "failed to get 3rd message\n");
298 * now there should be no more messages
299 * check the mailslot info
301 dwNext
= dwMsgCount
= 0;
302 ok( GetMailslotInfo( hSlot
, NULL
, &dwNext
, &dwMsgCount
, NULL
),
303 "getmailslotinfo failed\n");
304 ok( dwNext
== MAILSLOT_NO_MESSAGE
, "dwNext incorrect\n");
305 ok( dwMsgCount
== 0, "dwMsgCount incorrect\n");
307 /* check that reads fail */
308 ret
= ReadFile( hSlot
, buffer
, sizeof buffer
, &count
, NULL
);
309 ok( !ret
, "3rd slot read succeeded\n");
310 if (!ret
) ok( GetLastError() == ERROR_SEM_TIMEOUT
, "wrong error %u\n", GetLastError() );
311 else ok( count
== 0, "wrong count %u\n", count
);
313 /* finally close the mailslot and its client */
314 ok( CloseHandle( hWriter2
), "closing 2nd client\n");
315 ok( CloseHandle( hWriter
), "closing the client\n");
316 ok( CloseHandle( hSlot
), "closing the mailslot\n");
319 hSlot
= CreateMailslot( szmspath
, 0, 1000, NULL
);
320 ok( hSlot
!= INVALID_HANDLE_VALUE
, "valid mailslot failed\n");
322 memset(buffer
, 0, sizeof buffer
);
323 dwTimeout
= GetTickCount();
324 ok( !ReadFile( hSlot
, buffer
, sizeof buffer
, &count
, NULL
), "slot read\n");
325 ok( GetLastError() == ERROR_SEM_TIMEOUT
, "wrong error %u\n", GetLastError() );
326 dwTimeout
= GetTickCount() - dwTimeout
;
327 ok( dwTimeout
>= 990, "timeout too short %u\n", dwTimeout
);
328 ok( CloseHandle( hSlot
), "closing the mailslot\n");