-
Notifications
You must be signed in to change notification settings - Fork 79
/
mtw_test.go
48 lines (46 loc) · 892 Bytes
/
mtw_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
package nmea
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestMTW(t *testing.T) {
var tests = []struct {
name string
raw string
err string
msg MTW
}{
{
name: "good sentence",
raw: "$INMTW,17.9,C*1B",
msg: MTW{
Temperature: 17.9,
CelsiusValid: true,
},
},
{
name: "invalid Temperature",
raw: "$INMTW,x.9,C*65",
err: "nmea: INMTW invalid temperature: x.9",
},
{
name: "invalid CelsiusValid",
raw: "$INMTW,17.9,x*20",
err: "nmea: INMTW invalid unit of measurement celsius: x",
},
}
for _, tt := range tests {
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)
mtw := m.(MTW)
mtw.BaseSentence = BaseSentence{}
assert.Equal(t, tt.msg, mtw)
}
})
}
}