forked from colinmarc/sequencefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwritable_test.go
86 lines (75 loc) · 2.48 KB
/
writable_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
package sequencefile
import (
"strconv"
"testing"
"github.com/stretchr/testify/assert"
)
// To generate the values used in these tests:
// scala> val baos = new java.io.ByteArrayOutputStream()
// scala> val dos = new java.io.DataOutputStream(baos)
// scala> baos.reset; new org.apache.hadoop.io.IntWritable(42).write(dos)
// scala> javax.xml.bind.DatatypeConverter.printHexBinary(baos.toByteArray)
var bytesWritables = []struct {
b []byte
expected []byte
}{
{[]byte{0x00, 0x00, 0x00, 0x00}, []byte("")},
{[]byte{0x00, 0x00, 0x00, 0x06, 0x66, 0x6F, 0x6F, 0x62, 0x61, 0x72}, []byte("foobar")},
}
func TestBytesWritable(t *testing.T) {
for _, spec := range bytesWritables {
t.Run(string(spec.expected), func(t *testing.T) {
assert.Equal(t, spec.expected, BytesWritable(spec.b), "BytesWritable should unwrap correctly")
})
}
}
var texts = []struct {
b []byte
expected string
}{
{[]byte{0x00}, ""},
{[]byte{0x06, 0x66, 0x6F, 0x6F, 0x62, 0x61, 0x72}, "foobar"},
}
func TestText(t *testing.T) {
for _, spec := range texts {
t.Run(spec.expected, func(t *testing.T) {
assert.Equal(t, spec.expected, Text(spec.b), "Text should unwrap correctly")
})
}
}
var intWritables = []struct {
b []byte
expected int32
}{
{[]byte{0x00, 0x00, 0x00, 0x00}, 0},
{[]byte{0x00, 0x00, 0x00, 0x2A}, 42},
{[]byte{0xFF, 0xFF, 0xFC, 0x18}, -1000},
{[]byte{0x7F, 0xFF, 0xFF, 0xFF}, 2147483647},
{[]byte{0x80, 0x00, 0x00, 0x01}, -2147483647},
}
func TestIntWritable(t *testing.T) {
for _, spec := range intWritables {
t.Run(strconv.FormatInt(int64(spec.expected), 10), func(t *testing.T) {
assert.Equal(t, spec.expected, IntWritable(spec.b), "IntWritable should unwrap correctly")
})
}
}
var longWritables = []struct {
b []byte
expected int64
}{
{[]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, 0},
{[]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2A}, 42},
{[]byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFC, 0x18}, -1000},
{[]byte{0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0xFF, 0xFF}, 2147483647},
{[]byte{0xFF, 0xFF, 0xFF, 0xFF, 0x80, 0x00, 0x00, 0x01}, -2147483647},
{[]byte{0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, 576460752303423488},
{[]byte{0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, -576460752303423488},
}
func TestLongWritable(t *testing.T) {
for _, spec := range longWritables {
t.Run(strconv.FormatInt(spec.expected, 10), func(t *testing.T) {
assert.Equal(t, spec.expected, LongWritable(spec.b), "LongWritable should unwrap correctly")
})
}
}