forked from segmentio/parquet-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page_buffer_test.go
112 lines (88 loc) · 2.28 KB
/
page_buffer_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
package parquet_test
import (
"bytes"
"io"
"strings"
"testing"
"testing/iotest"
"github.com/segmentio/parquet-go"
)
func TestPageBufferPool(t *testing.T) {
testPageBufferPool(t, parquet.NewPageBufferPool())
}
func TestFileBufferPool(t *testing.T) {
testPageBufferPool(t, parquet.NewFileBufferPool("/tmp", "buffers.*"))
}
func testPageBufferPool(t *testing.T, pool parquet.PageBufferPool) {
tests := []struct {
scenario string
function func(*testing.T, parquet.PageBufferPool)
}{
{
scenario: "write bytes",
function: testPageBufferPoolWriteBytes,
},
{
scenario: "write string",
function: testPageBufferPoolWriteString,
},
{
scenario: "copy to buffer",
function: testPageBufferPoolCopyToBuffer,
},
{
scenario: "copy from buffer",
function: testPageBufferPoolCopyFromBuffer,
},
}
for _, test := range tests {
t.Run(test.scenario, func(t *testing.T) { test.function(t, pool) })
}
}
func testPageBufferPoolWriteBytes(t *testing.T, pool parquet.PageBufferPool) {
const content = "Hello World!"
buffer := pool.GetPageBuffer()
_, err := buffer.Write([]byte(content))
if err != nil {
t.Fatal(err)
}
assertBufferContent(t, buffer, content)
}
func testPageBufferPoolWriteString(t *testing.T, pool parquet.PageBufferPool) {
const content = "Hello World!"
buffer := pool.GetPageBuffer()
_, err := io.WriteString(buffer, content)
if err != nil {
t.Fatal(err)
}
assertBufferContent(t, buffer, content)
}
func testPageBufferPoolCopyToBuffer(t *testing.T, pool parquet.PageBufferPool) {
const content = "ABC"
buffer := pool.GetPageBuffer()
reader := strings.NewReader(content)
_, err := io.Copy(buffer, struct{ io.Reader }{reader})
if err != nil {
t.Fatal(err)
}
assertBufferContent(t, buffer, content)
}
func testPageBufferPoolCopyFromBuffer(t *testing.T, pool parquet.PageBufferPool) {
const content = "0123456789"
buffer := pool.GetPageBuffer()
if _, err := io.WriteString(buffer, content); err != nil {
t.Fatal(err)
}
writer := new(bytes.Buffer)
_, err := io.Copy(struct{ io.Writer }{writer}, buffer)
if err != nil {
t.Fatal(err)
}
assertBufferContent(t, writer, content)
}
func assertBufferContent(t *testing.T, b io.Reader, s string) {
t.Helper()
if err := iotest.TestReader(b, []byte(s)); err != nil {
t.Error(err)
}
}