-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtable_iter_test.go
549 lines (461 loc) · 11.3 KB
/
table_iter_test.go
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
//go:build go1.23
// Copyright (c) 2024 Karl Gaissmaier
// SPDX-License-Identifier: MIT
package bart
import (
"fmt"
"net/netip"
"slices"
"testing"
)
func TestAll4RangeOverFunc(t *testing.T) {
t.Parallel()
pfxs := randomPrefixes4(10_000)
seen := make(map[netip.Prefix]int, 10_000)
t.Run("All4RangeOverFunc", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
seen[item.pfx] = item.val
}
// rangefunc iterator
for pfx, val := range rtbl.All4() {
// check if pfx/val is as expected
if seen[pfx] != val {
t.Errorf("%v got value: %v, expected: %v", pfx, val, seen[pfx])
}
delete(seen, pfx)
}
// check if all entries visited
if len(seen) != 0 {
t.Fatalf("traverse error, not all entries visited")
}
})
t.Run("All4RangeOverFunc with premature exit", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
}
// check if callback stops prematurely
count := 0
for range rtbl.All4() {
count++
if count >= 1000 {
break
}
}
// check if iteration stopped with error
if count > 1000 {
t.Fatalf("expected premature stop with error")
}
})
}
func TestAll6RangeOverFunc(t *testing.T) {
t.Parallel()
pfxs := randomPrefixes6(10_000)
seen := make(map[netip.Prefix]int, 10_000)
t.Run("All6RangeOverFunc", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
seen[item.pfx] = item.val
}
// rangefunc iterator
for pfx, val := range rtbl.All6() {
// check if pfx/val is as expected
if seen[pfx] != val {
t.Errorf("%v got value: %v, expected: %v", pfx, val, seen[pfx])
}
delete(seen, pfx)
}
// check if all entries visited
if len(seen) != 0 {
t.Fatalf("traverse error, not all entries visited")
}
})
t.Run("All6RangeOverFunc with premature exit", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
}
// check if callback stops prematurely
count := 0
for range rtbl.All6() {
count++
if count >= 1000 {
break
}
}
// check if iteration stopped with error
if count > 1000 {
t.Fatalf("expected premature stop with error")
}
})
}
func TestAllRangeOverFunc(t *testing.T) {
t.Parallel()
pfxs := randomPrefixes(10_000)
seen := make(map[netip.Prefix]int, 10_000)
t.Run("AllRangeOverFunc", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
seen[item.pfx] = item.val
}
// rangefunc iterator
for pfx, val := range rtbl.All() {
// check if pfx/val is as expected
if seen[pfx] != val {
t.Errorf("%v got value: %v, expected: %v", pfx, val, seen[pfx])
}
delete(seen, pfx)
}
// check if all entries visited
if len(seen) != 0 {
t.Fatalf("traverse error, not all entries visited")
}
})
t.Run("AllRangeOverFunc with premature exit", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
}
// check if callback stops prematurely
count := 0
for range rtbl.All() {
count++
if count >= 1000 {
break
}
}
// check if iteration stopped with error
if count > 1000 {
t.Fatalf("expected premature stop with error")
}
})
}
func TestAll4SortedIter(t *testing.T) {
t.Parallel()
pfxs := randomPrefixes4(10_000)
seen := make(map[netip.Prefix]int, 10_000)
t.Run("All4SortedRangeOverFunc", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
seen[item.pfx] = item.val
}
// rangefunc iterator
for pfx, val := range rtbl.AllSorted4() {
// check if pfx/val is as expected
if seen[pfx] != val {
t.Errorf("%v got value: %v, expected: %v", pfx, val, seen[pfx])
}
delete(seen, pfx)
}
// check if all entries visited
if len(seen) != 0 {
t.Fatalf("traverse error, not all entries visited")
}
})
t.Run("All4SortedRangeOverFunc with premature exit", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
}
// check if callback stops prematurely
count := 0
for range rtbl.AllSorted4() {
count++
if count >= 1000 {
break
}
}
// check if iteration stopped with error
if count > 1000 {
t.Fatalf("expected premature stop with error")
}
})
}
func TestAll6SortedRangeOverFunc(t *testing.T) {
t.Parallel()
pfxs := randomPrefixes6(10_000)
seen := make(map[netip.Prefix]int, 10_000)
t.Run("All6SortedRangeOverFunc", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
seen[item.pfx] = item.val
}
// rangefunc iterator
for pfx, val := range rtbl.AllSorted6() {
// check if pfx/val is as expected
if seen[pfx] != val {
t.Errorf("%v got value: %v, expected: %v", pfx, val, seen[pfx])
}
delete(seen, pfx)
}
// check if all entries visited
if len(seen) != 0 {
t.Fatalf("traverse error, not all entries visited")
}
})
t.Run("All6SortedRangeOverFunc with premature exit", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
}
// check if callback stops prematurely
count := 0
for range rtbl.AllSorted6() {
count++
if count >= 1000 {
break
}
}
// check if iteration stopped with error
if count > 1000 {
t.Fatalf("expected premature stop with error")
}
})
}
func TestAllSortedRangeOverFunc(t *testing.T) {
t.Parallel()
pfxs := randomPrefixes(10_000)
seen := make(map[netip.Prefix]int, 10_000)
t.Run("AllSortedRangeOverFunc", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
seen[item.pfx] = item.val
}
// rangefunc iterator
for pfx, val := range rtbl.AllSorted() {
// check if pfx/val is as expected
if seen[pfx] != val {
t.Errorf("%v got value: %v, expected: %v", pfx, val, seen[pfx])
}
delete(seen, pfx)
}
// check if all entries visited
if len(seen) != 0 {
t.Fatalf("traverse error, not all entries visited")
}
})
t.Run("AllSortedRangeOverFunc with premature exit", func(t *testing.T) {
t.Parallel()
rtbl := new(Table[int])
for _, item := range pfxs {
rtbl.Insert(item.pfx, item.val)
}
// check if callback stops prematurely
count := 0
for range rtbl.AllSorted() {
count++
if count >= 1000 {
break
}
}
// check if iteration stopped with error
if count > 1000 {
t.Fatalf("expected premature stop with error")
}
})
}
func TestSupernetsEdgeCase(t *testing.T) {
t.Parallel()
var zeroPfx netip.Prefix
t.Run("empty table", func(t *testing.T) {
rtbl := new(Table[any])
pfx := mpp("::1/128")
rtbl.Supernets(pfx)(func(_ netip.Prefix, _ any) bool {
t.Errorf("empty table, must not range over")
return false
})
})
t.Run("invalid prefix", func(t *testing.T) {
rtbl := new(Table[any])
pfx := mpp("::1/128")
val := "foo"
rtbl.Insert(pfx, val)
rtbl.Supernets(zeroPfx)(func(_ netip.Prefix, _ any) bool {
t.Errorf("invalid prefix, must not range over")
return false
})
})
t.Run("identity", func(t *testing.T) {
rtbl := new(Table[string])
pfx := mpp("::1/128")
val := "foo"
rtbl.Insert(pfx, val)
for p, v := range rtbl.Supernets(pfx) {
if p != pfx {
t.Errorf("Supernets(%v), got: %v, want: %v", pfx, p, pfx)
}
if v != val {
t.Errorf("Supernets(%v), got: %v, want: %v", pfx, v, val)
}
}
})
}
func TestSupernetsCompare(t *testing.T) {
t.Parallel()
pfxs := randomRealWorldPrefixes(10_000)
fast := new(Table[int])
gold := new(goldTable[int])
for i, pfx := range pfxs {
fast.Insert(pfx, i)
gold.insert(pfx, i)
}
tests := randomPrefixes(200)
for _, tt := range tests {
gotGold := gold.supernets(tt.pfx)
gotFast := []netip.Prefix{}
for p := range fast.Supernets(tt.pfx) {
gotFast = append(gotFast, p)
}
if !slices.Equal(gotGold, gotFast) {
t.Fatalf("Supernets(%q) = %v, want %v", tt.pfx, gotFast, gotGold)
}
}
}
func TestSubnets(t *testing.T) {
t.Parallel()
var zeroPfx netip.Prefix
t.Run("empty table", func(t *testing.T) {
rtbl := new(Table[string])
pfx := mpp("::1/128")
for range rtbl.Subnets(pfx) {
t.Errorf("empty table, must not range over")
}
})
t.Run("invalid prefix", func(t *testing.T) {
rtbl := new(Table[string])
pfx := mpp("::1/128")
val := "foo"
rtbl.Insert(pfx, val)
for range rtbl.Subnets(zeroPfx) {
t.Errorf("invalid prefix, must not range over")
}
})
t.Run("identity", func(t *testing.T) {
rtbl := new(Table[string])
pfx := mpp("::1/128")
val := "foo"
rtbl.Insert(pfx, val)
for p, v := range rtbl.Subnets(pfx) {
if p != pfx {
t.Errorf("Subnet(%v), got: %v, want: %v", pfx, p, pfx)
}
if v != val {
t.Errorf("Subnet(%v), got: %v, want: %v", pfx, v, val)
}
}
})
t.Run("default gateway", func(t *testing.T) {
want4 := 95_555
want6 := 105_555
rtbl := new(Table[int])
for i, pfx := range randomRealWorldPrefixes4(want4) {
rtbl.Insert(pfx, i)
}
for i, pfx := range randomRealWorldPrefixes6(want6) {
rtbl.Insert(pfx, i)
}
// default gateway v4 covers all v4 prefixes in table
dg4 := mpp("0.0.0.0/0")
got4 := 0
for range rtbl.Subnets(dg4) {
got4++
}
// default gateway v6 covers all v6 prefixes in table
dg6 := mpp("::/0")
got6 := 0
for range rtbl.Subnets(dg6) {
got6++
}
if got4 != want4 {
t.Errorf("Subnets v4, want: %d, got: %d", want4, got4)
}
if got6 != want6 {
t.Errorf("Subnets v6, want: %d, got: %d", want6, got6)
}
})
}
func TestSubnetsCompare(t *testing.T) {
t.Parallel()
pfxs := randomRealWorldPrefixes(10_000)
fast := new(Table[int])
gold := new(goldTable[int])
for i, pfx := range pfxs {
fast.Insert(pfx, i)
gold.insert(pfx, i)
}
tests := randomPrefixes(200)
for _, tt := range tests {
gotGold := gold.subnets(tt.pfx)
gotFast := []netip.Prefix{}
for pfx := range fast.Subnets(tt.pfx) {
gotFast = append(gotFast, pfx)
}
if !slices.Equal(gotGold, gotFast) {
t.Fatalf("Subnets(%q) = %v, want %v", tt.pfx, gotFast, gotGold)
}
}
}
//nolint:unused
func (t *goldTable[V]) lookupPrefixReverse(pfx netip.Prefix) []netip.Prefix {
var result []netip.Prefix
for _, item := range *t {
if item.pfx.Overlaps(pfx) && item.pfx.Bits() <= pfx.Bits() {
result = append(result, item.pfx)
}
}
// b,a reverse sort order!
slices.SortFunc(result, func(a, b netip.Prefix) int {
return cmpPrefix(b, a)
})
return result
}
func BenchmarkSubnets(b *testing.B) {
n := 1_000_000
rtbl := new(Table[int])
for i, pfx := range randomRealWorldPrefixes(n) {
rtbl.Insert(pfx, i)
}
probe := mpp("42.150.112.0/20")
b.Run(fmt.Sprintf("Subnets(%q) from %d random pfxs", probe, n), func(b *testing.B) {
b.ResetTimer()
for range b.N {
for range rtbl.Subnets(probe) {
continue
}
}
})
}
func BenchmarkSupernets(b *testing.B) {
n := 1_000_000
rtbl := new(Table[int])
for i, pfx := range randomRealWorldPrefixes(n) {
rtbl.Insert(pfx, i)
}
probe := mpp("42.150.112.0/20")
b.Run(fmt.Sprintf("Supernets(%q) from %d random pfxs", probe, n), func(b *testing.B) {
b.ResetTimer()
for range b.N {
for range rtbl.Supernets(probe) {
continue
}
}
})
}