File: mta_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 (48 lines) | stat: -rw-r--r-- 897 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
package nmea

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

func TestMTA(t *testing.T) {
	var tests = []struct {
		name string
		raw  string
		err  string
		msg  MTA
	}{
		{
			name: "good sentence",
			raw:  "$IIMTA,13.3,C*04",
			msg: MTA{
				Temperature: 13.3,
				Unit:        TemperatureCelsius,
			},
		},
		{
			name: "invalid nmea: Temperature",
			raw:  "$IIMTA,x.x,C*35",
			err:  "nmea: IIMTA invalid temperature: x.x",
		},
		{
			name: "invalid nmea: Unit",
			raw:  "$IIMTA,13.3,F*01",
			err:  "nmea: IIMTA invalid temperature unit: F",
		},
	}
	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)
				mta := m.(MTA)
				mta.BaseSentence = BaseSentence{}
				assert.Equal(t, tt.msg, mta)
			}
		})
	}
}