-
Notifications
You must be signed in to change notification settings - Fork 78
/
dbs_test.go
61 lines (57 loc) · 1.2 KB
/
dbs_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
package nmea
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestDBS(t *testing.T) {
var dbstests = []struct {
name string
raw string
err string
msg DBS
}{
{
name: "good sentence",
raw: "$23DBS,01.9,f,0.58,M,00.3,F*21",
msg: DBS{
DepthFeet: 1.9,
DepthFeetUnit: DistanceUnitFeet,
DepthMeters: 0.58,
DepthMeterUnit: DistanceUnitMetre,
DepthFathoms: 0.3,
DepthFathomUnit: DistanceUnitFathom,
},
},
{
name: "good sentence 2",
raw: "$SDDBS,,,0187.5,M,,*1A", // Simrad ITI Trawl System
msg: DBS{
DepthFeet: 0,
DepthFeetUnit: "",
DepthMeters: 187.5,
DepthMeterUnit: DistanceUnitMetre,
DepthFathoms: 0,
DepthFathomUnit: "",
},
},
{
name: "bad validity",
raw: "$23DBS,01.9,f,0.58,M,00.3,F*25",
err: "nmea: sentence checksum mismatch [21 != 25]",
},
}
for _, tt := range dbstests {
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)
dbs := m.(DBS)
dbs.BaseSentence = BaseSentence{}
assert.Equal(t, tt.msg, dbs)
}
})
}
}