-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathquery_test.go
132 lines (124 loc) · 3.07 KB
/
query_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
package overpass
import (
"bytes"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"reflect"
"testing"
"testing/iotest"
)
func TestUnmarshal(t *testing.T) {
testCases := []struct {
input string
want Result
}{
{
`{"elements":[{"type":"way","id":1,
"bounds":{"minlat":-37.9,"minlon":144.6,"maxlat":-37.8,"maxlon":144.7}
}]}`,
Result{
Count: 1,
Ways: map[int64]*Way{1: {
Bounds: Box{Min: Point{-37.9, 144.6}, Max: Point{-37.8, 144.7}},
}},
},
},
{
`{"elements":[{"type":"way","id":1,
"geometry":[{"lat":-37.9,"lon":144.6},{"lat":-37.8,"lon":144.7}]
}]}`,
Result{
Count: 1,
Ways: map[int64]*Way{1: {
Geometry: []Point{{-37.9, 144.6}, {-37.8, 144.7}},
}},
},
},
{
`{"elements":[{"type":"relation","id":1,
"bounds":{"minlat":-37.9,"minlon":144.6,"maxlat":-37.8,"maxlon":144.7}
}]}`,
Result{
Count: 1,
Relations: map[int64]*Relation{1: {
Bounds: Box{Min: Point{-37.9, 144.6}, Max: Point{-37.8, 144.7}},
}},
},
},
}
for i, tc := range testCases {
t.Run(fmt.Sprintf("test case %d", i), func(t *testing.T) {
got, err := unmarshal([]byte(tc.input))
if err != nil {
t.Fatal(err)
}
if tc.want.Nodes == nil {
tc.want.Nodes = map[int64]*Node{}
} else {
for id, n := range tc.want.Nodes {
n.Meta.ID = id
}
}
if tc.want.Ways == nil {
tc.want.Ways = map[int64]*Way{}
} else {
for id, w := range tc.want.Ways {
w.Meta.ID = id
if w.Nodes == nil {
w.Nodes = []*Node{}
}
if w.Geometry == nil {
w.Geometry = []Point{}
}
}
}
if tc.want.Relations == nil {
tc.want.Relations = map[int64]*Relation{}
} else {
for id, r := range tc.want.Relations {
r.Meta.ID = id
if r.Members == nil {
r.Members = []RelationMember{}
}
}
}
if !reflect.DeepEqual(got, tc.want) {
t.Fatalf("%v != %v", got, tc.want)
}
})
}
}
func TestQueryErrors(t *testing.T) {
testCases := []struct {
res *http.Response
err error
want string
}{
{nil, errors.New("request fail"), "http error: request fail"},
{&http.Response{StatusCode: 400, Body: io.NopCloser(bytes.NewReader(nil))}, nil, "overpass engine error: 400 Bad Request"},
{&http.Response{StatusCode: 200, Body: io.NopCloser(iotest.ErrReader(errors.New("read fail")))}, nil, "http error: read fail"},
{&http.Response{StatusCode: 200, Body: io.NopCloser(bytes.NewReader(nil))}, nil, "overpass engine error: unexpected end of JSON input"},
}
for i, tc := range testCases {
t.Run(fmt.Sprintf("test case %d", i), func(t *testing.T) {
cli := NewWithSettings(apiEndpoint, 1, &mockHttpClient{tc.res, tc.err})
if _, err := cli.Query(""); err == nil {
t.Fatal("unexpected success")
} else if err.Error() != tc.want {
t.Fatalf("%s != %s", err.Error(), tc.want)
} else if err = errors.Unwrap(err); err == nil {
t.Fatal("expected wrapped error")
}
})
}
}
type mockHttpClient struct {
res *http.Response
err error
}
func (m *mockHttpClient) PostForm(string, url.Values) (res *http.Response, err error) {
return m.res, m.err
}