File: bwc_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 (113 lines) | stat: -rw-r--r-- 3,306 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package nmea

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

func TestBWC(t *testing.T) {
	var tests = []struct {
		name string
		raw  string
		err  string
		msg  BWC
	}{
		{
			name: "good sentence",
			raw:  "$GPBWC,220516,5130.02,N,00046.34,W,213.8,T,218.0,M,0004.6,N,EGLM*21",
			msg: BWC{
				Time: Time{
					Valid:       true,
					Hour:        22,
					Minute:      5,
					Second:      16,
					Millisecond: 0,
				},
				Latitude:                  51.50033333333334,
				Longitude:                 -0.7723333333333334,
				BearingTrue:               213.8,
				BearingTrueType:           BearingTrue,
				BearingMagnetic:           218,
				BearingMagneticType:       BearingMagnetic,
				DistanceNauticalMiles:     4.6,
				DistanceNauticalMilesUnit: DistanceUnitNauticalMile,
				DestinationWaypointID:     "EGLM",
				FFAMode:                   "",
			},
		},
		{
			name: "good sentence no waypoint",
			raw:  "$GPBWC,081837,,,,,,T,,M,,N,*13",
			msg: BWC{
				Time:                      Time{Valid: true, Hour: 8, Minute: 18, Second: 37, Millisecond: 0},
				Latitude:                  0,
				Longitude:                 0,
				BearingTrue:               0,
				BearingTrueType:           BearingTrue,
				BearingMagnetic:           0,
				BearingMagneticType:       BearingMagnetic,
				DistanceNauticalMiles:     0,
				DistanceNauticalMilesUnit: DistanceUnitNauticalMile,
				DestinationWaypointID:     "",
				FFAMode:                   "",
			},
		},
		{
			name: "good sentence with FAAMode",
			raw:  "$GPBWC,220516,5130.02,N,00046.34,W,213.8,T,218.0,M,0004.6,N,EGLM,D*49",
			msg: BWC{
				Time: Time{
					Valid:       true,
					Hour:        22,
					Minute:      5,
					Second:      16,
					Millisecond: 0,
				},
				Latitude:                  51.50033333333334,
				Longitude:                 -0.7723333333333334,
				BearingTrue:               213.8,
				BearingTrueType:           BearingTrue,
				BearingMagnetic:           218,
				BearingMagneticType:       BearingMagnetic,
				DistanceNauticalMiles:     4.6,
				DistanceNauticalMilesUnit: DistanceUnitNauticalMile,
				DestinationWaypointID:     "EGLM",
				FFAMode:                   FAAModeDifferential,
			},
		},
		{
			name: "invalid nmea: Time",
			raw:  "$GPBWC,2x0516,5130.02,N,00046.34,W,213.8,T,218.0,M,0004.6,N,EGLM*6B",
			err:  "nmea: GPBWC invalid time: 2x0516",
		},
		{
			name: "invalid nmea: BearingTrueValid",
			raw:  "$GPBWC,220516,5130.02,N,00046.34,W,213.8,M,218.0,M,0004.6,N,EGLM*38",
			err:  "nmea: GPBWC invalid true bearing type: M",
		},
		{
			name: "invalid nmea: BearingMagneticValid",
			raw:  "$GPBWC,220516,5130.02,N,00046.34,W,213.8,T,218.0,T,0004.6,N,EGLM*38",
			err:  "nmea: GPBWC invalid magnetic bearing type: T",
		},
		{
			name: "invalid nmea: DistanceNauticalMilesValid",
			raw:  "$GPBWC,220516,5130.02,N,00046.34,W,213.8,T,218.0,M,0004.6,K,EGLM*24",
			err:  "nmea: GPBWC invalid is distance to waypoint nautical miles unit: K",
		},
	}
	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)
				bwc := m.(BWC)
				bwc.BaseSentence = BaseSentence{}
				assert.Equal(t, tt.msg, bwc)
			}
		})
	}
}