forked from paulmach/osm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag_test.go
119 lines (102 loc) · 2.32 KB
/
tag_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
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
114
115
116
117
118
119
package osm
import (
"bytes"
"reflect"
"testing"
)
func TestTags_AnyInteresting(t *testing.T) {
cases := []struct {
name string
tags Tags
interesting bool
}{
{
name: "has interesting",
tags: Tags{
{Key: "building", Value: "yes"},
},
interesting: true,
},
{
name: "no tags",
tags: Tags{},
interesting: false,
},
{
name: "no interesting tags",
tags: Tags{
{Key: "source", Value: "whatever"},
{Key: "history", Value: "lots"},
},
interesting: false,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
v := tc.tags.AnyInteresting()
if v != tc.interesting {
t.Errorf("incorrect interesting: %v != %v", v, tc.interesting)
}
})
}
}
func TestTags_MarshalJSON(t *testing.T) {
data, err := Tags{}.MarshalJSON()
if err != nil {
t.Errorf("marshal error: %v", err)
}
if !bytes.Equal(data, []byte(`{}`)) {
t.Errorf("incorrect data, got: %v", string(data))
}
t2 := Tags{
Tag{Key: "highway 🏤 ", Value: "crossing"},
Tag{Key: "source", Value: "Bind 🏤 "},
}
data, err = t2.MarshalJSON()
if err != nil {
t.Errorf("marshal error: %v", err)
}
if !bytes.Equal(data, []byte(`{"highway 🏤 ":"crossing","source":"Bind 🏤 "}`)) {
t.Errorf("incorrect data, got: %v", string(data))
}
}
func TestTags_UnmarshalJSON(t *testing.T) {
tags := Tags{}
data := []byte(`{"highway 🏤 ":"crossing","source":"Bind 🏤 "}`)
err := tags.UnmarshalJSON(data)
if err != nil {
t.Errorf("unmarshal error: %v", err)
}
tags.SortByKeyValue()
t2 := Tags{
Tag{Key: "highway 🏤 ", Value: "crossing"},
Tag{Key: "source", Value: "Bind 🏤 "},
}
if !reflect.DeepEqual(tags, t2) {
t.Errorf("incorrect tags: %v", tags)
}
}
func TestTags_SortByKeyValue(t *testing.T) {
tags := Tags{
Tag{Key: "highway", Value: "crossing"},
Tag{Key: "source", Value: "Bind"},
}
tags.SortByKeyValue()
if v := tags[0].Key; v != "highway" {
t.Errorf("incorrect sort got %v", v)
}
if v := tags[1].Key; v != "source" {
t.Errorf("incorrect sort got %v", v)
}
tags = Tags{
Tag{Key: "source", Value: "Bind"},
Tag{Key: "highway", Value: "crossing"},
}
tags.SortByKeyValue()
if v := tags[0].Key; v != "highway" {
t.Errorf("incorrect sort got %v", v)
}
if v := tags[1].Key; v != "source" {
t.Errorf("incorrect sort got %v", v)
}
}