forked from adrianmo/go-nmea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmcp_test.go
50 lines (47 loc) · 1.07 KB
/
mcp_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
package nmea
import (
"github.com/stretchr/testify/assert"
"testing"
)
var mcptests = []struct {
name string
raw string
err string
msg MCP
}{
{
name: "good sentence",
raw: "$IIMCP,50.0,25.0,10.0,0,0,12345,9876,5432*72",
msg: MCP{
JoystickSurgeAxisCommandSetValue: 50.0,
JoystickSwayAxisCommandSetValue: 25.0,
JoystickYawAxisCommandSetValue: 10.0,
Reserved1: 0,
Reserved2: 0,
ValueErrorStatusWord: 12345,
ControlStateWord1: 9876,
ControlStateWord2: 5432,
},
},
{
name: "bad validity",
raw: "$IIMCP,50.0,25.0,10.0,0,0,12345,9876,5432*64",
err: "nmea: sentence checksum mismatch [72 != 64]",
},
}
func TestMCP(t *testing.T) {
for _, tt := range mcptests {
t.Run(tt.name, func(t *testing.T) {
m, err := Parse(tt.raw)
if tt.err != "" {
assert.Error(t, err)
assert.EqualError(t, err, tt.err)
} else {
assert.NoError(t, err)
mcp := m.(MCP)
mcp.BaseSentence = BaseSentence{}
assert.Equal(t, tt.msg, mcp)
}
})
}
}