-
Notifications
You must be signed in to change notification settings - Fork 49
/
tag_test.go
207 lines (186 loc) · 3.78 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
package osm
import (
"bytes"
"reflect"
"testing"
)
func TestTags_FindTag(t *testing.T) {
cases := []struct {
name string
tags Tags
key string
tag *Tag
}{
{
name: "find tag",
tags: Tags{
{Key: "area", Value: "true"},
{Key: "building", Value: "yes"},
},
key: "building",
tag: &Tag{Key: "building", Value: "yes"},
},
{
name: "not found",
tags: Tags{
{Key: "building", Value: "yes"},
},
key: "not found",
tag: nil,
},
{
name: "empty value",
tags: Tags{
{Key: "present", Value: ""},
},
key: "present",
tag: &Tag{Key: "present", Value: ""},
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
v := tc.tags.FindTag(tc.key)
if !reflect.DeepEqual(v, tc.tag) {
t.Errorf("incorrect find tag: %v != %v", v, tc.tag)
}
})
}
}
func TestTags_HasTag(t *testing.T) {
cases := []struct {
name string
tags Tags
key string
has bool
}{
{
name: "has tag",
tags: Tags{
{Key: "area", Value: "true"},
{Key: "building", Value: "yes"},
},
key: "building",
has: true,
},
{
name: "not found",
tags: Tags{
{Key: "building", Value: "yes"},
},
key: "not found",
has: false,
},
{
name: "empty value",
tags: Tags{
{Key: "present", Value: ""},
},
key: "present",
has: true,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
v := tc.tags.HasTag(tc.key)
if v != tc.has {
t.Errorf("incorrect has tag: %v != %v", v, tc.has)
}
})
}
}
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)
}
}