forked from klyve/go-nmea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dpt_test.go
55 lines (51 loc) · 1.01 KB
/
dpt_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
package nmea
import (
"testing"
"github.com/stretchr/testify/assert"
)
var dpttests = []struct {
name string
raw string
err string
msg DPT
}{
{
name: "good sentence",
raw: "$SDDPT,0.5,0.5,*7B",
msg: DPT{
Depth: MustParseDecimal("0.5"),
Offset: MustParseDecimal("0.5"),
RangeScale: MustParseDecimal("0"),
},
},
{
name: "good sentence with scale",
raw: "$SDDPT,0.5,0.5,0.1*54",
msg: DPT{
Depth: MustParseDecimal("0.5"),
Offset: MustParseDecimal("0.5"),
RangeScale: MustParseDecimal("0.1"),
},
},
{
name: "bad validity",
raw: "$SDDPT,0.5,0.5,*AA",
err: "nmea: sentence checksum mismatch [7B != AA]",
},
}
func TestDPT(t *testing.T) {
for _, tt := range dpttests {
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)
dpt := m.(DPT)
dpt.BaseSentence = BaseSentence{}
assert.Equal(t, tt.msg, dpt)
}
})
}
}