-
Notifications
You must be signed in to change notification settings - Fork 562
/
clickhouse_rows_test.go
116 lines (111 loc) · 2.23 KB
/
clickhouse_rows_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
package clickhouse
import (
"github.com/ClickHouse/clickhouse-go/v2/lib/proto"
"github.com/stretchr/testify/assert"
"strconv"
"testing"
)
func TestReadWithEmptyBlock(t *testing.T) {
blockInitFunc := func() *proto.Block {
retVal := &proto.Block{
Packet: 0,
Columns: nil,
Timezone: nil,
}
retVal.AddColumn("col1", ("Int64"))
retVal.AddColumn("col2", ("String"))
return retVal
}
testCases := map[string]struct {
actual func() rows
expected int
}{
"none empty": {
func() rows {
firstBlock := blockInitFunc()
firstBlock.Append(int64(0), strconv.Itoa(0))
blockChan := make(chan *proto.Block)
go func() {
for i := 1; i < 10; i++ {
block := blockInitFunc()
block.Append(int64(i), strconv.Itoa(i))
blockChan <- block
}
close(blockChan)
}()
return rows{
err: nil,
row: 0,
block: firstBlock,
totals: nil,
errors: nil,
stream: blockChan,
columns: nil,
structMap: nil,
}
},
10,
},
"all empty": {
func() rows {
firstBlock := blockInitFunc()
blockChan := make(chan *proto.Block)
go func() {
for i := 1; i < 10; i++ {
block := blockInitFunc()
blockChan <- block
}
close(blockChan)
}()
return rows{
err: nil,
row: 0,
block: firstBlock,
totals: nil,
errors: nil,
stream: blockChan,
columns: nil,
structMap: nil,
}
},
0,
},
"some empty": {
func() rows {
firstBlock := blockInitFunc()
blockChan := make(chan *proto.Block)
go func() {
for i := 1; i < 10; i++ {
block := blockInitFunc()
if i%2 == 0 {
block.Append(int64(i), strconv.Itoa(i))
}
blockChan <- block
}
close(blockChan)
}()
return rows{
err: nil,
row: 0,
block: firstBlock,
totals: nil,
errors: nil,
stream: blockChan,
columns: nil,
structMap: nil,
}
},
4,
},
}
for name, testCase := range testCases {
t.Run(name, func(t *testing.T) {
actual := testCase.actual()
rowCnt := 0
for actual.Next() {
rowCnt++
}
assert.Equal(t, testCase.expected, rowCnt)
})
}
}