forked from winfsp/winfsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath-test.c
138 lines (130 loc) · 3.21 KB
/
path-test.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/**
* @file path-test.c
*
* @copyright 2015-2019 Bill Zissimopoulos
*/
/*
* This file is part of WinFsp.
*
* You can redistribute it and/or modify it under the terms of the GNU
* General Public License version 3 as published by the Free Software
* Foundation.
*
* Licensees holding a valid commercial license may use this software
* in accordance with the commercial license agreement provided in
* conjunction with the software. The terms and conditions of any such
* commercial license agreement shall govern, supersede, and render
* ineffective any application of the GPLv3 license to this software,
* notwithstanding of any reference thereto in the software or
* associated repository.
*/
#include <winfsp/winfsp.h>
#include <tlib/testsuite.h>
#include "winfsp-tests.h"
void path_prefix_test(void)
{
PWSTR ipaths[] =
{
L"",
L"\\",
L"\\\\",
L"\\a",
L"\\\\a",
L"\\\\a\\",
L"\\\\a\\\\",
L"a\\",
L"a\\\\",
L"a\\b",
L"a\\\\b",
L"foo\\\\\\bar\\\\baz",
L"foo\\\\\\bar\\\\baz\\",
L"foo\\\\\\bar\\\\baz\\\\",
L"foo",
};
PWSTR opaths[] =
{
L"", L"",
L"ROOT", L"",
L"ROOT", L"",
L"ROOT", L"a",
L"ROOT", L"a",
L"ROOT", L"a\\",
L"ROOT", L"a\\\\",
L"a", L"",
L"a", L"",
L"a", L"b",
L"a", L"b",
L"foo", L"bar\\\\baz",
L"foo", L"bar\\\\baz\\",
L"foo", L"bar\\\\baz\\\\",
L"foo", L"",
};
for (size_t i = 0; sizeof ipaths / sizeof ipaths[0] > i; i++)
{
PWSTR Prefix, Remain;
WCHAR buf[32];
wcscpy_s(buf, 32, ipaths[i]);
FspPathPrefix(buf, &Prefix, &Remain, L"ROOT");
ASSERT(0 == wcscmp(opaths[2 * i + 0], Prefix));
ASSERT(0 == wcscmp(opaths[2 * i + 1], Remain));
FspPathCombine(buf, Remain);
ASSERT(0 == wcscmp(ipaths[i], buf));
}
}
void path_suffix_test(void)
{
PWSTR ipaths[] =
{
L"",
L"\\",
L"\\\\",
L"\\a",
L"\\\\a",
L"\\\\a\\",
L"\\\\a\\\\",
L"a\\",
L"a\\\\",
L"a\\b",
L"a\\\\b",
L"foo\\\\\\bar\\\\baz",
L"foo\\\\\\bar\\\\baz\\",
L"foo\\\\\\bar\\\\baz\\\\",
L"foo",
};
PWSTR opaths[] =
{
L"", L"",
L"ROOT", L"",
L"ROOT", L"",
L"ROOT", L"a",
L"ROOT", L"a",
L"\\\\a", L"",
L"\\\\a", L"",
L"a", L"",
L"a", L"",
L"a", L"b",
L"a", L"b",
L"foo\\\\\\bar", L"baz",
L"foo\\\\\\bar\\\\baz", L"",
L"foo\\\\\\bar\\\\baz", L"",
L"foo", L"",
};
for (size_t i = 0; sizeof ipaths / sizeof ipaths[0] > i; i++)
{
PWSTR Remain, Suffix;
WCHAR buf[32];
wcscpy_s(buf, 32, ipaths[i]);
FspPathSuffix(buf, &Remain, &Suffix, L"ROOT");
ASSERT(0 == wcscmp(opaths[2 * i + 0], Remain));
ASSERT(0 == wcscmp(opaths[2 * i + 1], Suffix));
FspPathCombine(buf, Suffix);
ASSERT(0 == wcscmp(ipaths[i], buf));
}
}
void path_tests(void)
{
if (OptExternal)
return;
TEST(path_prefix_test);
TEST(path_suffix_test);
}