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
|
package osmpass
import (
"testing"
"github.com/paulmach/osm"
"github.com/stretchr/testify/assert"
)
func TestIsMountainPass(t *testing.T) {
cases := []struct {
name string
tags map[string]string
want bool
}{
{"tagged", map[string]string{"mountain_pass": "yes", "name": "Col de la Gineste"}, true},
{"legacy natural", map[string]string{"natural": "mountain_pass"}, true},
{"not a pass", map[string]string{"natural": "saddle", "name": "Col de la Gineste"}, false},
{"no tags", map[string]string{}, false},
}
for _, c := range cases {
t.Run(c.name, func(t *testing.T) {
node := &osm.Node{Tags: osm.Tags{}}
for key, value := range c.tags {
node.Tags = append(node.Tags, osm.Tag{Key: key, Value: value})
}
assert.Equal(t, c.want, isMountainPass(node))
})
}
}
func TestParseElevation(t *testing.T) {
cases := []struct {
input string
want int
ok bool
}{
{"1320", 1320, true},
{"1320 m", 1320, true},
{" 447.5", 447, true},
{"", 0, false},
{"unknown", 0, false},
}
for _, c := range cases {
value, ok := parseElevation(c.input)
assert.Equal(t, c.want, value)
assert.Equal(t, c.ok, ok)
}
}
|