forked from paulmach/osm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarshal_test.go
415 lines (341 loc) · 7.82 KB
/
marshal_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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
package osm
import (
"bytes"
"compress/gzip"
"encoding/xml"
"io/ioutil"
"os"
"reflect"
"testing"
"time"
)
func TestNode_Marshal(t *testing.T) {
c := loadChange(t, "testdata/changeset_38162210.osc")
n := c.Create.Nodes[12]
// verify it's a good test
if len(n.Tags) == 0 {
t.Fatalf("test should have some tags")
}
o := &OSM{}
o.Append(n)
checkMarshal(t, o)
// with committed at
tp := time.Date(2017, 1, 1, 0, 0, 0, 0, time.UTC)
o.Nodes[0].Committed = &tp
checkMarshal(t, o)
}
func TestNode_Marshal_roundoff(t *testing.T) {
c := loadChange(t, "testdata/changeset_38162210.osc")
n := c.Create.Nodes[194]
o := &OSM{}
o.Append(n)
checkMarshal(t, o)
}
func TestNodes_Marshal(t *testing.T) {
c := loadChange(t, "testdata/changeset_38162210.osc")
ns1 := c.Create.Nodes
o := &OSM{Nodes: ns1}
checkMarshal(t, o)
// nodes with no tags
for _, n := range o.Nodes {
n.Tags = nil
}
checkMarshal(t, o)
}
func TestWay_Marshal(t *testing.T) {
c := loadChange(t, "testdata/changeset_38162210.osc")
w := c.Create.Ways[5]
// verify it's a good test
if len(w.Tags) == 0 {
t.Fatalf("test should have some tags")
}
o := &OSM{}
o.Append(w)
checkMarshal(t, o)
}
func TestWay_Marshal_updates(t *testing.T) {
o := loadOSM(t, "testdata/way-updates.osm")
checkMarshal(t, o)
// with no updates
o.Ways[0].Updates = nil
checkMarshal(t, o)
}
func TestRelation_Marshal(t *testing.T) {
c := loadChange(t, "testdata/changeset_38162206.osc")
r := c.Create.Relations[0]
// verify it's a good test
if len(r.Tags) == 0 {
t.Fatalf("test should have some tags")
}
o := &OSM{}
o.Append(r)
checkMarshal(t, o)
}
func TestRelation_Marshal_updates(t *testing.T) {
o := loadOSM(t, "testdata/relation-updates.osm")
checkMarshal(t, o)
// with no updates
o.Relations[0].Updates = nil
checkMarshal(t, o)
}
func TestRelation_Marshal_memberLocation(t *testing.T) {
o := &OSM{
Relations: Relations{
{
ID: 123,
Members: Members{
{Type: TypeNode, Ref: 1, Version: 2, Lat: 3, Lon: 4},
{Type: TypeWay, Ref: 2, Version: 3, Lat: 4, Lon: 5},
},
},
},
}
checkMarshal(t, o)
}
func TestRelation_Marshal_protobufOrientation(t *testing.T) {
o := &OSM{
Relations: Relations{
{
ID: 123,
Members: Members{
{Type: TypeNode, Ref: 1, Version: 2, Orientation: 1},
{Type: TypeWay, Ref: 2, Version: 3, Orientation: 2},
},
Updates: Updates{
{Index: 0, Reverse: true},
},
},
},
}
checkMarshal(t, o)
}
func BenchmarkChange_MarshalXML(b *testing.B) {
filename := "testdata/changeset_38162206.osc"
data := readFile(b, filename)
c := &Change{}
err := xml.Unmarshal(data, c)
if err != nil {
b.Fatalf("unable to unmarshal: %v", err)
}
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
_, err := xml.Marshal(c)
if err != nil {
b.Fatalf("unable to marshal: %v", err)
}
}
}
func BenchmarkChangeSet_Marshal(b *testing.B) {
cs := &Changeset{
ID: 38162206,
UserID: 2744209,
User: "grah735",
Change: loadChange(b, "testdata/changeset_38162206.osc"),
}
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
_, err := cs.Marshal()
if err != nil {
b.Fatalf("unable to marshal: %v", err)
}
}
}
func BenchmarkUnmarshalWays(b *testing.B) {
o := loadOSM(b, "testdata/way-updates.osm")
ways := o.Ways
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
data, _ := ways.Marshal()
UnmarshalWays(data)
}
}
func BenchmarkUnmarshalRelations(b *testing.B) {
o := loadOSM(b, "testdata/relation-updates.osm")
relations := o.Relations
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
data, _ := relations.Marshal()
UnmarshalRelations(data)
}
}
func BenchmarkChangeset_Marshal_gzip(b *testing.B) {
cs := &Changeset{
ID: 38162206,
UserID: 2744209,
User: "grah735",
Change: loadChange(b, "testdata/changeset_38162206.osc"),
}
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
data, err := cs.Marshal()
if err != nil {
b.Fatalf("unable to marshal: %v", err)
}
w, _ := gzip.NewWriterLevel(&bytes.Buffer{}, gzip.BestCompression)
_, err = w.Write(data)
if err != nil {
b.Fatalf("unable to write: %v", err)
}
err = w.Close()
if err != nil {
b.Fatalf("unable to close: %v", err)
}
}
}
func BenchmarkChangeset_UnmarshalXML(b *testing.B) {
filename := "testdata/changeset_38162206.osc"
data := readFile(b, filename)
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
c := &Change{}
err := xml.Unmarshal(data, c)
if err != nil {
b.Fatalf("unable to unmarshal: %v", err)
}
}
}
func BenchmarkUnmarshalChangeset(b *testing.B) {
cs := &Changeset{
ID: 38162206,
UserID: 2744209,
User: "grah735",
Change: loadChange(b, "testdata/changeset_38162206.osc"),
}
data, err := cs.Marshal()
if err != nil {
b.Fatalf("unable to marshal: %v", err)
}
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
_, err := UnmarshalChangeset(data)
if err != nil {
b.Fatalf("unable to unmarshal: %v", err)
}
}
}
func BenchmarkUnmarshalChangeset_gzip(b *testing.B) {
cs := &Changeset{
ID: 38162206,
UserID: 2744209,
User: "grah735",
Change: loadChange(b, "testdata/changeset_38162206.osc"),
}
data, err := cs.Marshal()
if err != nil {
b.Fatalf("unable to marshal: %v", err)
}
buff := &bytes.Buffer{}
w, _ := gzip.NewWriterLevel(buff, gzip.BestCompression)
_, err = w.Write(data)
if err != nil {
b.Fatalf("unable to write: %v", err)
}
err = w.Close()
if err != nil {
b.Fatalf("unable to close: %v", err)
}
data = buff.Bytes()
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
r, _ := gzip.NewReader(bytes.NewReader(data))
ungzipped, _ := ioutil.ReadAll(r)
_, err := UnmarshalChangeset(ungzipped)
if err != nil {
b.Fatalf("unable to unmarshal: %v", err)
}
}
}
func loadChange(t testing.TB, filename string) *Change {
data := readFile(t, filename)
c := &Change{}
err := xml.Unmarshal(data, &c)
if err != nil {
t.Fatalf("unable to unmarshal %s: %v", filename, err)
}
cleanXMLNameFromChange(c)
return c
}
func loadOSM(t testing.TB, filename string) *OSM {
data := readFile(t, filename)
o := &OSM{}
err := xml.Unmarshal(data, &o)
if err != nil {
t.Fatalf("unable to unmarshal %s: %v", filename, err)
}
cleanXMLNameFromOSM(o)
return o
}
func readFile(t testing.TB, filename string) []byte {
f, err := os.Open(filename)
if err != nil {
t.Fatalf("unable to open %s: %v", filename, err)
}
defer f.Close()
data, err := ioutil.ReadAll(f)
if err != nil {
t.Fatalf("unable to read file %s: %v", filename, err)
}
return data
}
func checkMarshal(t testing.TB, o1 *OSM) *OSM {
t.Helper()
data, err := o1.Marshal()
if err != nil {
t.Fatalf("unable to marshal: %v", err)
}
o2, err := UnmarshalOSM(data)
if err != nil {
t.Fatalf("unable to unmarshal: %v", err)
}
if !reflect.DeepEqual(o1, o2) {
t.Errorf("results not equal")
// verify nodes
ns1 := o1.Nodes
ns2 := o2.Nodes
if len(ns1) != len(ns2) {
t.Fatalf("different number of nodes: %d != %d", len(ns1), len(ns2))
}
for i := range ns1 {
if !reflect.DeepEqual(ns1[i], ns2[i]) {
t.Errorf("nodes %d are not equal", i)
t.Logf("%+v", ns1[i])
t.Logf("%+v", ns2[i])
}
}
// verify ways
ws1 := o1.Ways
ws2 := o2.Ways
if len(ws1) != len(ws2) {
t.Fatalf("different number of ways: %d != %d", len(ws1), len(ws2))
}
for i := range ws1 {
if !reflect.DeepEqual(ws1[i], ws2[i]) {
t.Errorf("ways %d are not equal", i)
t.Logf("%+v", ws1[i])
t.Logf("%+v", ws2[i])
}
}
// verify relations
rs1 := o1.Relations
rs2 := o2.Relations
if len(rs1) != len(rs2) {
t.Fatalf("different number of ways: %d != %d", len(rs1), len(rs2))
}
for i := range ws1 {
if !reflect.DeepEqual(rs1[i], rs2[i]) {
t.Errorf("relations %d are not equal", i)
t.Logf("%+v", rs1[i])
t.Logf("%+v", rs2[i])
}
}
}
return o2
}