2003-10-31 00:24:12 +01:00
|
|
|
/*
|
|
|
|
* Mailslot regression test
|
|
|
|
*
|
|
|
|
* Copyright 2003 Mike McCormack
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
|
|
|
|
#ifndef STANDALONE
|
|
|
|
#include "wine/test.h"
|
|
|
|
#else
|
|
|
|
#define START_TEST(name) main(int argc, char **argv)
|
|
|
|
|
|
|
|
#define ok(cond,str) do{ if(!(cond)) printf("line %d: %s\n",__LINE__,str); }while (0)
|
|
|
|
#define todo_wine
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const char szmspath[] = "\\\\.\\mailslot\\wine_mailslot_test";
|
|
|
|
|
|
|
|
int mailslot_test()
|
|
|
|
{
|
|
|
|
HANDLE hSlot, hSlot2, hWriter, hWriter2;
|
|
|
|
unsigned char buffer[16];
|
|
|
|
DWORD count, dwMax, dwNext, dwMsgCount, dwTimeout;
|
|
|
|
|
|
|
|
/* sanity check on GetMailslotInfo */
|
|
|
|
dwMax = dwNext = dwMsgCount = dwTimeout = 0;
|
|
|
|
ok( !GetMailslotInfo( INVALID_HANDLE_VALUE, &dwMax, &dwNext,
|
2004-02-06 06:24:34 +01:00
|
|
|
&dwMsgCount, &dwTimeout ), "getmailslotinfo succeeded\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* open a mailslot that doesn't exist */
|
|
|
|
hWriter = CreateFile(szmspath, GENERIC_READ|GENERIC_WRITE,
|
|
|
|
FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hWriter == INVALID_HANDLE_VALUE, "non-existing mailslot\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* open a mailslot without the right name */
|
|
|
|
hSlot = CreateMailslot( "blah", 0, 0, NULL );
|
|
|
|
ok( hSlot == INVALID_HANDLE_VALUE,
|
2004-02-06 06:24:34 +01:00
|
|
|
"Created mailslot with invalid name\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
todo_wine
|
|
|
|
{
|
|
|
|
ok( GetLastError() == ERROR_INVALID_NAME,
|
2004-02-06 06:24:34 +01:00
|
|
|
"error should be ERROR_INVALID_NAME\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* open a mailslot with a null name */
|
|
|
|
hSlot = CreateMailslot( NULL, 0, 0, NULL );
|
|
|
|
ok( hSlot == INVALID_HANDLE_VALUE,
|
2004-02-06 06:24:34 +01:00
|
|
|
"Created mailslot with invalid name\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
todo_wine
|
|
|
|
{
|
|
|
|
ok( GetLastError() == ERROR_PATH_NOT_FOUND,
|
2004-02-06 06:24:34 +01:00
|
|
|
"error should be ERROR_PATH_NOT_FOUND\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
todo_wine
|
|
|
|
{
|
|
|
|
/* valid open, but with wacky parameters ... then check them */
|
|
|
|
hSlot = CreateMailslot( szmspath, -1, -1, NULL );
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hSlot != INVALID_HANDLE_VALUE , "mailslot with valid name failed\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
dwMax = dwNext = dwMsgCount = dwTimeout = 0;
|
|
|
|
ok( GetMailslotInfo( hSlot, &dwMax, &dwNext, &dwMsgCount, &dwTimeout ),
|
2004-02-06 06:24:34 +01:00
|
|
|
"getmailslotinfo failed\n");
|
|
|
|
ok( dwMax == -1, "dwMax incorrect\n");
|
|
|
|
ok( dwNext == MAILSLOT_NO_MESSAGE, "dwNext incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( dwMsgCount == 0, "dwMsgCount incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
todo_wine
|
|
|
|
{
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( dwTimeout == -1, "dwTimeout incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
ok( GetMailslotInfo( hSlot, NULL, NULL, NULL, NULL ),
|
2004-02-06 06:24:34 +01:00
|
|
|
"getmailslotinfo failed\n");
|
|
|
|
ok( CloseHandle(hSlot), "failed to close mailslot\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
todo_wine
|
|
|
|
{
|
|
|
|
/* now open it for real */
|
|
|
|
hSlot = CreateMailslot( szmspath, 0, 0, NULL );
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hSlot != INVALID_HANDLE_VALUE , "valid mailslot failed\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* try and read/write to it */
|
|
|
|
count = 0;
|
|
|
|
memset(buffer, 0, sizeof buffer);
|
|
|
|
ok( !ReadFile( hSlot, buffer, sizeof buffer, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"slot read\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
ok( !WriteFile( hSlot, buffer, sizeof buffer, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"slot write\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* now try and openthe client, but with the wrong sharing mode */
|
|
|
|
hWriter = CreateFile(szmspath, GENERIC_READ|GENERIC_WRITE,
|
|
|
|
0, NULL, OPEN_EXISTING, 0, NULL);
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hWriter == INVALID_HANDLE_VALUE, "bad sharing mode\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
todo_wine
|
|
|
|
{
|
|
|
|
ok( GetLastError() == ERROR_SHARING_VIOLATION,
|
2004-02-06 06:24:34 +01:00
|
|
|
"error should be ERROR_SHARING_VIOLATION\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* now open the client with the correct sharing mode */
|
|
|
|
hWriter = CreateFile(szmspath, GENERIC_READ|GENERIC_WRITE,
|
|
|
|
FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hWriter != INVALID_HANDLE_VALUE, "existing mailslot\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* opening a client should make no difference to
|
|
|
|
* whether we can read or write the mailslot
|
|
|
|
*/
|
|
|
|
ok( !ReadFile( hSlot, buffer, sizeof buffer/2, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"slot read\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
ok( !WriteFile( hSlot, buffer, sizeof buffer/2, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"slot write\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* we can't read from this client,
|
|
|
|
* but we should be able to write to it
|
|
|
|
*/
|
|
|
|
ok( !ReadFile( hWriter, buffer, sizeof buffer/2, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"can read client\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
todo_wine
|
|
|
|
{
|
|
|
|
ok( WriteFile( hWriter, buffer, sizeof buffer/2, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"can't write client\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
|
|
|
ok( !ReadFile( hWriter, buffer, sizeof buffer/2, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"can read client\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* seeing as there's something in the slot,
|
|
|
|
* we should be able to read it once
|
|
|
|
*/
|
|
|
|
todo_wine
|
|
|
|
{
|
|
|
|
ok( ReadFile( hSlot, buffer, sizeof buffer, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"slot read\n");
|
|
|
|
ok( count == (sizeof buffer/2), "short read\n" );
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* but not again */
|
|
|
|
ok( !ReadFile( hSlot, buffer, sizeof buffer, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"slot read\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* now try open another writer... should fail */
|
|
|
|
hWriter2 = CreateFile(szmspath, GENERIC_READ|GENERIC_WRITE,
|
|
|
|
FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hWriter2 == INVALID_HANDLE_VALUE, "two writers\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* now try open another as a reader ... also fails */
|
|
|
|
hWriter2 = CreateFile(szmspath, GENERIC_READ,
|
|
|
|
FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hWriter2 == INVALID_HANDLE_VALUE, "writer + reader\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* now try open another as a writer ... still fails */
|
|
|
|
hWriter2 = CreateFile(szmspath, GENERIC_WRITE,
|
|
|
|
FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hWriter2 == INVALID_HANDLE_VALUE, "writer\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* now open another one */
|
|
|
|
hSlot2 = CreateMailslot( szmspath, 0, 0, NULL );
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hSlot2 == INVALID_HANDLE_VALUE , "opened two mailslots\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
todo_wine
|
|
|
|
{
|
|
|
|
/* close the client again */
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( CloseHandle( hWriter ), "closing the client\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* now try reopen it with slightly different permissions ...
|
|
|
|
* shared writing
|
|
|
|
*/
|
|
|
|
hWriter = CreateFile(szmspath, GENERIC_WRITE,
|
|
|
|
FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hWriter != INVALID_HANDLE_VALUE, "sharing writer\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* now try open another as a writer ...
|
|
|
|
* but don't share with the first ... fail
|
|
|
|
*/
|
|
|
|
hWriter2 = CreateFile(szmspath, GENERIC_WRITE,
|
|
|
|
FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hWriter2 == INVALID_HANDLE_VALUE, "greedy writer succeeded\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
todo_wine
|
|
|
|
{
|
|
|
|
/* now try open another as a writer ... and share with the first */
|
|
|
|
hWriter2 = CreateFile(szmspath, GENERIC_WRITE,
|
|
|
|
FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( hWriter2 != INVALID_HANDLE_VALUE, "2nd sharing writer\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* check the mailslot info */
|
|
|
|
dwMax = dwNext = dwMsgCount = dwTimeout = 0;
|
|
|
|
ok( GetMailslotInfo( hSlot, &dwMax, &dwNext, &dwMsgCount, &dwTimeout ),
|
2004-02-06 06:24:34 +01:00
|
|
|
"getmailslotinfo failed\n");
|
|
|
|
ok( dwNext == MAILSLOT_NO_MESSAGE, "dwNext incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( dwMax == 0, "dwMax incorrect\n");
|
|
|
|
ok( dwMsgCount == 0, "dwMsgCount incorrect\n");
|
|
|
|
ok( dwTimeout == 0, "dwTimeout incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* check there's still no data */
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( !ReadFile( hSlot, buffer, sizeof buffer, &count, NULL), "slot read\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* write two messages */
|
|
|
|
todo_wine
|
|
|
|
{
|
|
|
|
buffer[0] = 'a';
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( WriteFile( hWriter, buffer, 1, &count, NULL), "1st write failed\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* check the mailslot info */
|
|
|
|
dwNext = dwMsgCount = 0;
|
|
|
|
ok( GetMailslotInfo( hSlot, NULL, &dwNext, &dwMsgCount, NULL ),
|
2004-02-06 06:24:34 +01:00
|
|
|
"getmailslotinfo failed\n");
|
|
|
|
ok( dwNext == 1, "dwNext incorrect\n");
|
|
|
|
ok( dwMsgCount == 1, "dwMsgCount incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
buffer[0] = 'b';
|
|
|
|
buffer[1] = 'c';
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( WriteFile( hWriter2, buffer, 2, &count, NULL), "2nd write failed\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* check the mailslot info */
|
|
|
|
dwNext = dwMsgCount = 0;
|
|
|
|
ok( GetMailslotInfo( hSlot, NULL, &dwNext, &dwMsgCount, NULL ),
|
2004-02-06 06:24:34 +01:00
|
|
|
"getmailslotinfo failed\n");
|
|
|
|
ok( dwNext == 1, "dwNext incorrect\n");
|
|
|
|
ok( dwMsgCount == 2, "dwMsgCount incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* write a 3rd message with zero size */
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( WriteFile( hWriter2, buffer, 0, &count, NULL), "3rd write failed\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* check the mailslot info */
|
|
|
|
dwNext = dwMsgCount = 0;
|
|
|
|
ok( GetMailslotInfo( hSlot, NULL, &dwNext, &dwMsgCount, NULL ),
|
2004-02-06 06:24:34 +01:00
|
|
|
"getmailslotinfo failed\n");
|
|
|
|
ok( dwNext == 1, "dwNext incorrect\n");
|
|
|
|
ok( dwMsgCount == 3, "dwMsgCount incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
buffer[0]=buffer[1]=0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* then check that they come out with the correct order and size,
|
|
|
|
* then the slot is empty
|
|
|
|
*/
|
|
|
|
ok( ReadFile( hSlot, buffer, sizeof buffer, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"1st slot read failed\n");
|
|
|
|
ok( count == 1, "failed to get 1st message\n");
|
|
|
|
ok( buffer[0] == 'a', "1st message wrong\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* check the mailslot info */
|
|
|
|
dwNext = dwMsgCount = 0;
|
|
|
|
ok( GetMailslotInfo( hSlot, NULL, &dwNext, &dwMsgCount, NULL ),
|
2004-02-06 06:24:34 +01:00
|
|
|
"getmailslotinfo failed\n");
|
|
|
|
ok( dwNext == 2, "dwNext incorrect\n");
|
|
|
|
ok( dwMsgCount == 2, "dwMsgCount incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* read the second message */
|
|
|
|
ok( ReadFile( hSlot, buffer, sizeof buffer, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"2nd slot read failed\n");
|
|
|
|
ok( count == 2, "failed to get 2nd message\n");
|
|
|
|
ok( ( buffer[0] == 'b' ) && ( buffer[1] == 'c' ), "2nd message wrong\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* check the mailslot info */
|
|
|
|
dwNext = dwMsgCount = 0;
|
|
|
|
ok( GetMailslotInfo( hSlot, NULL, &dwNext, &dwMsgCount, NULL ),
|
2004-02-06 06:24:34 +01:00
|
|
|
"getmailslotinfo failed\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( dwNext == 0, "dwNext incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
todo_wine
|
|
|
|
{
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( dwMsgCount == 1, "dwMsgCount incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* read the 3rd (zero length) message */
|
|
|
|
ok( ReadFile( hSlot, buffer, sizeof buffer, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"3rd slot read failed\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( count == 0, "failed to get 3rd message\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* now there should be no more messages
|
|
|
|
* check the mailslot info
|
|
|
|
*/
|
|
|
|
todo_wine
|
|
|
|
{
|
|
|
|
dwNext = dwMsgCount = 0;
|
|
|
|
ok( GetMailslotInfo( hSlot, NULL, &dwNext, &dwMsgCount, NULL ),
|
2004-02-06 06:24:34 +01:00
|
|
|
"getmailslotinfo failed\n");
|
|
|
|
ok( dwNext == MAILSLOT_NO_MESSAGE, "dwNext incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( dwMsgCount == 0, "dwMsgCount incorrect\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* check that reads fail */
|
|
|
|
ok( !ReadFile( hSlot, buffer, sizeof buffer, &count, NULL),
|
2004-02-06 06:24:34 +01:00
|
|
|
"3rd slot read succeeded\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
|
|
|
|
/* finally close the mailslot and its client */
|
|
|
|
todo_wine
|
|
|
|
{
|
2004-02-06 06:24:34 +01:00
|
|
|
ok( CloseHandle( hWriter2 ), "closing 2nd client\n");
|
|
|
|
ok( CloseHandle( hWriter ), "closing the client\n");
|
|
|
|
ok( CloseHandle( hSlot ), "closing the mailslot\n");
|
2003-10-31 00:24:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
START_TEST(mailslot)
|
|
|
|
{
|
|
|
|
mailslot_test();
|
|
|
|
}
|