File: alr_test.go

package info (click to toggle)
golang-github-adrianmo-go-nmea 1.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 900 kB
  • sloc: makefile: 15
file content (79 lines) | stat: -rw-r--r-- 1,673 bytes parent folder | download
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package nmea

import (
	"github.com/stretchr/testify/assert"
	"testing"
)

func TestALR(t *testing.T) {
	var tests = []struct {
		name string
		raw  string
		err  string
		msg  ALR
	}{
		{
			name: "good sentence",
			raw:  "$RAALR,220516,001,A,A,Bilge pump alarm1*4c",
			msg: ALR{
				Time: Time{
					Valid:       true,
					Hour:        22,
					Minute:      05,
					Second:      16,
					Millisecond: 0,
				},
				AlarmIdentifier: 1,
				Condition:       StatusValid,
				State:           StatusValid,
				Description:     "Bilge pump alarm1",
			},
		},
		{
			name: "nmea: Description empty",
			raw:  "$RAALR,220516,001,A,A,*53",
			msg: ALR{
				Time: Time{
					Valid:       true,
					Hour:        22,
					Minute:      05,
					Second:      16,
					Millisecond: 0,
				},
				AlarmIdentifier: 1,
				Condition:       StatusValid,
				State:           StatusValid,
				Description:     "",
			},
		},
		{
			name: "invalid nmea: Time",
			raw:  "$RAALR,2x0516,001,A,A,Bilge pump alarm1*06",
			err:  "nmea: RAALR invalid time: 2x0516",
		},
		{
			name: "invalid nmea: Condition",
			raw:  "$RAALR,220516,001,x,A,Bilge pump alarm1*75",
			err:  "nmea: RAALR invalid alarm condition: x",
		},
		{
			name: "invalid nmea: State",
			raw:  "$RAALR,220516,001,A,x,Bilge pump alarm1*75",
			err:  "nmea: RAALR invalid alarm state: 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)
				alr := m.(ALR)
				alr.BaseSentence = BaseSentence{}
				assert.Equal(t, tt.msg, alr)
			}
		})
	}
}