-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathbooleanreader_test.go
61 lines (56 loc) · 1.21 KB
/
booleanreader_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
package orc
import (
"bytes"
"io"
"reflect"
"testing"
)
func TestBooleanReader(t *testing.T) {
testCases := []struct {
input []byte
expect func([]bool)
}{
{
input: []byte{0xff, 0x80},
expect: func(output []bool) {
expected := []bool{true, false, false, false, false, false, false, false}
if !reflect.DeepEqual(expected, output) {
t.Errorf("Test failed, expected %v to equal %v", output, expected)
}
},
},
{
input: []byte{0xff, 0x80},
expect: func(output []bool) {
expected := []bool{true, false, false, false, false, false, false, false}
if !reflect.DeepEqual(expected, output) {
t.Errorf("Test failed, expected %v to equal %v", output, expected)
}
},
},
}
for _, tc := range testCases {
r := NewBooleanReader(bytes.NewReader(tc.input))
var output []bool
for r.Next() {
b := r.Bool()
output = append(output, b)
}
if err := r.Err(); err != nil && err != io.EOF {
t.Fatal(err)
}
tc.expect(output)
}
}
func BenchmarkBooleanReader(b *testing.B) {
input := bytes.Repeat([]byte{0xff, 0x80}, b.N)
bs := NewBooleanReader(bytes.NewReader(input))
b.ResetTimer()
for i := 0; i < b.N; i++ {
if bs.Next() {
bs.Bool()
} else {
break
}
}
}