[KMTEST]
[reactos.git] / rostests / drivers / kmtest / ntos_fsrtl.c
1 /*
2 * FsRtl Test
3 *
4 * Copyright 2010 Pierre Schweitzer <pierre.schweitzer@reactos.org>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
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 * Library General Public License for more details.
15 *
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; see the file COPYING.LIB.
18 * If not, write to the Free Software Foundation,
19 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21
22 /* INCLUDES *******************************************************************/
23
24 #include "kmtest.h"
25 #include <ntifs.h>
26
27 #define NDEBUG
28 #include "debug.h"
29
30 /* PRIVATE FUNCTIONS **********************************************************/
31
32 VOID FsRtlIsNameInExpressionTest()
33 {
34 UNICODE_STRING Expression, Name;
35
36 RtlInitUnicodeString(&Expression, L"*");
37 RtlInitUnicodeString(&Name, L"");
38 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
39 RtlInitUnicodeString(&Expression, L"");
40 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
41
42 RtlInitUnicodeString(&Expression, L"ntdll.dll");
43 RtlInitUnicodeString(&Name, L".");
44 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
45 RtlInitUnicodeString(&Name, L"~1");
46 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
47 RtlInitUnicodeString(&Name, L"..");
48 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
49 RtlInitUnicodeString(&Name, L"ntdll.dll");
50 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
51
52 RtlInitUnicodeString(&Expression, L"smss.exe");
53 RtlInitUnicodeString(&Name, L".");
54 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
55 RtlInitUnicodeString(&Name, L"~1");
56 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
57 RtlInitUnicodeString(&Name, L"..");
58 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
59 RtlInitUnicodeString(&Name, L"ntdll.dll");
60 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
61 RtlInitUnicodeString(&Name, L"NTDLL.dll");
62 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
63
64 RtlInitUnicodeString(&Expression, L"nt??krnl.???");
65 RtlInitUnicodeString(&Name, L"ntoskrnl.exe");
66 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
67
68 RtlInitUnicodeString(&Expression, L"he*o");
69 RtlInitUnicodeString(&Name, L"hello");
70 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
71 RtlInitUnicodeString(&Name, L"helo");
72 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
73 RtlInitUnicodeString(&Name, L"hella");
74 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
75
76 RtlInitUnicodeString(&Expression, L"he*");
77 RtlInitUnicodeString(&Name, L"hello");
78 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
79 RtlInitUnicodeString(&Name, L"helo");
80 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
81 RtlInitUnicodeString(&Name, L"hella");
82 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
83
84 RtlInitUnicodeString(&Expression, L"*.cpl");
85 RtlInitUnicodeString(&Name, L"kdcom.dll");
86 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
87 RtlInitUnicodeString(&Name, L"bootvid.dll");
88 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
89 RtlInitUnicodeString(&Name, L"ntoskrnl.exe");
90 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
91
92 RtlInitUnicodeString(&Expression, L".");
93 RtlInitUnicodeString(&Name, L"NTDLL.DLL");
94 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
95
96 RtlInitUnicodeString(&Expression, L"F0_*.*");
97 RtlInitUnicodeString(&Name, L".");
98 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
99 RtlInitUnicodeString(&Name, L"..");
100 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
101 RtlInitUnicodeString(&Name, L"SETUP.EXE");
102 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
103 RtlInitUnicodeString(&Name, L"F0_001");
104 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
105
106 RtlInitUnicodeString(&Expression, L"*.TTF");
107 RtlInitUnicodeString(&Name, L".");
108 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
109 RtlInitUnicodeString(&Name, L"..");
110 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
111 RtlInitUnicodeString(&Name, L"SETUP.INI");
112 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
113
114 RtlInitUnicodeString(&Expression, L"*");
115 RtlInitUnicodeString(&Name, L".");
116 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
117 RtlInitUnicodeString(&Name, L"..");
118 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
119 RtlInitUnicodeString(&Name, L"SETUP.INI");
120 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
121
122 RtlInitUnicodeString(&Expression, L"\"ntoskrnl.exe");
123 RtlInitUnicodeString(&Name, L"ntoskrnl.exe");
124 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
125 RtlInitUnicodeString(&Expression, L"ntoskrnl\"exe");
126 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
127 RtlInitUnicodeString(&Expression, L"ntoskrn\".exe");
128 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
129 RtlInitUnicodeString(&Expression, L"ntoskrn\"\"exe");
130 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
131 RtlInitUnicodeString(&Expression, L"ntoskrnl.\"exe");
132 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == FALSE, "expected FALSE, got TRUE");
133 RtlInitUnicodeString(&Expression, L"ntoskrnl.exe\"");
134 RtlInitUnicodeString(&Name, L"ntoskrnl.exe");
135 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
136 RtlInitUnicodeString(&Name, L"ntoskrnl.exe.");
137 ok(FsRtlIsNameInExpression(&Expression, &Name, FALSE, NULL) == TRUE, "expected TRUE, got FALSE");
138 }
139
140 /* PUBLIC FUNCTIONS ***********************************************************/
141
142 VOID
143 NtoskrnlFsRtlTest(HANDLE KeyHandle)
144 {
145 FsRtlIsNameInExpressionTest();
146
147 FinishTest(KeyHandle, L"FsRtlTest");
148 }