-
Notifications
You must be signed in to change notification settings - Fork 78
/
dpt_test.go
64 lines (60 loc) · 1.04 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
56
57
58
59
60
61
62
63
64
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: 0.5,
Offset: 0.5,
RangeScale: 0,
},
},
{
name: "good sentence with scale",
raw: "$SDDPT,0.5,0.5,0.1*54",
msg: DPT{
Depth: 0.5,
Offset: 0.5,
RangeScale: 0.1,
},
},
{
name: "good sentence with 2 fields",
raw: "$INDPT,2.3,0.0*46",
msg: DPT{
Depth: 2.3,
Offset: 0,
RangeScale: 0,
},
},
{
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)
}
})
}
}