forked from reactos/reactos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ROSTESTS] Add Pipes test based on the Kernel32 ReadFile work
- Loading branch information
Showing
3 changed files
with
122 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
/* | ||
* PROJECT: ReactOS api tests | ||
* LICENSE: GNU GPLv2 only as published by the Free Software Foundation | ||
* PURPOSE: Test for pipe (CORE-17376) | ||
* PROGRAMMER: Simone Mario Lombardo | ||
*/ | ||
|
||
#include "precomp.h" | ||
|
||
#define LP TEXT("\\\\.\\pipe\\rostest_pipe") | ||
|
||
#define MINBUFFERSIZE 1 | ||
#define MAXBUFFERSIZE 255 | ||
|
||
static DWORD dReadBufferSize; | ||
|
||
DWORD | ||
WINAPI | ||
PipeWriter( | ||
LPVOID lpParam) | ||
{ | ||
DWORD cbWritten; | ||
HANDLE hPipe; | ||
NTSTATUS lastError; | ||
BOOL returnStatus; | ||
LPSTR lpsInMsg = "Test"; | ||
|
||
hPipe = CreateFile(LP, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, | ||
NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); | ||
ok(hPipe != INVALID_HANDLE_VALUE, "CreateFile failed, results might not be accurate\n"); | ||
if (hPipe != INVALID_HANDLE_VALUE) | ||
{ | ||
Sleep(1000); | ||
returnStatus = WriteFile(hPipe, &lpsInMsg, 4, &cbWritten, (LPOVERLAPPED) NULL); | ||
lastError = GetLastError(); | ||
|
||
ok(returnStatus, "Pipe's WriteFile returned FALSE, instead of expected TRUE\n"); | ||
if(lastError != 0) | ||
trace("Last Error = 0x%lX\n",lastError); | ||
|
||
ok(cbWritten > 0,"Pipe's Writefile has lpNumberOfBytesWritten <= 0\n"); | ||
|
||
CloseHandle(hPipe); | ||
} | ||
return 0; | ||
} | ||
|
||
DWORD | ||
WINAPI | ||
PipeReader( | ||
LPVOID lpParam) | ||
{ | ||
HANDLE hPipe; | ||
DWORD cbRead; | ||
HANDLE hThread; | ||
NTSTATUS lastError; | ||
BOOL returnStatus; | ||
char lpsOutMsg[MAXBUFFERSIZE]; | ||
|
||
hPipe = CreateNamedPipeA(LP, PIPE_ACCESS_DUPLEX, PIPE_TYPE_MESSAGE|PIPE_READMODE_MESSAGE,1,MAXBUFFERSIZE,MAXBUFFERSIZE,0,NULL); | ||
ok(hPipe != INVALID_HANDLE_VALUE, "CreateNamedPipeA failed\n"); | ||
if (hPipe != INVALID_HANDLE_VALUE) | ||
{ | ||
hThread = CreateThread(NULL,0, PipeWriter, NULL, 0, NULL); | ||
ok(hThread != INVALID_HANDLE_VALUE, "CreateThread failed\n"); | ||
if (hThread != INVALID_HANDLE_VALUE) | ||
{ | ||
Sleep(1000); | ||
returnStatus = ReadFile(hPipe, &lpsOutMsg, dReadBufferSize, &cbRead, NULL); | ||
lastError = GetLastError(); | ||
|
||
if(dReadBufferSize == MINBUFFERSIZE) | ||
ok(!returnStatus, "Pipe's ReadFile returned TRUE, instead of expected FALSE\n"); | ||
else{ | ||
ok(returnStatus, "Pipe's ReadFile returned FALSE, instead of expected TRUE\n"); | ||
if(lastError != 0) | ||
trace("Last Error = 0x%lX\n",lastError); | ||
} | ||
|
||
ok(cbRead > 0,"Pipe's Readfile has lpNumberOfBytesRead <= 0\n"); | ||
|
||
if(dReadBufferSize == MINBUFFERSIZE) | ||
ok(lastError == ERROR_MORE_DATA, "Pipe's ReadFile last error is unexpected\n"); | ||
|
||
WaitForSingleObject(hThread, INFINITE); | ||
CloseHandle(hThread); | ||
} | ||
CloseHandle(hPipe); | ||
} | ||
return 0; | ||
} | ||
|
||
VOID | ||
StartTestCORE17376(DWORD adReadBufferSize) | ||
{ | ||
HANDLE hThread; | ||
|
||
trace("adReadBufferSize = %ld - START\n",adReadBufferSize); | ||
|
||
dReadBufferSize = adReadBufferSize; | ||
|
||
hThread = CreateThread(NULL,0, PipeReader, NULL, 0, NULL); | ||
ok(hThread != INVALID_HANDLE_VALUE, "CreateThread failed\n"); | ||
if (hThread != INVALID_HANDLE_VALUE) | ||
{ | ||
WaitForSingleObject(hThread, INFINITE); | ||
CloseHandle(hThread); | ||
} | ||
|
||
trace("adReadBufferSize = %ld - COMPLETED\n",adReadBufferSize); | ||
} | ||
|
||
START_TEST(Pipes) | ||
{ | ||
StartTestCORE17376(MINBUFFERSIZE); | ||
StartTestCORE17376(MAXBUFFERSIZE); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters