-
Notifications
You must be signed in to change notification settings - Fork 230
/
arraycontainer_test.go
659 lines (542 loc) · 18.8 KB
/
arraycontainer_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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
package roaring
// to run just these tests: go test -run TestArrayContainer*
import (
"math/rand"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestArrayContainerTransition(t *testing.T) {
v := container(newArrayContainer())
for i := 0; i < arrayDefaultMaxSize; i++ {
v = v.iaddReturnMinimized(uint16(i))
}
assert.Equal(t, arrayDefaultMaxSize, v.getCardinality())
assert.IsType(t, newArrayContainer(), v)
for i := 0; i < arrayDefaultMaxSize; i++ {
v = v.iaddReturnMinimized(uint16(i))
}
assert.Equal(t, arrayDefaultMaxSize, v.getCardinality())
assert.IsType(t, newArrayContainer(), v)
v = v.iaddReturnMinimized(uint16(arrayDefaultMaxSize))
assert.Equal(t, arrayDefaultMaxSize+1, v.getCardinality())
assert.IsType(t, newBitmapContainer(), v)
v = v.iremoveReturnMinimized(uint16(arrayDefaultMaxSize))
assert.Equal(t, arrayDefaultMaxSize, v.getCardinality())
assert.IsType(t, newArrayContainer(), v)
}
func TestArrayContainerRank(t *testing.T) {
v := container(newArrayContainer())
v = v.iaddReturnMinimized(10)
v = v.iaddReturnMinimized(100)
v = v.iaddReturnMinimized(1000)
assert.Equal(t, 3, v.getCardinality())
for i := 0; i <= arrayDefaultMaxSize; i++ {
thisrank := v.rank(uint16(i))
if i < 10 {
assert.Equalf(t, 0, thisrank, "At %d should be zero but is %d", i, thisrank)
} else if i < 100 {
assert.Equalf(t, 1, thisrank, "At %d should be one but is %d", i, thisrank)
} else if i < 1000 {
assert.Equalf(t, 2, thisrank, "At %d should be two but is %d", i, thisrank)
} else {
assert.Equalf(t, 3, thisrank, "At %d should be three but is %d", i, thisrank)
}
}
}
func TestArrayOffset(t *testing.T) {
nums := []uint16{10, 100, 1000}
expected := make([]int, len(nums))
offtest := uint16(65000)
v := container(newArrayContainer())
for i, n := range nums {
v = v.iaddReturnMinimized(n)
expected[i] = int(n) + int(offtest)
}
l, h := v.addOffset(offtest)
var w0card, w1card int
wout := make([]int, len(nums))
if l != nil {
w0card = l.getCardinality()
for i := 0; i < w0card; i++ {
wout[i] = l.selectInt(uint16(i))
}
}
if h != nil {
w1card = h.getCardinality()
for i := 0; i < w1card; i++ {
wout[i+w0card] = h.selectInt(uint16(i)) + 65536
}
}
assert.Equal(t, 3, w0card+w1card)
for i, x := range wout {
assert.Equal(t, expected[i], x)
}
}
func TestArrayContainerMassiveSetAndGet(t *testing.T) {
v := container(newArrayContainer())
for j := 0; j <= arrayDefaultMaxSize; j++ {
v = v.iaddReturnMinimized(uint16(j))
assert.Equal(t, 1+j, v.getCardinality())
success := true
i := 0
for ; i <= arrayDefaultMaxSize && success; i++ {
if i <= j {
success = v.contains(uint16(i))
} else {
success = !v.contains(uint16(i))
}
}
assert.Truef(t, success, "failed at %d iteration", i)
}
}
func TestArrayContainerUnsupportedType(t *testing.T) {
a := container(newArrayContainer())
testContainerPanics(t, a)
b := container(newBitmapContainer())
testContainerPanics(t, b)
}
func testContainerPanics(t *testing.T, c container) {
f := &struct {
arrayContainer
}{}
assert.Panics(t, func() { c.or(f) })
assert.Panics(t, func() { c.ior(f) })
assert.Panics(t, func() { c.lazyIOR(f) })
assert.Panics(t, func() { c.lazyOR(f) })
assert.Panics(t, func() { c.and(f) })
assert.Panics(t, func() { c.intersects(f) })
assert.Panics(t, func() { c.iand(f) })
assert.Panics(t, func() { c.xor(f) })
assert.Panics(t, func() { c.andNot(f) })
assert.Panics(t, func() { c.iandNot(f) })
}
func TestArrayContainerNumberOfRuns025(t *testing.T) {
seed := int64(42)
rand.Seed(seed)
trials := []trial{
{n: 1000, percentFill: .1, ntrial: 10},
/*
trial{n: 100, percentFill: .5, ntrial: 10},
trial{n: 100, percentFill: .01, ntrial: 10},
trial{n: 100, percentFill: .99, ntrial: 10},
*/
}
tester := func(tr trial) {
for j := 0; j < tr.ntrial; j++ {
ma := make(map[int]bool)
n := tr.n
a := []uint16{}
draw := int(float64(n) * tr.percentFill)
for i := 0; i < draw; i++ {
r0 := rand.Intn(n)
a = append(a, uint16(r0))
ma[r0] = true
}
// RunContainer computes this automatically
rc := newRunContainer16FromVals(false, a...)
rcNr := rc.numberOfRuns()
// vs arrayContainer
ac := newArrayContainer()
for k := range ma {
ac.iadd(uint16(k))
}
acNr := ac.numberOfRuns()
assert.Equal(t, acNr, rcNr)
// get coverage of arrayContainer coners...
assert.Equal(t, 2*len(ma), ac.serializedSizeInBytes())
assert.NotPanics(t, func() { ac.iaddRange(2, 1) })
assert.NotPanics(t, func() { ac.iremoveRange(2, 1) })
ac.iremoveRange(0, 2)
ac.iremoveRange(0, 2)
delete(ma, 0)
delete(ma, 1)
assert.Equal(t, len(ma), ac.getCardinality())
ac.iadd(0)
ac.iadd(1)
ac.iadd(2)
ma[0] = true
ma[1] = true
ma[2] = true
newguy := ac.not(0, 3).(*arrayContainer)
assert.False(t, newguy.contains(0))
assert.False(t, newguy.contains(1))
assert.False(t, newguy.contains(2))
newguy.notClose(0, 2)
newguy.remove(2)
newguy.remove(2)
newguy.ior(ac)
messedUp := newArrayContainer()
assert.Equal(t, 0, messedUp.numberOfRuns())
// messed up
messedUp.content = []uint16{1, 1}
assert.Panics(t, func() { messedUp.numberOfRuns() })
messedUp.content = []uint16{2, 1}
assert.Panics(t, func() { messedUp.numberOfRuns() })
shouldBeBit := newArrayContainer()
for i := 0; i < arrayDefaultMaxSize+1; i++ {
shouldBeBit.iadd(uint16(i * 2))
}
bit := shouldBeBit.toEfficientContainer()
_, isBit := bit.(*bitmapContainer)
assert.True(t, isBit)
}
}
for i := range trials {
tester(trials[i])
}
}
func TestArrayContainerIaddRangeNearMax068(t *testing.T) {
iv := []interval16{
newInterval16Range(65525, 65527),
newInterval16Range(65530, 65530),
newInterval16Range(65534, 65535),
}
rc := newRunContainer16TakeOwnership(iv)
ac2 := rc.toArrayContainer()
assert.True(t, ac2.equals(rc))
assert.True(t, rc.equals(ac2))
ac := newArrayContainer()
endx := int(MaxUint16) + 1
first := endx - 3
ac.iaddRange(first-20, endx-20)
ac.iaddRange(first-6, endx-6)
ac.iaddRange(first, endx)
assert.Equal(t, 9, ac.getCardinality())
}
func TestArrayContainerEtc070(t *testing.T) {
iv := []interval16{
newInterval16Range(65525, 65527),
newInterval16Range(65530, 65530),
newInterval16Range(65534, 65535),
}
rc := newRunContainer16TakeOwnership(iv)
ac := rc.toArrayContainer()
// not when nothing to do just returns a clone
assert.True(t, ac.equals(ac.not(0, 0)))
assert.True(t, ac.equals(ac.notClose(1, 0)))
// not will promote to bitmapContainer if card is big enough
ac = newArrayContainer()
ac.inot(0, MaxUint16+1)
rc = newRunContainer16Range(0, MaxUint16)
assert.True(t, rc.equals(ac))
// comparing two array containers with different card
ac2 := newArrayContainer()
assert.False(t, ac2.equals(ac))
// comparing two arrays with same card but different content
ac3 := newArrayContainer()
ac4 := newArrayContainer()
ac3.iadd(1)
ac3.iadd(2)
ac4.iadd(1)
assert.False(t, ac3.equals(ac4))
// compare array vs other with different card
assert.False(t, ac3.equals(rc))
// compare array vs other, same card, different content
rc = newRunContainer16Range(0, 0)
assert.False(t, ac4.equals(rc))
// remove from middle of array
ac5 := newArrayContainer()
ac5.iaddRange(0, 10)
assert.Equal(t, 10, ac5.getCardinality())
ac6 := ac5.remove(5)
assert.Equal(t, 9, ac6.getCardinality())
// lazyorArray that converts to bitmap
ac5.iaddRange(0, arrayLazyLowerBound-1)
ac6.iaddRange(arrayLazyLowerBound, 2*arrayLazyLowerBound-2)
ac6a := ac6.(*arrayContainer)
bc := ac5.lazyorArray(ac6a)
_, isBitmap := bc.(*bitmapContainer)
assert.True(t, isBitmap)
// andBitmap
ac = newArrayContainer()
ac.iaddRange(0, 10)
bc9 := newBitmapContainer()
bc9.iaddRange(0, 5)
and := ac.andBitmap(bc9)
assert.Equal(t, 5, and.getCardinality())
// numberOfRuns with 1 member
ac10 := newArrayContainer()
ac10.iadd(1)
assert.Equal(t, 1, ac10.numberOfRuns())
}
func TestArrayContainerIAndNot(t *testing.T) {
var ac container
ac = newArrayContainer()
ac.iadd(12)
ac.iadd(27)
ac.iadd(32)
ac.iadd(88)
ac.iadd(188)
ac.iadd(289)
var rc container
rc = newRunContainer16Range(0, 15)
rc = rc.iaddRange(1500, 2000)
rc = rc.iaddRange(55, 100)
rc = rc.iaddRange(25, 50)
ac = ac.iandNot(rc)
require.ElementsMatch(t, []uint16{188, 289}, ac.(*arrayContainer).content)
require.Equal(t, 2, ac.getCardinality())
}
func TestArrayContainerIand(t *testing.T) {
a := NewBitmap()
a.AddRange(0, 200000)
b := BitmapOf(50, 100000, 150000)
b.And(a)
r := b.ToArray()
assert.Len(t, r, 3)
assert.EqualValues(t, 50, r[0])
assert.EqualValues(t, 100000, r[1])
assert.EqualValues(t, 150000, r[2])
}
func TestArrayIteratorPeekNext(t *testing.T) {
testContainerIteratorPeekNext(t, newArrayContainer())
}
func TestArrayIteratorAdvance(t *testing.T) {
testContainerIteratorAdvance(t, newArrayContainer())
}
func TestArrayContainerResetTo(t *testing.T) {
array := newArrayContainer()
for i := 0; i < 1000; i++ {
array.iadd(uint16(i*1000 + i + 50))
}
bitmap := newBitmapContainer()
for i := 0; i < 10000; i++ {
bitmap.iadd(uint16(i*1000 + i + 50))
}
run := newRunContainer16()
for i := 0; i < 10; i++ {
start := i*1000 + i + 50
run.iaddRange(start, start+100+i)
}
makeDirty := func() *arrayContainer {
ret := newArrayContainer()
for i := 0; i < arrayDefaultMaxSize; i += 3 {
ret.iadd(uint16(i))
}
return ret
}
t.Run("to array container", func(t *testing.T) {
clean := newArrayContainer()
clean.resetTo(array)
assert.True(t, clean.equals(array))
dirty := makeDirty()
dirty.resetTo(array)
assert.True(t, dirty.equals(array))
})
t.Run("to bitmap container", func(t *testing.T) {
clean := newArrayContainer()
clean.resetTo(bitmap)
assert.True(t, clean.equals(bitmap))
dirty := makeDirty()
dirty.resetTo(bitmap)
assert.True(t, dirty.equals(bitmap.toArrayContainer()))
})
t.Run("to run container", func(t *testing.T) {
clean := newArrayContainer()
clean.resetTo(run)
assert.True(t, clean.toEfficientContainer().equals(run))
dirty := makeDirty()
dirty.resetTo(run)
assert.True(t, dirty.toEfficientContainer().equals(run))
})
}
func TestNextValueArray(t *testing.T) {
t.Run("Java Port 1", func(t *testing.T) {
// [Example 1] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/buffer/TestMappeableArrayContainer.java#L495
ac := newArrayContainer()
ac.iaddRange(64, 129)
assert.Equal(t, 64, ac.nextValue(0))
assert.Equal(t, 64, ac.nextValue(64))
assert.Equal(t, 65, ac.nextValue(65))
assert.Equal(t, 128, ac.nextValue(128))
assert.Equal(t, -1, ac.nextValue(129))
assert.Equal(t, -1, ac.nextValue(5000))
})
t.Run("Java Port 2", func(t *testing.T) {
// [Example 2] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/buffer/TestMappeableArrayContainer.java#L507
ac := newArrayContainer()
ac.iaddRange(64, 129)
ac.iaddRange(256, 321)
assert.Equal(t, 64, ac.nextValue(0))
assert.Equal(t, 64, ac.nextValue(63))
assert.Equal(t, 64, ac.nextValue(64))
assert.Equal(t, 65, ac.nextValue(65))
assert.Equal(t, 128, ac.nextValue(128))
assert.Equal(t, 256, ac.nextValue(129))
assert.Equal(t, -1, ac.nextValue(512))
})
t.Run("Java Port 3", func(t *testing.T) {
// [Example 3] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/buffer/TestMappeableArrayContainer.java#L525
ac := newArrayContainer()
ac.iaddRange(64, 129)
ac.iaddRange(200, 501)
ac.iaddRange(5000, 5201)
assert.Equal(t, 64, ac.nextValue(0))
assert.Equal(t, 64, ac.nextValue(63))
assert.Equal(t, 64, ac.nextValue(64))
assert.Equal(t, 65, ac.nextValue(65))
assert.Equal(t, 128, ac.nextValue(128))
assert.Equal(t, 200, ac.nextValue(129))
assert.Equal(t, 200, ac.nextValue(199))
assert.Equal(t, 200, ac.nextValue(200))
assert.Equal(t, 250, ac.nextValue(250))
assert.Equal(t, 5000, ac.nextValue(2500))
assert.Equal(t, 5000, ac.nextValue(5000))
assert.Equal(t, 5200, ac.nextValue(5200))
assert.Equal(t, -1, ac.nextValue(5201))
})
}
func TestNextAbsentValueArray(t *testing.T) {
t.Run("Java Port 1", func(t *testing.T) {
// [Java 1] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/TestArrayContainer.java#L850
ac := newArrayContainer()
ac.iaddRange(64, 129)
assert.Equal(t, 0, ac.nextAbsentValue(0))
assert.Equal(t, 63, ac.nextAbsentValue(63))
assert.Equal(t, 129, ac.nextAbsentValue(64))
assert.Equal(t, 129, ac.nextAbsentValue(65))
assert.Equal(t, 129, ac.nextAbsentValue(128))
assert.Equal(t, 129, ac.nextAbsentValue(129))
})
t.Run("Java Port 2", func(t *testing.T) {
// [Example 2] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/TestArrayContainer.java#L861
ac := newArrayContainer()
ac.iaddRange(64, 129)
ac.iaddRange(200, 501)
ac.iaddRange(5000, 5201)
assert.Equal(t, 0, ac.nextAbsentValue(0))
assert.Equal(t, 63, ac.nextAbsentValue(63))
assert.Equal(t, 129, ac.nextAbsentValue(64))
assert.Equal(t, 129, ac.nextAbsentValue(65))
assert.Equal(t, 129, ac.nextAbsentValue(128))
assert.Equal(t, 129, ac.nextAbsentValue(129))
assert.Equal(t, 199, ac.nextAbsentValue(199))
assert.Equal(t, 501, ac.nextAbsentValue(200))
assert.Equal(t, 501, ac.nextAbsentValue(250))
assert.Equal(t, 2500, ac.nextAbsentValue(2500))
assert.Equal(t, 5201, ac.nextAbsentValue(5000))
assert.Equal(t, 5201, ac.nextAbsentValue(5200))
})
t.Run("Java Port 3", func(t *testing.T) {
// [Java 3] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/TestArrayContainer.java#L878
ac := newArrayContainer()
for i := 0; i < 1000; i++ {
assert.Equal(t, i, ac.nextAbsentValue(uint16(i)))
}
})
}
func TestPreviousValueArray(t *testing.T) {
t.Run("Java Port 1", func(t *testing.T) {
// [Example 1] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/TestArrayContainer.java#L721
ac := newArrayContainer()
ac.iaddRange(64, 129)
assert.Equal(t, -1, ac.previousValue(0))
assert.Equal(t, -1, ac.previousValue(63))
assert.Equal(t, 64, ac.previousValue(64))
assert.Equal(t, 65, ac.previousValue(65))
assert.Equal(t, 128, ac.previousValue(128))
assert.Equal(t, 128, ac.previousValue(129))
})
t.Run("Java Port 2", func(t *testing.T) {
// [Example 2] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/TestArrayContainer.java#L733
ac := newArrayContainer()
ac.iaddRange(64, 129)
ac.iaddRange(200, 501)
ac.iaddRange(5000, 5201)
assert.Equal(t, -1, ac.previousValue(0))
assert.Equal(t, -1, ac.previousValue(63))
assert.Equal(t, 64, ac.previousValue(64))
assert.Equal(t, 65, ac.previousValue(65))
assert.Equal(t, 128, ac.previousValue(128))
assert.Equal(t, 128, ac.previousValue(129))
assert.Equal(t, 128, ac.previousValue(199))
assert.Equal(t, 200, ac.previousValue(200))
assert.Equal(t, 250, ac.previousValue(250))
assert.Equal(t, 500, ac.previousValue(2500))
assert.Equal(t, 5000, ac.previousValue(5000))
assert.Equal(t, 5200, ac.previousValue(5200))
})
t.Run("Java Port 3", func(t *testing.T) {
// [Example 3] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/TestArrayContainer.java#L751
ac := newArrayContainer()
ac.iaddRange(64, 129)
assert.Equal(t, -1, ac.previousValue(5))
})
}
func TestPreviousAbsentValueArray(t *testing.T) {
t.Run("Java Port 1", func(t *testing.T) {
// [Example 1] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/TestArrayContainer.java#L793
ac := newArrayContainer()
ac.iaddRange(64, 129)
assert.Equal(t, 0, ac.previousAbsentValue(0))
assert.Equal(t, 63, ac.previousAbsentValue(63))
assert.Equal(t, 63, ac.previousAbsentValue(64))
assert.Equal(t, 63, ac.previousAbsentValue(65))
assert.Equal(t, 63, ac.previousAbsentValue(128))
assert.Equal(t, 129, ac.previousAbsentValue(129))
})
t.Run("Java Port 2", func(t *testing.T) {
// [Example 2] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/TestArrayContainer.java#L804
ac := newArrayContainer()
ac.iaddRange(64, 129)
ac.iaddRange(200, 500)
ac.iaddRange(5000, 5201)
assert.Equal(t, 0, ac.previousAbsentValue(0))
assert.Equal(t, 63, ac.previousAbsentValue(63))
assert.Equal(t, 63, ac.previousAbsentValue(64))
assert.Equal(t, 63, ac.previousAbsentValue(65))
assert.Equal(t, 63, ac.previousAbsentValue(128))
assert.Equal(t, 129, ac.previousAbsentValue(129))
assert.Equal(t, 199, ac.previousAbsentValue(199))
assert.Equal(t, 199, ac.previousAbsentValue(200))
assert.Equal(t, 199, ac.previousAbsentValue(250))
assert.Equal(t, 2500, ac.previousAbsentValue(2500))
assert.Equal(t, 4999, ac.previousAbsentValue(5000))
assert.Equal(t, 4999, ac.previousAbsentValue(5200))
})
t.Run("Java Port 3", func(t *testing.T) {
// [Example 3] https://github.com/RoaringBitmap/RoaringBitmap/blob/5235aa62c32fa3bf7fae40a562e3edc75f61be4e/RoaringBitmap/src/test/java/org/roaringbitmap/TestArrayContainer.java#L821
ac := newArrayContainer()
for i := 0; i < 1000; i++ {
assert.Equal(t, i, ac.previousAbsentValue(uint16(i)))
}
})
}
func TestArrayContainerValidation(t *testing.T) {
array := newArrayContainer()
upperBound := arrayDefaultMaxSize
err := array.validate()
assert.Error(t, err)
for i := 0; i < upperBound; i++ {
array.iadd(uint16(i))
}
err = array.validate()
assert.NoError(t, err)
// Introduce a sort error
// We know that upperbound is unsorted because we populated up to upperbound
array.content[500] = uint16(upperBound + upperBound)
err = array.validate()
assert.Error(t, err)
array = newArrayContainer()
// Technically a run, but make sure the incorrect sort detection handles equal elements
for i := 0; i < upperBound; i++ {
array.iadd(uint16(1))
}
err = array.validate()
assert.NoError(t, err)
array = newArrayContainer()
for i := 0; i < 2*upperBound; i++ {
array.iadd(uint16(i))
}
err = array.validate()
assert.Error(t, err)
}
// go test -bench BenchmarkShortIteratorAdvance -run -
func BenchmarkShortIteratorAdvanceArray(b *testing.B) {
benchmarkContainerIteratorAdvance(b, newArrayContainer())
}
// go test -bench BenchmarkShortIteratorNext -run -
func BenchmarkShortIteratorNextArray(b *testing.B) {
benchmarkContainerIteratorNext(b, newArrayContainer())
}