forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPrefixMapTest.cpp
184 lines (157 loc) · 4.6 KB
/
PrefixMapTest.cpp
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#include "swift/Basic/PrefixMap.h"
#include "gtest/gtest.h"
#include "llvm/ADT/SmallString.h"
#include <string>
#include <map>
using namespace swift;
static ArrayRef<char> asArray(StringRef str) {
return ArrayRef<char>(str.begin(), str.end());
}
static StringRef asString(ArrayRef<char> str) {
return StringRef(str.begin(), str.size());
}
namespace {
struct Tester {
std::map<std::string, int> StdMap;
PrefixMap<char, int> PreMap;
Tester() {
assert(PreMap.empty());
}
// Performs an insert operation and tests that the result matches what
// we get from the std::map.
void insert(StringRef key, int value) {
auto stdmapResult = StdMap.insert({key, value});
auto premapResult = PreMap.insert(asArray(key), value);
// Whether or not we modified the map should be the same in both
// implementations.
EXPECT_EQ(stdmapResult.second, premapResult.second);
// If we did insert a new entry, the value at the handle should
// reflect the value we inserted.
if (premapResult.second) {
EXPECT_EQ(value, *premapResult.first);
}
}
// Tests that the result of a findPrefix matches what we expect from
// the std::map.
void find(StringRef key) {
auto stdmapResult = StdMap.lower_bound(key);
while (stdmapResult == StdMap.end() ||
!key.startswith(stdmapResult->first)) {
if (stdmapResult == StdMap.begin()) {
stdmapResult = StdMap.end();
break;
}
--stdmapResult;
}
bool hasStdmapEntry = (stdmapResult != StdMap.end());
auto premapResult = PreMap.findPrefix(asArray(key));
EXPECT_EQ(hasStdmapEntry, bool(premapResult.first));
if (!hasStdmapEntry) return;
assert(key.startswith(stdmapResult->first));
auto stdmapValue = stdmapResult->second;
EXPECT_EQ(stdmapValue, *premapResult.first);
EXPECT_EQ(key.begin() + stdmapResult->first.size(), premapResult.second);
}
// Perform a clear operation. Tests that that actually clears out the map.
void clear() {
StdMap.clear();
PreMap.clear();
EXPECT_TRUE(PreMap.empty());
EXPECT_EQ(0U, PreMap.size());
}
// Validate the map. Primarily tests iteration.
void validate() {
EXPECT_EQ(StdMap.empty(), PreMap.empty());
EXPECT_EQ(StdMap.size(), PreMap.size());
auto si = StdMap.begin(), se = StdMap.end();
auto pi = PreMap.begin(), pe = PreMap.end();
while (true) {
if (si == se) {
EXPECT_TRUE(pi == pe);
return;
}
EXPECT_TRUE(pi != pe);
EXPECT_EQ(si->second, (*pi).getValue());
llvm::SmallString<128> buffer;
EXPECT_EQ(StringRef(si->first), asString((*pi).getKey(buffer)));
++si;
++pi;
}
}
};
}
TEST(PrefixMapTest, Insert) {
PrefixMap<char, int> map;
map.insert(asArray("abcdefghi"), 5);
EXPECT_FALSE(bool(map.findPrefix(asArray("abcdefg")).first));
ArrayRef<char> abcdefghij = asArray("abcdefghij");
auto abcdefghijHandle = map.findPrefix(abcdefghij);
EXPECT_TRUE(bool(abcdefghijHandle.first));
EXPECT_EQ(5, *abcdefghijHandle.first);
EXPECT_EQ(abcdefghij.data() + 9, abcdefghijHandle.second);
}
TEST(PrefixMapTest, Test1) {
Tester tester;
tester.find("");
tester.validate();
tester.insert("", 22096);
tester.validate();
tester.insert("", 20154);
tester.validate();
tester.insert("aezvs", 21441);
tester.validate();
tester.insert("aezvs", 838);
tester.validate();
tester.insert("aezvs", 16768);
tester.validate();
tester.validate();
tester.find("aezvsrmoll");
tester.validate();
tester.insert("aezvsrmoll", 5842);
tester.validate();
tester.find("aezvsrmoll");
tester.validate();
}
TEST(PrefixMapTest, Test2) {
Tester tester;
tester.find("");
tester.validate();
tester.insert("", 22096);
tester.validate();
tester.insert("", 20154);
tester.validate();
tester.insert("aezvs", 21441);
tester.validate();
tester.insert("aezvs", 838);
tester.validate();
tester.insert("aezvs", 16768);
tester.validate();
tester.clear();
tester.validate();
tester.find("aezvsrmoll");
tester.validate();
tester.insert("aezvsrmoll", 5842);
tester.validate();
tester.find("aezvsrmoll");
tester.validate();
}
TEST(PrefixMapTest, Test3) {
Tester tester;
tester.insert("wbuqbtaprrpooqteftzdhjd", 11861);
tester.insert("wbuqbtaprrpooqteftzdhjd", 18531);
tester.find("wbuqbtaprrpooqteftzdhjdqkemtcl");
}
TEST(PrefixMapTest, Test4) {
Tester tester;
tester.find("");
tester.validate();
tester.find("l");
tester.validate();
tester.insert("l", 5943);
tester.validate();
tester.find("l");
tester.validate();
tester.insert("l", 8632);
tester.validate();
tester.find("zguowwnctgmkg");
}