-
Notifications
You must be signed in to change notification settings - Fork 22
/
cmd_test.go
124 lines (108 loc) · 4.04 KB
/
cmd_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
package ipod_test
import (
"bytes"
"encoding/binary"
"reflect"
"testing"
"github.com/oandrew/ipod"
audio "github.com/oandrew/ipod/lingo-audio"
)
type CustomPayload struct {
V uint32
}
var TestLingoID uint8 = 0xaa
var TestLingos struct {
CustomPayload `id:"0x01"`
}
func (p *CustomPayload) UnmarshalBinary(data []byte) error {
return binary.Read(bytes.NewReader(data), binary.BigEndian, &p.V)
}
func (p *CustomPayload) MarshalBinary() ([]byte, error) {
buf := bytes.Buffer{}
err := binary.Write(&buf, binary.BigEndian, p.V)
return buf.Bytes(), err
}
func TestCommand_MarshalBinary(t *testing.T) {
tests := []struct {
name string
cmd ipod.Command
want []byte
wantErr bool
}{
{"no-tr-no-payload", ipod.Command{ipod.NewLingoCmdID(0x01, 0x01), nil, nil}, nil, true},
{"no-tr-with-simple-payload", ipod.Command{ipod.NewLingoCmdID(0x01, 0x02), nil, uint32(0x03)}, []byte{0x01, 0x02, 0x00, 0x00, 0x00, 0x03}, false},
{"no-tr-with-custom-payload", ipod.Command{ipod.NewLingoCmdID(0x01, 0x02), nil, &CustomPayload{0x03}}, []byte{0x01, 0x02, 0x00, 0x00, 0x00, 0x03}, false},
{"with-tr-with-simple-payload", ipod.Command{ipod.NewLingoCmdID(0x01, 0x02), ipod.NewTransaction(0x01), uint32(0x03)}, []byte{0x01, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03}, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
serde := ipod.CommandSerde{
TrxEnabled: tt.cmd.Transaction != nil,
}
got, err := serde.MarshalCmd(&tt.cmd)
if (err != nil) != tt.wantErr {
t.Errorf("Command.MarshalBinary() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("Command.MarshalBinary() = %v, want %v", got, tt.want)
}
})
}
}
func TestCommand_UnmarshalBinary(t *testing.T) {
ipod.RegisterLingos(TestLingoID, TestLingos)
tests := []struct {
name string
data []byte
want ipod.Command
wantErr bool
}{
{"no-tr-unknown-payload", []byte{0xee, 0x01}, ipod.Command{ipod.NewLingoCmdID(0xee, 0x01), nil, ipod.UnknownPayload{}}, true},
{"with-tr-unknown-payload", []byte{0xee, 0x01, 0x00, 0x03}, ipod.Command{ipod.NewLingoCmdID(0xee, 0x01), nil, ipod.UnknownPayload{0x00, 0x03}}, true},
{"no-tr-known-payload", []byte{0xaa, 0x01, 0x00, 0x00, 0x00, 0x03}, ipod.Command{ipod.NewLingoCmdID(0xaa, 0x01), nil, &CustomPayload{V: 0x03}}, false},
{"with-tr-known-payload", []byte{0xaa, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03}, ipod.Command{ipod.NewLingoCmdID(0xaa, 0x01), ipod.NewTransaction(0x02), &CustomPayload{V: 0x03}}, false},
{"no-tr-known-payload-short", []byte{0xaa, 0x01, 0x00, 0x00, 0x03}, ipod.Command{ipod.NewLingoCmdID(0xaa, 0x01), ipod.NewTransaction(0x00), nil}, true},
{"with-tr-known-payload-short", []byte{0xaa, 0x01, 0x00, 0x02, 0x00, 0x00, 0x03}, ipod.Command{ipod.NewLingoCmdID(0xaa, 0x01), ipod.NewTransaction(0x02), nil}, true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
serde := ipod.CommandSerde{
TrxEnabled: tt.want.Transaction != nil,
}
got, err := serde.UnmarshalCmd(tt.data)
if (err != nil) != tt.wantErr {
t.Errorf("Command.UnmarshalBinary() error = %v, wantErr %v", err, tt.wantErr)
}
if !reflect.DeepEqual(got, &tt.want) {
t.Errorf("Command.UnmarshalBinary() = %v, want %v", got, &tt.want)
}
})
}
}
func BenchmarkCommand_MarshalBinary(b *testing.B) {
serde := ipod.CommandSerde{}
cmd := ipod.Command{
ID: ipod.NewLingoCmdID(0x0a, 0x03),
Transaction: ipod.NewTransaction(0x03e7),
Payload: audio.RetAccSampleRateCaps{
SampleRates: []uint32{8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000},
},
}
for i := 0; i < b.N; i++ {
serde.MarshalCmd(&cmd)
}
}
func BenchmarkCommand_UnmarshalBinary(b *testing.B) {
serde := ipod.CommandSerde{}
packet := []byte{
0x0a, 0x03, 0x03, 0xe7, 0x00, 0x00, 0x1f, 0x40,
0x00, 0x00, 0x2b, 0x11, 0x00, 0x00, 0x2e, 0xe0,
0x00, 0x00, 0x3e, 0x80, 0x00, 0x00, 0x56, 0x22,
0x00, 0x00, 0x5d, 0xc0, 0x00, 0x00, 0x7d, 0x00,
0x00, 0x00, 0xac, 0x44, 0x00, 0x00, 0xbb, 0x80,
}
for i := 0; i < b.N; i++ {
serde.UnmarshalCmd(packet)
}
}