-
Notifications
You must be signed in to change notification settings - Fork 1
/
readchan_test.go
127 lines (103 loc) · 2.21 KB
/
readchan_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
package readchan
import (
"bytes"
"compress/gzip"
"context"
"io"
"io/ioutil"
"log"
"os"
"testing"
)
var (
testFile = "./testdata/test.data.gz"
testData []byte
testReader io.ReadSeeker
)
func init() {
var err error
f, err := os.Open(testFile)
if err != nil {
log.Fatal(err)
}
defer f.Close()
r, err := gzip.NewReader(f)
if err != nil {
log.Fatal(err)
}
testData, err = ioutil.ReadAll(r)
if err != nil {
log.Fatal(err)
}
testReader = bytes.NewReader(testData)
}
func TestChunkReader(t *testing.T) {
defer testReader.Seek(0, 0)
var newData []byte
readChan := Reads(context.TODO(), testReader, 1024, 1)
for chunk := range readChan {
newData = append(newData, chunk.Data...)
chunk.Done()
if chunk.Err != nil && chunk.Err != io.EOF {
t.Fatal(chunk.Err)
}
}
if !bytes.Equal(testData, newData) {
t.Fatal("mismatched data")
}
}
func TestLineReader(t *testing.T) {
defer testReader.Seek(0, 0)
var newData []byte
lines := 0
readChan := Lines(context.TODO(), testReader, 1)
for chunk := range readChan {
newData = append(newData, chunk.Data...)
newData = append(newData, '\n')
lines++
chunk.Done()
if chunk.Err != nil && chunk.Err != io.EOF {
t.Fatal(chunk.Err)
}
}
if lines != 1140 {
t.Fatalf("incorrect line count. Counted %d, expected %d", lines, 1140)
}
if !bytes.Equal(testData, newData) {
t.Fatal("mismatched data")
}
}
func BenchmarkChunkReader(b *testing.B) {
defer testReader.Seek(0, 0)
newData := make([]byte, 0)
b.ResetTimer()
for i := 0; i < b.N; i++ {
newData = newData[:0]
testReader.Seek(0, 0)
readChan := Reads(context.TODO(), testReader, 1024, 1)
for chunk := range readChan {
newData = append(newData, chunk.Data...)
chunk.Done()
if chunk.Err != nil && chunk.Err != io.EOF {
b.Fatal(chunk.Err)
}
}
}
}
func BenchmarkLineReader(b *testing.B) {
defer testReader.Seek(0, 0)
newData := make([]byte, 0)
b.ResetTimer()
for i := 0; i < b.N; i++ {
newData = newData[:0]
testReader.Seek(0, 0)
readChan := Lines(context.TODO(), testReader, 1)
for chunk := range readChan {
newData = append(newData, chunk.Data...)
chunk.Done()
if chunk.Err != nil && chunk.Err != io.EOF {
b.Fatal(chunk.Err)
}
}
}
}