File: bww_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 (52 lines) | stat: -rw-r--r-- 1,162 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
package nmea

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

func TestBWW(t *testing.T) {
	var tests = []struct {
		name string
		raw  string
		err  string
		msg  BWW
	}{
		{
			name: "good sentence",
			raw:  "$GPBWW,097.0,T,103.2,M,POINTB,POINTA*41",
			msg: BWW{
				BearingTrue:           97.0,
				BearingTrueType:       BearingTrue,
				BearingMagnetic:       103.2,
				BearingMagneticType:   BearingMagnetic,
				DestinationWaypointID: "POINTB",
				OriginWaypointID:      "POINTA",
			},
		},
		{
			name: "invalid nmea: BearingTrueValid",
			raw:  "$GPBWW,097.0,M,103.2,M,POINTB,POINTA*58",
			err:  "nmea: GPBWW invalid true bearing type: M",
		},
		{
			name: "invalid nmea: BearingMagneticValid",
			raw:  "$GPBWW,097.0,T,103.2,T,POINTB,POINTA*58",
			err:  "nmea: GPBWW invalid magnetic bearing type: T",
		},
	}
	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)
				bww := m.(BWW)
				bww.BaseSentence = BaseSentence{}
				assert.Equal(t, tt.msg, bww)
			}
		})
	}
}