forked from carbon-language/carbon-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathset_test.cpp
437 lines (369 loc) · 14.2 KB
/
set_test.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#include "common/set.h"
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <initializer_list>
#include <type_traits>
#include <vector>
#include "common/raw_hashtable_test_helpers.h"
namespace Carbon {
namespace {
using RawHashtable::IndexKeyContext;
using RawHashtable::MoveOnlyTestData;
using RawHashtable::TestData;
using ::testing::UnorderedElementsAreArray;
template <typename SetT, typename MatcherRangeT>
auto ExpectSetElementsAre(SetT&& s, MatcherRangeT element_matchers) -> void {
// Collect the elements into a container.
using KeyT = typename std::remove_reference<SetT>::type::KeyT;
std::vector<std::reference_wrapper<KeyT>> entries;
s.ForEach([&entries](KeyT& k) { entries.push_back(std::ref(k)); });
// Use the GoogleMock unordered container matcher to validate and show errors
// on wrong elements.
EXPECT_THAT(entries, UnorderedElementsAreArray(element_matchers));
}
// Allow directly using an initializer list.
template <typename SetT, typename MatcherT>
auto ExpectSetElementsAre(SetT&& s,
std::initializer_list<MatcherT> element_matchers)
-> void {
std::vector<MatcherT> element_matchers_storage = element_matchers;
ExpectSetElementsAre(s, element_matchers_storage);
}
template <typename RangeT, typename... RangeTs>
auto MakeElements(RangeT&& range, RangeTs&&... ranges) {
std::vector<typename RangeT::value_type> elements;
auto add_range = [&elements](RangeT&& r) {
for (const auto&& e : r) {
elements.push_back(e);
}
};
add_range(std::forward<RangeT>(range));
(add_range(std::forward<RangeT>(ranges)), ...);
return elements;
}
template <typename SetT>
class SetTest : public ::testing::Test {};
template <typename SetT>
class MoveOnlySetTest : public ::testing::Test {};
using Types = ::testing::Types<Set<int>, Set<int, 16>, Set<int, 128>,
Set<TestData>, Set<TestData, 16>>;
TYPED_TEST_SUITE(SetTest, Types);
using MoveOnlyTypes =
::testing::Types<Set<MoveOnlyTestData>, Set<MoveOnlyTestData, 16>,
Set<MoveOnlyTestData, 64>>;
TYPED_TEST_SUITE(MoveOnlySetTest, MoveOnlyTypes);
TYPED_TEST(SetTest, Basic) {
using SetT = TypeParam;
SetT s;
EXPECT_FALSE(s.Contains(42));
EXPECT_TRUE(s.Insert(1).is_inserted());
EXPECT_TRUE(s.Contains(1));
auto result = s.Lookup(1);
EXPECT_TRUE(result);
EXPECT_EQ(1, result.key());
auto i_result = s.Insert(1);
EXPECT_FALSE(i_result.is_inserted());
EXPECT_TRUE(s.Contains(1));
// Verify all the elements.
ExpectSetElementsAre(s, {1});
// Fill up a bunch to ensure we trigger growth a few times.
for (int i : llvm::seq(2, 512)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
EXPECT_TRUE(s.Insert(i).is_inserted());
}
for (int i : llvm::seq(1, 512)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
EXPECT_TRUE(s.Contains(i));
EXPECT_FALSE(s.Insert(i).is_inserted());
}
EXPECT_FALSE(s.Contains(513));
// Verify all the elements.
ExpectSetElementsAre(s, MakeElements(llvm::seq(1, 512)));
}
TYPED_TEST(SetTest, FactoryApi) {
using SetT = TypeParam;
SetT s;
EXPECT_TRUE(s.Insert(1, [](int k, void* key_storage) {
return new (key_storage) int(k);
}).is_inserted());
ASSERT_TRUE(s.Contains(1));
// Reinsertion doesn't invoke the callback.
EXPECT_FALSE(s.Insert(1, [](int, void*) -> int* {
llvm_unreachable("Should never be called!");
}).is_inserted());
}
TYPED_TEST(SetTest, Copy) {
using SetT = TypeParam;
SetT s;
// Make sure we exceed the small size for some of the set types, but not all
// of them, so we cover all the combinations of copying between small and
// large.
for (int i : llvm::seq(1, 24)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Insert(i).is_inserted());
}
SetT other_s1 = s;
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 24)));
// Add some more elements to the original.
for (int i : llvm::seq(24, 32)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Insert(i).is_inserted());
}
// The first copy doesn't change.
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 24)));
// A new copy does.
SetT other_s2 = s;
ExpectSetElementsAre(other_s2, MakeElements(llvm::seq(1, 32)));
// Copy-assign updates.
other_s1 = s;
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 32)));
// Self-assign is a no-op.
other_s1 = const_cast<const SetT&>(other_s1);
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 32)));
// But mutating original still doesn't change copies.
for (int i : llvm::seq(32, 48)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Insert(i).is_inserted());
}
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 32)));
ExpectSetElementsAre(other_s2, MakeElements(llvm::seq(1, 32)));
}
TYPED_TEST(SetTest, Move) {
using SetT = TypeParam;
SetT s;
// Make sure we exceed the small size for some of the set types, but not all
// of them, so we cover all the combinations of copying between small and
// large.
for (int i : llvm::seq(1, 24)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
EXPECT_TRUE(s.Insert(i).is_inserted());
}
SetT other_s1 = std::move(s);
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 24)));
// Add some more elements.
for (int i : llvm::seq(24, 32)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(other_s1.Insert(i).is_inserted());
}
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 32)));
// Move back over a moved-from.
s = std::move(other_s1);
ExpectSetElementsAre(s, MakeElements(llvm::seq(1, 32)));
// Copy over moved-from state also works.
other_s1 = s;
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 32)));
// Now add still more elements.
for (int i : llvm::seq(32, 48)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(other_s1.Insert(i).is_inserted());
}
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 48)));
// Move-assign over the copy looks like the moved-from table not the copy.
other_s1 = std::move(s);
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 32)));
// Self-swap (which does a self-move) works and is a no-op.
std::swap(other_s1, other_s1);
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 32)));
// Test copying of a moved-from table over a valid table and
// self-move-assign. The former is required to be valid, and the latter is
// in at least the case of self-move-assign-when-moved-from, but the result
// can be in any state so just do them and ensure we don't crash.
SetT other_s2 = other_s1;
// NOLINTNEXTLINE(bugprone-use-after-move): Testing required use-after-move.
other_s2 = s;
other_s1 = std::move(other_s1);
s = std::move(s);
}
TYPED_TEST(MoveOnlySetTest, Move) {
using SetT = TypeParam;
static_assert(!std::is_copy_assignable_v<SetT>);
static_assert(!std::is_copy_constructible_v<SetT>);
static_assert(std::is_move_assignable_v<SetT>);
static_assert(std::is_move_constructible_v<SetT>);
auto make_set = [] {
SetT s;
// Make sure we exceed the small size for some of the set types, but not all
// of them, so we cover all the combinations of copying between small and
// large.
for (int i : llvm::seq(1, 24)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
EXPECT_TRUE(s.Insert(i).is_inserted());
}
return s;
};
SetT s = make_set();
SetT other_s1 = std::move(s);
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 24)));
// Add some more elements.
for (int i : llvm::seq(24, 32)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(other_s1.Insert(i).is_inserted());
}
ExpectSetElementsAre(other_s1, MakeElements(llvm::seq(1, 32)));
// Move back over a moved-from.
s = std::move(other_s1);
ExpectSetElementsAre(s, MakeElements(llvm::seq(1, 32)));
// Now add still more elements, crossing the small size limit for all tested
// map types.
for (int i : llvm::seq(32, 72)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Insert(i).is_inserted());
}
ExpectSetElementsAre(s, MakeElements(llvm::seq(1, 72)));
// Assignment replaces the contents.
s = make_set();
ExpectSetElementsAre(s, MakeElements(llvm::seq(1, 24)));
// Self-swap (which does a self-move) works and is a no-op.
std::swap(s, s);
ExpectSetElementsAre(s, MakeElements(llvm::seq(1, 24)));
}
TYPED_TEST(SetTest, Conversions) {
using SetT = TypeParam;
using KeyT = SetT::KeyT;
SetT s;
ASSERT_TRUE(s.Insert(1).is_inserted());
ASSERT_TRUE(s.Insert(2).is_inserted());
ASSERT_TRUE(s.Insert(3).is_inserted());
ASSERT_TRUE(s.Insert(4).is_inserted());
SetView<KeyT> sv = s;
SetView<const KeyT> csv = sv;
SetView<const KeyT> csv2 = s;
EXPECT_TRUE(sv.Contains(1));
EXPECT_TRUE(csv.Contains(2));
EXPECT_TRUE(csv2.Contains(3));
}
TYPED_TEST(SetTest, GrowToAllocSize) {
using SetT = TypeParam;
SetT s;
// Grow when empty. May be a no-op for some small sizes.
s.GrowToAllocSize(32);
// Add some elements that will need to be propagated through subsequent
// growths. Also delete some.
ssize_t storage_bytes = s.ComputeMetrics().storage_bytes;
for (int i : llvm::seq(1, 24)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Insert(i).is_inserted());
}
for (int i : llvm::seq(1, 8)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Erase(i));
}
// No further growth triggered.
EXPECT_EQ(storage_bytes, s.ComputeMetrics().storage_bytes);
// No-op.
s.GrowToAllocSize(16);
ExpectSetElementsAre(s, MakeElements(llvm::seq(8, 24)));
// No further growth triggered.
EXPECT_EQ(storage_bytes, s.ComputeMetrics().storage_bytes);
// Get a few doubling based growths, and at least one beyond the largest small
// size.
s.GrowToAllocSize(64);
ExpectSetElementsAre(s, MakeElements(llvm::seq(8, 24)));
s.GrowToAllocSize(128);
ExpectSetElementsAre(s, MakeElements(llvm::seq(8, 24)));
s.GrowToAllocSize(256);
ExpectSetElementsAre(s, MakeElements(llvm::seq(8, 24)));
// Update the storage bytes after growth.
EXPECT_LT(storage_bytes, s.ComputeMetrics().storage_bytes);
storage_bytes = s.ComputeMetrics().storage_bytes;
// Add some more, but not enough to trigger further growth, and then grow by
// several more multiples of two to test handling large growth.
for (int i : llvm::seq(24, 48)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Insert(i).is_inserted());
}
for (int i : llvm::seq(8, 16)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Erase(i));
}
// No growth from insertions.
EXPECT_EQ(storage_bytes, s.ComputeMetrics().storage_bytes);
s.GrowToAllocSize(1024);
ExpectSetElementsAre(s, MakeElements(llvm::seq(16, 48)));
// Storage should have grown.
EXPECT_LT(storage_bytes, s.ComputeMetrics().storage_bytes);
}
TYPED_TEST(SetTest, GrowForInsert) {
using SetT = TypeParam;
SetT s;
s.GrowForInsertCount(42);
ssize_t storage_bytes = s.ComputeMetrics().storage_bytes;
for (int i : llvm::seq(1, 42)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Insert(i).is_inserted());
}
ExpectSetElementsAre(s, MakeElements(llvm::seq(1, 42)));
EXPECT_EQ(storage_bytes, s.ComputeMetrics().storage_bytes);
// Erase many elements and grow again for another insert.
for (int i : llvm::seq(1, 32)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Erase(i));
}
s.GrowForInsertCount(42);
storage_bytes = s.ComputeMetrics().storage_bytes;
for (int i : llvm::seq(42, 84)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Insert(i).is_inserted());
}
ExpectSetElementsAre(s, MakeElements(llvm::seq(32, 84)));
EXPECT_EQ(storage_bytes, s.ComputeMetrics().storage_bytes);
// Erase all the elements, then grow for a much larger insertion and insert
// again.
for (int i : llvm::seq(32, 84)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Erase(i));
}
s.GrowForInsertCount(321);
storage_bytes = s.ComputeMetrics().storage_bytes;
for (int i : llvm::seq(128, 321 + 128)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
ASSERT_TRUE(s.Insert(i).is_inserted());
}
ExpectSetElementsAre(s, MakeElements(llvm::seq(128, 321 + 128)));
EXPECT_EQ(storage_bytes, s.ComputeMetrics().storage_bytes);
}
TEST(SetContextTest, Basic) {
llvm::SmallVector<TestData> keys;
for (int i : llvm::seq(0, 513)) {
keys.push_back(i * 100);
}
IndexKeyContext<TestData> key_context(keys);
Set<ssize_t, 0, IndexKeyContext<TestData>> s;
EXPECT_FALSE(s.Contains(42, key_context));
EXPECT_TRUE(s.Insert(1, key_context).is_inserted());
EXPECT_TRUE(s.Contains(1, key_context));
auto result = s.Lookup(TestData(100), key_context);
EXPECT_TRUE(result);
EXPECT_EQ(1, result.key());
auto i_result = s.Insert(1, IndexKeyContext<TestData>(keys));
EXPECT_FALSE(i_result.is_inserted());
EXPECT_TRUE(s.Contains(1, key_context));
EXPECT_TRUE(s.Insert(
TestData(200), [] { return 2; }, key_context)
.is_inserted());
EXPECT_TRUE(s.Contains(2, key_context));
EXPECT_TRUE(s.Contains(TestData(200), key_context));
// Verify all the elements.
ExpectSetElementsAre(s, {1, 2});
// Fill up a bunch to ensure we trigger growth a few times.
for (int i : llvm::seq(3, 512)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
EXPECT_TRUE(s.Insert(i, key_context).is_inserted());
}
for (int i : llvm::seq(1, 512)) {
SCOPED_TRACE(llvm::formatv("Key: {0}", i).str());
EXPECT_TRUE(s.Contains(i, key_context));
EXPECT_FALSE(s.Insert(i, key_context).is_inserted());
}
EXPECT_FALSE(s.Contains(0, key_context));
EXPECT_FALSE(s.Contains(512, key_context));
EXPECT_FALSE(s.Contains(TestData(0), key_context));
EXPECT_FALSE(s.Contains(TestData(51200), key_context));
// Verify all the elements.
ExpectSetElementsAre(s, MakeElements(llvm::seq(1, 512)));
}
} // namespace
} // namespace Carbon