|
15 | 15 | package set_test
|
16 | 16 |
|
17 | 17 | import (
|
18 |
| - "fmt" |
19 | 18 | "runtime"
|
20 | 19 | "sort"
|
21 | 20 | "testing"
|
22 | 21 |
|
23 | 22 | . "github.com/onsi/ginkgo"
|
24 |
| - . "github.com/onsi/gomega" |
25 |
| - |
26 | 23 | "github.com/projectcalico/calico/libcalico-go/lib/set"
|
27 | 24 | )
|
28 | 25 |
|
| 26 | +var _ = Describe("Adaptive set", func() { |
| 27 | + describeSetTests(func() set.Set[int] { |
| 28 | + return set.NewAdaptive[int]() |
| 29 | + }) |
| 30 | +}) |
| 31 | + |
29 | 32 | func BenchmarkAdaptive1Items(b *testing.B) {
|
30 | 33 | benchmarkSet(b, makeAdaptive, 1)
|
31 | 34 | }
|
@@ -162,190 +165,3 @@ func FuzzAdaptiveSet(f *testing.F) {
|
162 | 165 | }
|
163 | 166 | })
|
164 | 167 | }
|
165 |
| - |
166 |
| -var _ = Describe("Adaptive set", func() { |
167 |
| - var s set.Set[int] |
168 |
| - BeforeEach(func() { |
169 |
| - s = set.NewAdaptive[int]() |
170 |
| - }) |
171 |
| - |
172 |
| - It("should be empty", func() { |
173 |
| - Expect(s.Len()).To(BeZero()) |
174 |
| - }) |
175 |
| - It("should stringify", func() { |
176 |
| - Expect(s.String()).To(Equal("set.Set{}")) |
177 |
| - }) |
178 |
| - It("should iterate over no items", func() { |
179 |
| - called := false |
180 |
| - s.Iter(func(item int) error { |
181 |
| - called = true |
182 |
| - return nil |
183 |
| - }) |
184 |
| - Expect(called).To(BeFalse()) |
185 |
| - }) |
186 |
| - It("should do nothing on clear", func() { |
187 |
| - s.Clear() |
188 |
| - Expect(s.Len()).To(BeZero()) |
189 |
| - }) |
190 |
| - |
191 |
| - Describe("Set created by FromArray", func() { |
192 |
| - BeforeEach(func() { |
193 |
| - s = set.FromArray([]int{1, 2}) |
194 |
| - }) |
195 |
| - It("should contain 1", func() { |
196 |
| - Expect(s.Contains(1)).To(BeTrue()) |
197 |
| - }) |
198 |
| - It("should contain 2", func() { |
199 |
| - Expect(s.Contains(2)).To(BeTrue()) |
200 |
| - }) |
201 |
| - It("should not contain 3", func() { |
202 |
| - Expect(s.Contains(3)).To(BeFalse()) |
203 |
| - }) |
204 |
| - It("should stringify", func() { |
205 |
| - Expect(s.String()).To(Or( |
206 |
| - Equal("set.Set{1,2}"), |
207 |
| - Equal("set.Set{2,1}"))) |
208 |
| - }) |
209 |
| - }) |
210 |
| - |
211 |
| - Describe("Set created by From", func() { |
212 |
| - BeforeEach(func() { |
213 |
| - s = set.From([]int{1, 2}...) |
214 |
| - }) |
215 |
| - It("should contain 1", func() { |
216 |
| - Expect(s.Contains(1)).To(BeTrue()) |
217 |
| - }) |
218 |
| - It("should contain 2", func() { |
219 |
| - Expect(s.Contains(2)).To(BeTrue()) |
220 |
| - }) |
221 |
| - It("should not contain 3", func() { |
222 |
| - Expect(s.Contains(3)).To(BeFalse()) |
223 |
| - }) |
224 |
| - It("should contain all of {1, 2}", func() { |
225 |
| - Expect(s.ContainsAll(set.From(1, 2))).To(BeTrue()) |
226 |
| - }) |
227 |
| - It("should not contain all of {1, 2, 3}", func() { |
228 |
| - Expect(s.ContainsAll(set.From(1, 2, 3))).To(BeFalse()) |
229 |
| - }) |
230 |
| - }) |
231 |
| - |
232 |
| - Describe("after adding 1 and 2", func() { |
233 |
| - BeforeEach(func() { |
234 |
| - s.Add(1) |
235 |
| - s.Add(2) |
236 |
| - s.Add(2) // Duplicate should have no effect |
237 |
| - }) |
238 |
| - It("should contain 1", func() { |
239 |
| - Expect(s.Contains(1)).To(BeTrue()) |
240 |
| - }) |
241 |
| - It("should contain 2", func() { |
242 |
| - Expect(s.Contains(2)).To(BeTrue()) |
243 |
| - }) |
244 |
| - It("should not contain 3", func() { |
245 |
| - Expect(s.Contains(3)).To(BeFalse()) |
246 |
| - }) |
247 |
| - It("should iterate over 1 and 2 in some order", func() { |
248 |
| - seen1 := false |
249 |
| - seen2 := false |
250 |
| - s.Iter(func(item int) error { |
251 |
| - if item == 1 { |
252 |
| - Expect(seen1).To(BeFalse()) |
253 |
| - seen1 = true |
254 |
| - } else if item == 2 { |
255 |
| - Expect(seen2).To(BeFalse()) |
256 |
| - seen2 = true |
257 |
| - } else { |
258 |
| - Fail("Unexpected item") |
259 |
| - } |
260 |
| - return nil |
261 |
| - }) |
262 |
| - Expect(seen1).To(BeTrue()) |
263 |
| - Expect(seen2).To(BeTrue()) |
264 |
| - }) |
265 |
| - It("should allow remove during iteration", func() { |
266 |
| - s.Iter(func(item int) error { |
267 |
| - if item == 1 { |
268 |
| - return set.RemoveItem |
269 |
| - } |
270 |
| - return nil |
271 |
| - }) |
272 |
| - Expect(s.Contains(1)).To(BeFalse()) |
273 |
| - Expect(s.Contains(2)).To(BeTrue()) |
274 |
| - }) |
275 |
| - It("should support stopping iteration", func() { |
276 |
| - iterationStarted := false |
277 |
| - s.Iter(func(item int) error { |
278 |
| - if iterationStarted { |
279 |
| - Fail("Iteration continued after stop") |
280 |
| - } |
281 |
| - iterationStarted = true |
282 |
| - return set.StopIteration |
283 |
| - }) |
284 |
| - Expect(s.Contains(1)).To(BeTrue()) |
285 |
| - Expect(s.Contains(2)).To(BeTrue()) |
286 |
| - }) |
287 |
| - It("can copy a Set", func() { |
288 |
| - c := s.Copy() |
289 |
| - Expect(c.Len()).To(Equal(s.Len())) |
290 |
| - Expect(c).NotTo(BeIdenticalTo(s)) // Check they're not the same object. |
291 |
| - Expect(c.ContainsAll(s)).To(BeTrue()) |
292 |
| - Expect(s.ContainsAll(c)).To(BeTrue()) |
293 |
| - }) |
294 |
| - It("should correctly determine set equality", func() { |
295 |
| - c := s.Copy() |
296 |
| - Expect(c.Equals(s)).To(BeTrue()) |
297 |
| - Expect(s.Equals(c)).To(BeTrue()) |
298 |
| - c.Add(3) |
299 |
| - Expect(c.Equals(s)).To(BeFalse()) |
300 |
| - Expect(s.Equals(c)).To(BeFalse()) |
301 |
| - c.Discard(2) |
302 |
| - Expect(c.Equals(s)).To(BeFalse()) |
303 |
| - Expect(s.Equals(c)).To(BeFalse()) |
304 |
| - c.Add(2) |
305 |
| - c.Discard(3) |
306 |
| - Expect(c.Equals(s)).To(BeTrue(), fmt.Sprintf("%s != %s", c, s)) |
307 |
| - Expect(s.Equals(c)).To(BeTrue()) |
308 |
| - }) |
309 |
| - |
310 |
| - Describe("after removing 2", func() { |
311 |
| - BeforeEach(func() { |
312 |
| - s.Discard(2) |
313 |
| - }) |
314 |
| - It("should contain 1", func() { |
315 |
| - Expect(s.Contains(1)).To(BeTrue()) |
316 |
| - }) |
317 |
| - It("should not contain 2", func() { |
318 |
| - Expect(s.Contains(2)).To(BeFalse()) |
319 |
| - }) |
320 |
| - It("should not contain 3", func() { |
321 |
| - Expect(s.Contains(3)).To(BeFalse()) |
322 |
| - }) |
323 |
| - }) |
324 |
| - Describe("after using AddAll to add 2, 3, 4", func() { |
325 |
| - BeforeEach(func() { |
326 |
| - s.AddAll([]int{2, 3, 4}) |
327 |
| - }) |
328 |
| - It("should contain 1", func() { |
329 |
| - Expect(s.Contains(1)).To(BeTrue()) |
330 |
| - }) |
331 |
| - It("should contain 2", func() { |
332 |
| - Expect(s.Contains(2)).To(BeTrue()) |
333 |
| - }) |
334 |
| - It("should contain 3", func() { |
335 |
| - Expect(s.Contains(3)).To(BeTrue()) |
336 |
| - }) |
337 |
| - It("should contain 4", func() { |
338 |
| - Expect(s.Contains(4)).To(BeTrue()) |
339 |
| - }) |
340 |
| - }) |
341 |
| - |
342 |
| - Describe("after Clear()", func() { |
343 |
| - BeforeEach(func() { |
344 |
| - s.Clear() |
345 |
| - }) |
346 |
| - It("should be empty", func() { |
347 |
| - Expect(s.Len()).To(BeZero()) |
348 |
| - }) |
349 |
| - }) |
350 |
| - }) |
351 |
| -}) |
0 commit comments