-
Notifications
You must be signed in to change notification settings - Fork 0
/
presets_test.go
141 lines (125 loc) · 2.35 KB
/
presets_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
package osmdata
import (
"fmt"
"os"
"path/filepath"
"testing"
"time"
ovp "github.com/captchanjack/osmdata/overpass"
)
func TestPresetQuery(t *testing.T) {
var testCases = []struct {
queryMethod QueryMethod
args []interface{}
}{
{
Radius,
[]interface{}{
Drive,
true,
ovp.JSON,
5.0,
-37.740347,
144.930127,
},
},
{
Polygon,
[]interface{}{
Walk,
false,
ovp.XML,
[][][]float64{
{
{
145.10180044651912,
-37.8444294644357,
},
{
145.10180044651912,
-37.845678389372324,
},
{
145.10359037007055,
-37.845678389372324,
},
{
145.10359037007055,
-37.8444294644357,
},
{
145.10180044651912,
-37.8444294644357,
},
},
},
},
},
{
BoundingBox,
[]interface{}{
Bike,
true,
ovp.CSV,
-37.845678389372324,
145.10180044651912,
-37.8444294644357,
145.10359037007055,
"(::id,::type,::lat,::lon,true,\",\")", // CSV header selection, required
},
},
{
PlaceName,
[]interface{}{
Rail,
true,
ovp.JSON,
"henley, new south wales, australia",
},
},
}
for _, test := range testCases {
query := GetPresetQuery(test.queryMethod, test.args...)
resp, err := query.Execute(10)
if len(resp) == 0 {
t.Errorf("%v: string response should be non-empty\n", test.queryMethod)
}
if err != nil {
t.Errorf("%v: %v\n", test.queryMethod, err)
}
if len(resp) != 0 && err == nil {
fmt.Printf("%v: test successful\n", test.queryMethod)
}
time.Sleep(10 * time.Second) // prevent getting rated limited
}
}
func TestExport(t *testing.T) {
time.Sleep(10 * time.Second) // prevent getting rated limited
cwd, err := os.Getwd()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
filename := filepath.Join(filepath.Dir(cwd), "osmdata/test.json")
query := GetPresetQuery(
Radius,
Drive,
true,
ovp.JSON,
5.0,
-37.740347,
144.930127,
)
resp, err := query.ExecuteAndExport(filename, 10)
defer os.Remove(filename)
if len(resp) == 0 {
t.Errorf("%v: string response should be non-empty\n", Radius)
}
if err != nil {
t.Errorf("%v: %v\n", Radius, err)
}
if len(resp) != 0 && err == nil {
fmt.Println("Export: test successful")
}
time.Sleep(10 * time.Second) // prevent getting rated limited
}