File: xte_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 (74 lines) | stat: -rw-r--r-- 1,661 bytes parent folder | download | duplicates (2)
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
package nmea

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

func TestXTE(t *testing.T) {
	var tests = []struct {
		name string
		raw  string
		err  string
		msg  XTE
	}{
		{
			name: "good sentence",
			raw:  "$GPXTE,V,V,10.1,L,N*6E",
			msg: XTE{
				StatusGeneralWarning:     "V",
				StatusLockWarning:        "V",
				CrossTrackErrorMagnitude: 10.1,
				DirectionToSteer:         "L",
				CrossTrackUnits:          "N",
				FFAMode:                  "",
			},
		},
		{
			name: "good sentence with FAAMode",
			raw:  "$GPXTE,V,V,,,N,S*43",
			msg: XTE{
				StatusGeneralWarning:     "V",
				StatusLockWarning:        "V",
				CrossTrackErrorMagnitude: 0,
				DirectionToSteer:         "",
				CrossTrackUnits:          "N",
				FFAMode:                  "S",
			},
		},
		{
			name: "invalid nmea: StatusGeneralWarning",
			raw:  "$GPXTE,x,V,,,N,S*6d",
			err:  "nmea: GPXTE invalid general warning: x",
		},
		{
			name: "invalid nmea: StatusLockWarning",
			raw:  "$GPXTE,V,x,,,N,S*6d",
			err:  "nmea: GPXTE invalid lock warning: x",
		},
		{
			name: "invalid nmea: DirectionToSteer",
			raw:  "$GPXTE,V,V,,x,N,S*3b",
			err:  "nmea: GPXTE invalid direction to steer: x",
		},
		{
			name: "invalid nmea: CrossTrackUnits",
			raw:  "$GPXTE,V,V,,,x,S*75",
			err:  "nmea: GPXTE invalid cross track units: 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)
				xte := m.(XTE)
				xte.BaseSentence = BaseSentence{}
				assert.Equal(t, tt.msg, xte)
			}
		})
	}
}