-
Notifications
You must be signed in to change notification settings - Fork 79
/
mwd_test.go
59 lines (56 loc) · 1.15 KB
/
mwd_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
package nmea
import (
"github.com/stretchr/testify/assert"
"testing"
)
var mwdtests = []struct {
name string
raw string
err string
msg MWD
}{
{
name: "good sentence",
raw: "$WIMWD,10.1,T,10.1,M,12,N,40,M*5D",
msg: MWD{
WindDirectionTrue: 10.1,
TrueValid: true,
WindDirectionMagnetic: 10.1,
MagneticValid: true,
WindSpeedKnots: 12,
KnotsValid: true,
WindSpeedMeters: 40,
MetersValid: true,
},
},
{
name: "empty data",
raw: "$WIMWD,,,,,,,,*40",
msg: MWD{
WindDirectionTrue: 0,
TrueValid: false,
WindDirectionMagnetic: 0,
MagneticValid: false,
WindSpeedKnots: 0,
KnotsValid: false,
WindSpeedMeters: 0,
MetersValid: false,
},
},
}
func TestMWD(t *testing.T) {
for _, tt := range mwdtests {
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)
mwd := m.(MWD)
mwd.BaseSentence = BaseSentence{}
assert.Equal(t, tt.msg, mwd)
}
})
}
}