mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
3c7c94a174
- Consistent email address is consistent. svn path=/trunk/; revision=60631
118 lines
3.6 KiB
C
118 lines
3.6 KiB
C
/*
|
|
* PROJECT: ReactOS kernel-mode tests
|
|
* LICENSE: GPLv2+ - See COPYING in the top level directory
|
|
* PURPOSE: Test for FindFirstFile's wildcard substitution
|
|
* PROGRAMMER: Thomas Faber <thomas.faber@reactos.org>
|
|
*/
|
|
|
|
#include <kmt_test.h>
|
|
|
|
#include "FindFile.h"
|
|
|
|
START_TEST(FindFile)
|
|
{
|
|
HANDLE FindHandle;
|
|
WIN32_FIND_DATAW FindData;
|
|
struct
|
|
{
|
|
PCWSTR Expression;
|
|
PCWSTR ExpectedExpression;
|
|
} Tests[] =
|
|
{
|
|
{ L"Hello", L"Hello" },
|
|
|
|
{ L"*", L"*" },
|
|
{ L"a*", L"a*" },
|
|
{ L"*a", L"*a" },
|
|
{ L"a*a", L"a*a" },
|
|
{ L"**", L"**" },
|
|
{ L"*a*", L"*a*" },
|
|
{ L"a*a*a", L"a*a*a" },
|
|
|
|
{ L"*.*", L"*" },
|
|
{ L"a*.*", L"a<\"*" },
|
|
{ L"*.*a", L"<\"*a" },
|
|
{ L"a*.*a", L"a<\"*a" },
|
|
{ L"*.**.*", L"<\"*<\"*" },
|
|
{ L"*.*a*.*", L"<\"*a<\"*" },
|
|
{ L"a*.*a*.*a", L"a<\"*a<\"*a" },
|
|
|
|
{ L".*", L"\"*" },
|
|
{ L"a.*", L"a\"*" },
|
|
{ L".*a", L"\"*a" },
|
|
{ L"a.*a", L"a\"*a" },
|
|
{ L".*.*", L"\"<\"*" },
|
|
{ L".*a.*", L"\"*a\"*" },
|
|
{ L"a.*a.*a", L"a\"*a\"*a" },
|
|
|
|
{ L"*.", L"<" },
|
|
{ L"a*.", L"a<" },
|
|
{ L"*.a", L"<.a" },
|
|
{ L"a*.a", L"a<.a" },
|
|
{ L"*.*.", L"*" },
|
|
{ L"*.a*.", L"<.a<" },
|
|
{ L"a*.a*.a", L"a<.a<.a" },
|
|
|
|
{ L"?", L">" },
|
|
{ L"a?", L"a>" },
|
|
{ L"?a", L">a" },
|
|
{ L"a?a", L"a>a" },
|
|
{ L"??", L">>" },
|
|
{ L"?a?", L">a>" },
|
|
{ L"a?a?a", L"a>a>a" },
|
|
|
|
{ L"?.?", L">\">" },
|
|
{ L"a?.?", L"a>\">" },
|
|
{ L"?.?a", L">\">a" },
|
|
{ L"a?.?a", L"a>\">a" },
|
|
{ L"?.??.?", L">\">>\">" },
|
|
{ L"?.?a?.?", L">\">a>\">" },
|
|
{ L"a?.?a?.?a", L"a>\">a>\">a" },
|
|
|
|
{ L".?", L"\">" },
|
|
{ L"a.?", L"a\">" },
|
|
{ L".?a", L"\">a" },
|
|
{ L"a.?a", L"a\">a" },
|
|
{ L".?.?", L"\">\">" },
|
|
{ L".?a.?", L"\">a\">" },
|
|
{ L"a.?a.?a", L"a\">a\">a" },
|
|
|
|
{ L"?.", L">" },
|
|
{ L"a?.", L"a>" },
|
|
{ L"?.a", L">.a" },
|
|
{ L"a?.a", L"a>.a" },
|
|
{ L"?.?.", L">\">" },
|
|
{ L"?.a?.", L">.a>" },
|
|
{ L"a?.a?.a", L"a>.a>.a" },
|
|
|
|
{ L"f*.", L"f<" },
|
|
{ L"f.*", L"f\"*" },
|
|
{ L"f*.*", L"f<\"*" },
|
|
{ L"f*.f*", L"f<.f*" },
|
|
{ L"f*f.*", L"f*f\"*" },
|
|
{ L"f*.*f", L"f<\"*f" },
|
|
|
|
/* TODO: add more. Have fun */
|
|
};
|
|
const INT TestCount = sizeof(Tests) / sizeof(Tests[0]);
|
|
INT i;
|
|
WCHAR ExpressionBuffer[MAX_PATH];
|
|
|
|
KmtLoadDriver(L"FindFile", FALSE);
|
|
KmtOpenDriver();
|
|
|
|
for (i = 0; i < TestCount; i++)
|
|
{
|
|
trace("[%d] '%ls', '%ls'\n", i, Tests[i].Expression, Tests[i].ExpectedExpression);
|
|
KmtSendWStringToDriver(IOCTL_EXPECT, Tests[i].ExpectedExpression);
|
|
wcscpy(ExpressionBuffer, L"\\\\.\\Global\\GLOBALROOT\\Device\\Kmtest-FindFile\\");
|
|
wcscat(ExpressionBuffer, Tests[i].Expression);
|
|
FindHandle = FindFirstFileW(ExpressionBuffer, &FindData);
|
|
ok(FindHandle != NULL && FindHandle != INVALID_HANDLE_VALUE, "Handle: %p, error=%lu\n", (PVOID)FindHandle, GetLastError());
|
|
if (FindHandle != INVALID_HANDLE_VALUE)
|
|
FindClose(FindHandle);
|
|
}
|
|
|
|
KmtCloseDriver();
|
|
KmtUnloadDriver();
|
|
}
|