-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathenumCode_test.go
71 lines (68 loc) · 1.59 KB
/
enumCode_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
package rsdic
import (
. "github.com/smartystreets/goconvey/convey"
"math/rand"
"testing"
)
func runTestenumCode(x uint64, t *testing.T) {
Convey("When encode value", t, func() {
rankSB := popCount(x)
code := enumEncode(x, rankSB)
Convey("The decode value should be equal to x", func() {
So(enumDecode(code, rankSB), ShouldEqual, x)
})
Convey("The bits should be equal to x", func() {
for i := uint8(0); i < 64; i++ {
So(enumBit(code, rankSB, i), ShouldEqual, getBit(x, i))
}
})
Convey("The ranks should be equal to x", func() {
rank := 0
for i := uint8(0); i < 64; i++ {
So(enumRank(code, rankSB, i), ShouldEqual, rank)
if getBit(x, i) {
rank++
}
}
})
Convey("The selects should be equal to x", func() {
onenum := uint8(0)
zeroNum := uint8(0)
for i := uint8(0); i < 64; i++ {
bit := getBit(x, i)
if bit {
onenum++
So(enumSelect(code, rankSB, onenum, bit), ShouldEqual, i)
} else {
zeroNum++
So(enumSelect(code, rankSB, zeroNum, bit), ShouldEqual, i)
}
}
})
Convey("The runzeros should be equal to x", func() {
for i := uint8(0); i < 64; i++ {
runZeros := uint8(0)
for ; i+runZeros < 64; i++ {
if getBit(x, i+runZeros) {
break
}
}
So(enumRunZeros(code, rankSB, i), ShouldEqual, runZeros)
}
})
})
}
func TestenumCode(t *testing.T) {
runTestenumCode(uint64(0), t)
testN := 2
for pc := 0; pc < 64; pc++ {
for i := 0; i < testN; i++ {
x := uint64(0)
for j := 0; j < pc; j++ {
pos := uint8(rand.Intn(64))
x |= (1 << pos)
}
runTestenumCode(x, t)
}
}
}