-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid_test.go
66 lines (58 loc) · 1.81 KB
/
grid_test.go
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
package gridlocator
import (
"fmt"
"testing"
"github.com/stretchr/testify/require"
)
func TestConvert(t *testing.T) {
tests := []struct {
lat float64
long float64
expected string
err error
}{
{0, 0, "JJ00aa00AA", nil},
{48.146666666666667, 11.608333333333333, "JN58td25XE", nil}, // Munich
{-34.91, -56.211666666666667, "GF15vc41OO", nil}, // Montevideo
{38.92, -77.065, "FM18lw20ET", nil}, // Washington, D.C.
{-41.283333333333333, 174.745, "RE78ir92JA", nil}, // Wellington
}
for _, tt := range tests {
t.Run(fmt.Sprintf("%.5f %.5f", tt.lat, tt.long), func(t *testing.T) {
result, err := Convert(&Coordinates{tt.lat, tt.long})
if tt.err != nil {
require.Error(t, err)
require.Contains(t, err.Error(), tt.err.Error())
return
}
require.NoError(t, err)
require.Equal(t, tt.expected, result)
})
}
}
func TestConvertGridLocation(t *testing.T) {
tests := []struct {
location string
coordinates Coordinates
err error
}{
{"JJ00aa", Coordinates{0, 0}, nil},
{"JN58td", Coordinates{48.146666666666667, 11.608333333333333}, nil}, // Munich
{"GF15vc", Coordinates{-34.91, -56.211666666666667}, nil}, // Montevideo
{"FM18lw", Coordinates{38.92, -77.065}, nil}, // Washington, D.C.
{"RE78ir", Coordinates{-41.283333333333333, 174.745}, nil}, // Wellington
}
for _, tt := range tests {
t.Run(tt.location, func(t *testing.T) {
latitude, longitude, err := ConvertGridLocation(tt.location)
if tt.err != nil {
require.Error(t, err)
require.Contains(t, err.Error(), tt.err.Error())
return
}
require.NoError(t, err)
require.InDelta(t, tt.coordinates.Latitude, latitude, .1)
require.InDelta(t, tt.coordinates.Longitude, longitude, .1)
})
}
}