-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathiter_test.go
More file actions
482 lines (375 loc) · 9.54 KB
/
iter_test.go
File metadata and controls
482 lines (375 loc) · 9.54 KB
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
package roaring
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestBackwardCount(t *testing.T) {
array := []int{2, 63, 64, 65, 4095, 4096, 4097, 4159, 4160, 4161, 5000, 20000, 66666}
for _, testSize := range array {
b := New()
for i := uint32(0); i < uint32(testSize); i++ {
b.Add(i)
}
it := Values(b)
count := 0
it(func(_ uint32) bool {
count++
return true
})
assert.Equal(t, testSize, count)
}
}
func TestBackward(t *testing.T) {
t.Run("#1", func(t *testing.T) {
values := []uint32{0, 2, 15, 16, 31, 32, 33, 9999, MaxUint16}
b := New()
for n := 0; n < len(values); n++ {
b.Add(values[n])
}
it := Backward(b)
n := len(values) - 1
it(func(val uint32) bool {
assert.EqualValues(t, val, values[n])
n--
return true
})
it = Backward(b)
n = len(values) - 1
it(func(val uint32) bool {
assert.EqualValues(t, val, values[n])
assert.True(t, n >= 0)
n--
return true
})
})
t.Run("#2", func(t *testing.T) {
b := New()
it := Backward(b)
count := 0
it(func(_ uint32) bool {
count++
return true
})
assert.Equal(t, 0, count)
})
t.Run("#3", func(t *testing.T) {
b := New()
b.AddInt(0)
it := Backward(b)
// only one value zero
it(func(val uint32) bool {
assert.EqualValues(t, 0, val)
return true
})
})
t.Run("#4", func(t *testing.T) {
b := New()
b.AddInt(9999)
it := Backward(b)
// only one value 9999
it(func(val uint32) bool {
assert.EqualValues(t, 9999, val)
return true
})
})
t.Run("#5", func(t *testing.T) {
b := New()
b.AddInt(MaxUint16)
it := Values(b)
// only one value MaxUint16
it(func(val uint32) bool {
assert.EqualValues(t, MaxUint16, val)
return true
})
})
}
func TestValues(t *testing.T) {
b := New()
testSize := 5000
for i := 0; i < testSize; i++ {
b.AddInt(i)
}
it := Values(b)
n := 0
it(func(val uint32) bool {
assert.Equal(t, uint32(n), val)
n++
return true
})
assert.Equal(t, testSize, n)
}
func TestUnset(t *testing.T) {
t.Run("empty bitmap", func(t *testing.T) {
b := New()
it := Unset(b, 5, 10)
expected := []uint32{5, 6, 7, 8, 9, 10}
actual := make([]uint32, 0)
it(func(val uint32) bool {
actual = append(actual, val)
return true
})
assert.Equal(t, expected, actual)
})
t.Run("bitmap with some values set", func(t *testing.T) {
b := New()
b.AddInt(3)
b.AddInt(7)
b.AddInt(12)
it := Unset(b, 5, 10)
expected := []uint32{5, 6, 8, 9, 10}
actual := make([]uint32, 0)
it(func(val uint32) bool {
actual = append(actual, val)
return true
})
assert.Equal(t, expected, actual)
})
t.Run("range completely outside bitmap", func(t *testing.T) {
b := New()
b.AddInt(1)
b.AddInt(2)
b.AddInt(3)
it := Unset(b, 10, 15)
expected := []uint32{10, 11, 12, 13, 14, 15}
actual := make([]uint32, 0)
it(func(val uint32) bool {
actual = append(actual, val)
return true
})
assert.Equal(t, expected, actual)
})
t.Run("range includes set and unset values", func(t *testing.T) {
b := New()
b.AddInt(5)
b.AddInt(8)
b.AddInt(9)
it := Unset(b, 3, 12)
expected := []uint32{3, 4, 6, 7, 10, 11, 12}
actual := make([]uint32, 0)
it(func(val uint32) bool {
actual = append(actual, val)
return true
})
assert.Equal(t, expected, actual)
})
t.Run("min greater than max", func(t *testing.T) {
b := New()
it := Unset(b, 10, 5)
count := 0
it(func(val uint32) bool {
count++
return true
})
assert.Equal(t, 0, count)
})
t.Run("single value range - unset", func(t *testing.T) {
b := New()
b.AddInt(5)
it := Unset(b, 3, 3)
expected := []uint32{3}
actual := make([]uint32, 0)
it(func(val uint32) bool {
actual = append(actual, val)
return true
})
assert.Equal(t, expected, actual)
})
t.Run("single value range - set", func(t *testing.T) {
b := New()
b.AddInt(5)
it := Unset(b, 5, 5)
count := 0
it(func(val uint32) bool {
count++
return true
})
assert.Equal(t, 0, count)
})
t.Run("early termination", func(t *testing.T) {
b := New()
it := Unset(b, 1, 10)
actual := make([]uint32, 0)
it(func(val uint32) bool {
actual = append(actual, val)
return len(actual) < 3 // Stop after 3 values
})
expected := []uint32{1, 2, 3}
assert.Equal(t, expected, actual)
})
t.Run("large range with sparse bitmap", func(t *testing.T) {
b := New()
b.AddInt(100)
b.AddInt(500)
b.AddInt(1000)
it := Unset(b, 50, 150)
actual := make([]uint32, 0)
it(func(val uint32) bool {
actual = append(actual, val)
return true
})
// Should include all values from 50-150 except 100
assert.Equal(t, 100, len(actual)) // 150-50+1-1 = 100
assert.Contains(t, actual, uint32(50))
assert.Contains(t, actual, uint32(99))
assert.NotContains(t, actual, uint32(100))
assert.Contains(t, actual, uint32(101))
assert.Contains(t, actual, uint32(150))
})
t.Run("min is in the bitmap", func(t *testing.T) {
b := New()
b.AddInt(100)
it := Unset(b, 100, 105)
actual := make([]uint32, 0)
it(func(val uint32) bool {
actual = append(actual, val)
return true
})
expected := []uint32{101, 102, 103, 104, 105}
assert.Equal(t, expected, actual)
})
t.Run("extreme max", func(t *testing.T) {
b := New()
b.Add(4294967295)
it := Unset(b, 4294967294, 4294967295)
actual := make([]uint32, 0)
it(func(val uint32) bool {
actual = append(actual, val)
return true
})
expected := []uint32{4294967294}
assert.Equal(t, expected, actual)
})
}
func TestUnsetIteratorPeekable(t *testing.T) {
t.Run("peek next", func(t *testing.T) {
b := New()
b.AddInt(5)
b.AddInt(8)
it := b.UnsetIterator(3, 11)
// First value should be 3
assert.True(t, it.HasNext())
assert.Equal(t, uint32(3), it.PeekNext())
assert.Equal(t, uint32(3), it.Next())
// Next should be 4
assert.True(t, it.HasNext())
assert.Equal(t, uint32(4), it.PeekNext())
assert.Equal(t, uint32(4), it.Next())
// Next should be 6 (skipping 5 which is set)
assert.True(t, it.HasNext())
assert.Equal(t, uint32(6), it.PeekNext())
assert.Equal(t, uint32(6), it.Next())
// Next should be 7
assert.True(t, it.HasNext())
assert.Equal(t, uint32(7), it.PeekNext())
assert.Equal(t, uint32(7), it.Next())
// Next should be 9 (skipping 8 which is set)
assert.True(t, it.HasNext())
assert.Equal(t, uint32(9), it.PeekNext())
assert.Equal(t, uint32(9), it.Next())
// Next should be 10
assert.True(t, it.HasNext())
assert.Equal(t, uint32(10), it.PeekNext())
assert.Equal(t, uint32(10), it.Next())
// No more values
assert.False(t, it.HasNext())
})
t.Run("advance if needed", func(t *testing.T) {
b := New()
b.AddInt(5)
b.AddInt(8)
b.AddInt(12)
it := b.UnsetIterator(1, 16)
// Skip to values >= 7
it.AdvanceIfNeeded(7)
// Should now be at 7 (skipping 5 which is set)
assert.True(t, it.HasNext())
assert.Equal(t, uint32(7), it.PeekNext())
assert.Equal(t, uint32(7), it.Next())
// Next should be 9 (skipping 8 which is set)
assert.True(t, it.HasNext())
assert.Equal(t, uint32(9), it.PeekNext())
assert.Equal(t, uint32(9), it.Next())
// Skip to values >= 11
it.AdvanceIfNeeded(11)
// Should now be at 11 (skipping 12 which is set)
assert.True(t, it.HasNext())
assert.Equal(t, uint32(11), it.PeekNext())
assert.Equal(t, uint32(11), it.Next())
// Next should be 13
assert.True(t, it.HasNext())
assert.Equal(t, uint32(13), it.PeekNext())
assert.Equal(t, uint32(13), it.Next())
// Skip beyond range
it.AdvanceIfNeeded(20)
assert.False(t, it.HasNext())
})
t.Run("advance if needed before range", func(t *testing.T) {
b := New()
b.AddInt(5)
it := b.UnsetIterator(10, 16)
// Try to advance to a value before our range start
it.AdvanceIfNeeded(5)
// Should still start from 10
assert.True(t, it.HasNext())
assert.Equal(t, uint32(10), it.PeekNext())
})
t.Run("advance if needed beyond range", func(t *testing.T) {
b := New()
b.AddInt(5)
it := b.UnsetIterator(10, 16)
// Advance beyond our range
it.AdvanceIfNeeded(20)
// Should have no more values
assert.False(t, it.HasNext())
})
t.Run("advance if needed on current value", func(t *testing.T) {
b := New()
b.AddRange(0, 0x10000)
iter := b.UnsetIterator(0, 0x10003)
var got []uint32
prev := uint32(0)
for len(got) < 10 {
iter.AdvanceIfNeeded(prev)
if !iter.HasNext() {
break
}
x := iter.Next()
got = append(got, x)
prev = x
}
assert.Equal(t, []uint32{0x10000, 0x10001, 0x10002}, got)
})
t.Run("peek next on empty iterator", func(t *testing.T) {
b := New()
b.AddInt(5) // Set bit in middle of range
it := b.UnsetIterator(5, 6) // Range contains only the set bit
// Should have no values
assert.False(t, it.HasNext())
// PeekNext should panic when HasNext is false
assert.Panics(t, func() {
it.PeekNext()
})
})
t.Run("range including max uint32 unset", func(t *testing.T) {
b := New()
b.Add(4294967294) // Set the value before max
it := b.UnsetIterator(4294967294, 4294967296)
// Should have 4294967295 (max uint32) as it's unset
assert.True(t, it.HasNext())
assert.Equal(t, uint32(4294967295), it.PeekNext())
assert.Equal(t, uint32(4294967295), it.Next())
// No more values
assert.False(t, it.HasNext())
})
t.Run("max uint32 set", func(t *testing.T) {
b := New()
b.Add(4294967295) // Set max uint32
it := b.UnsetIterator(4294967294, 4294967296)
// Should have 4294967294 as it's unset, but not 4294967295
assert.True(t, it.HasNext())
assert.Equal(t, uint32(4294967294), it.PeekNext())
assert.Equal(t, uint32(4294967294), it.Next())
// No more values
assert.False(t, it.HasNext())
})
}