forked from adrianmo/go-nmea
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dbt_test.go
46 lines (42 loc) · 812 Bytes
/
dbt_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
package nmea
import (
"testing"
"github.com/stretchr/testify/assert"
)
var dbttests = []struct {
name string
raw string
err string
msg DBT
}{
{
name: "good sentence",
raw: "$IIDBT,032.93,f,010.04,M,005.42,F*2C",
msg: DBT{
DepthFeet: 32.93,
DepthMeters: 10.04,
DepthFathoms: 5.42,
},
},
{
name: "bad validity",
raw: "$IIDBT,032.93,f,010.04,M,005.42,F*22",
err: "nmea: sentence checksum mismatch [2C != 22]",
},
}
func TestDBT(t *testing.T) {
for _, tt := range dbttests {
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)
dbt := m.(DBT)
dbt.BaseSentence = BaseSentence{}
assert.Equal(t, tt.msg, dbt)
}
})
}
}