-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencoder_decoder_test.go
89 lines (65 loc) · 1.62 KB
/
encoder_decoder_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
package jq
import (
"testing"
"nikand.dev/go/cbor"
)
func TestEncoderDecoder(tb *testing.T) {
b := NewBuffer()
root := b.appendVal(arr{
raw{byte(cbor.Simple | cbor.True)},
raw{byte(cbor.Simple | cbor.False)},
True,
False,
})
tb.Logf("buffer %x\n%s", root, b.Dump())
var d Decoder
exp := []Off{0, 1, True, False}
arr, _ := d.ArrayMap(b.B, int(root), nil)
cmp := func(n string) {
if len(exp) != len(arr) {
tb.Errorf("%s: wanted %x, got %x", n, exp, arr)
} else {
for i := range exp {
if exp[i] != arr[i] {
tb.Errorf("%s: i %x: wanted %x, got %x", n, i, exp, arr)
}
}
}
}
cmp("array")
arr = make([]Off, len(exp))
for i := range exp {
_, arr[i] = d.ArrayMapIndex(b.B, int(root), i)
}
cmp("elements")
}
func TestEncoderDecoderLong(tb *testing.T) {
b := NewBuffer()
el1 := b.appendVal(raw{byte(cbor.Simple | cbor.True)})
el2 := b.appendVal(raw{byte(cbor.Simple | cbor.False)})
b.B = append(b.B, byte(cbor.String|cbor.Len2), 0x1, 0x00)
b.B = append(b.B, make([]byte, 0x100)...)
root := len(b.B)
b.B = b.Encoder.AppendArray(b.B, Off(len(b.B)), []Off{el1, el2, True, False})
tb.Logf("buffer %x\n%s", root, b.Dump())
var d Decoder
exp := []Off{0, 1, True, False}
arr, _ := d.ArrayMap(b.B, root, nil)
cmp := func(n string) {
if len(exp) != len(arr) {
tb.Errorf("%s: wanted %x, got %x", n, exp, arr)
} else {
for i := range exp {
if exp[i] != arr[i] {
tb.Errorf("%s: i %x: wanted %x, got %x", n, i, exp, arr)
}
}
}
}
cmp("array")
arr = make([]Off, len(exp))
for i := range exp {
_, arr[i] = d.ArrayMapIndex(b.B, root, i)
}
cmp("elements")
}