1 //===- llvm/unittest/ADT/SmallSetTest.cpp ------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // SmallSet unit tests.
11 //===----------------------------------------------------------------------===//
13 #include "llvm/ADT/SmallSet.h"
14 #include "llvm/ADT/STLExtras.h"
15 #include "gtest/gtest.h"
20 TEST(SmallSetTest
, Insert
) {
24 for (int i
= 0; i
< 4; i
++)
27 for (int i
= 0; i
< 4; i
++)
30 EXPECT_EQ(4u, s1
.size());
32 for (int i
= 0; i
< 4; i
++)
33 EXPECT_EQ(1u, s1
.count(i
));
35 EXPECT_EQ(0u, s1
.count(4));
38 TEST(SmallSetTest
, Grow
) {
41 for (int i
= 0; i
< 8; i
++)
44 EXPECT_EQ(8u, s1
.size());
46 for (int i
= 0; i
< 8; i
++)
47 EXPECT_EQ(1u, s1
.count(i
));
49 EXPECT_EQ(0u, s1
.count(8));
52 TEST(SmallSetTest
, Erase
) {
55 for (int i
= 0; i
< 8; i
++)
58 EXPECT_EQ(8u, s1
.size());
60 // Remove elements one by one and check if all other elements are still there.
61 for (int i
= 0; i
< 8; i
++) {
62 EXPECT_EQ(1u, s1
.count(i
));
63 EXPECT_TRUE(s1
.erase(i
));
64 EXPECT_EQ(0u, s1
.count(i
));
65 EXPECT_EQ(8u - i
- 1, s1
.size());
66 for (int j
= i
+ 1; j
< 8; j
++)
67 EXPECT_EQ(1u, s1
.count(j
));
70 EXPECT_EQ(0u, s1
.count(8));
73 TEST(SmallSetTest
, IteratorInt
) {
76 // Test the 'small' case.
77 for (int i
= 0; i
< 3; i
++)
80 std::vector
<int> V(s1
.begin(), s1
.end());
81 // Make sure the elements are in the expected order.
83 for (int i
= 0; i
< 3; i
++)
86 // Test the 'big' case by adding a few more elements to switch to std::set
88 for (int i
= 3; i
< 6; i
++)
91 V
.assign(s1
.begin(), s1
.end());
92 // Make sure the elements are in the expected order.
94 for (int i
= 0; i
< 6; i
++)
98 TEST(SmallSetTest
, IteratorString
) {
99 // Test SmallSetIterator for SmallSet with a type with non-trivial
101 SmallSet
<std::string
, 2> s1
;
107 std::vector
<std::string
> V(s1
.begin(), s1
.end());
109 EXPECT_EQ(2u, s1
.size());
110 EXPECT_EQ("str 1", V
[0]);
111 EXPECT_EQ("str 2", V
[1]);
117 V
.assign(s1
.begin(), s1
.end());
118 // Make sure the elements are in the expected order.
120 EXPECT_EQ(4u, s1
.size());
121 EXPECT_EQ("str 0", V
[0]);
122 EXPECT_EQ("str 1", V
[1]);
123 EXPECT_EQ("str 2", V
[2]);
124 EXPECT_EQ("str 4", V
[3]);
127 TEST(SmallSetTest
, IteratorIncMoveCopy
) {
128 // Test SmallSetIterator for SmallSet with a type with non-trivial
130 SmallSet
<std::string
, 2> s1
;
135 auto Iter
= s1
.begin();
136 EXPECT_EQ("str 1", *Iter
);
138 EXPECT_EQ("str 2", *Iter
);
142 auto Iter2
= s1
.begin();
143 Iter
= std::move(Iter2
);
144 EXPECT_EQ("str 0", *Iter
);
147 TEST(SmallSetTest
, EqualityComparisonTest
) {
148 SmallSet
<int, 8> s1small
;
149 SmallSet
<int, 10> s2small
;
150 SmallSet
<int, 3> s3large
;
151 SmallSet
<int, 8> s4large
;
153 for (int i
= 1; i
< 5; i
++) {
155 s2small
.insert(5 - i
);
158 for (int i
= 1; i
< 11; i
++)
161 EXPECT_EQ(s1small
, s1small
);
162 EXPECT_EQ(s3large
, s3large
);
164 EXPECT_EQ(s1small
, s2small
);
165 EXPECT_EQ(s1small
, s3large
);
166 EXPECT_EQ(s2small
, s3large
);
168 EXPECT_NE(s1small
, s4large
);
169 EXPECT_NE(s4large
, s3large
);
172 TEST(SmallSetTest
, Contains
) {
173 SmallSet
<int, 2> Set
;
174 EXPECT_FALSE(Set
.contains(0));
175 EXPECT_FALSE(Set
.contains(1));
179 EXPECT_TRUE(Set
.contains(0));
180 EXPECT_TRUE(Set
.contains(1));
183 EXPECT_TRUE(Set
.contains(0));
184 EXPECT_TRUE(Set
.contains(1));
187 EXPECT_TRUE(Set
.contains(0));
188 EXPECT_FALSE(Set
.contains(1));
192 EXPECT_TRUE(Set
.contains(0));
193 EXPECT_TRUE(Set
.contains(1));
194 EXPECT_TRUE(Set
.contains(2));