forked from googlemaps/google-maps-services-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectionsApiTest.java
More file actions
310 lines (269 loc) · 10.1 KB
/
DirectionsApiTest.java
File metadata and controls
310 lines (269 loc) · 10.1 KB
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
/*
* Copyright 2014 Google Inc. All rights reserved.
*
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
* file except in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
* ANY KIND, either express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.google.maps;
import static org.hamcrest.CoreMatchers.not;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import com.google.maps.DirectionsApi.RouteRestriction;
import com.google.maps.errors.NotFoundException;
import com.google.maps.model.DirectionsRoute;
import com.google.maps.model.TransitMode;
import com.google.maps.model.TransitRoutingPreference;
import com.google.maps.model.TravelMode;
import com.google.maps.model.Unit;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import java.util.concurrent.TimeUnit;
@Category(LargeTests.class)
public class DirectionsApiTest extends AuthenticatedTest {
private GeoApiContext context;
public DirectionsApiTest(GeoApiContext context) {
this.context = context
.setQueryRateLimit(3)
.setConnectTimeout(1, TimeUnit.SECONDS)
.setReadTimeout(1, TimeUnit.SECONDS)
.setWriteTimeout(1, TimeUnit.SECONDS);
}
@Test
public void testGetDirections() throws Exception {
DirectionsRoute[] routes = DirectionsApi.getDirections(context, "Sydney", "Melbourne").await();
assertNotNull(routes);
assertNotNull(routes[0]);
assertThat(routes[0].overviewPolyline.decodePath().size(), not(0));
assertEquals("Sydney NSW, Australia", routes[0].legs[0].startAddress);
assertEquals("Melbourne VIC, Australia", routes[0].legs[0].endAddress);
}
@Test
public void testBuilder() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.mode(TravelMode.BICYCLING)
.avoid(RouteRestriction.HIGHWAYS, RouteRestriction.TOLLS, RouteRestriction.FERRIES)
.units(Unit.METRIC)
.region("us")
.origin("Sydney")
.destination("Melbourne").await();
assertNotNull(routes);
assertNotNull(routes[0]);
}
@Test
public void testTravelModeRoundTrip() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.mode(TravelMode.BICYCLING)
.origin("Town Hall, Sydney")
.destination("Parramatta, NSW").await();
assertNotNull(routes);
assertNotNull(routes[0]);
assertEquals(TravelMode.BICYCLING, routes[0].legs[0].steps[0].travelMode);
}
@Test
public void testResponseTimesArePopulatedCorrectly() throws Exception {
DateTime now = new DateTime();
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.mode(TravelMode.TRANSIT)
.origin("Town Hall, Sydney")
.destination("Parramatta, NSW")
.departureTime(now)
.await();
assertNotNull(routes);
assertNotNull(routes[0]);
assertNotNull(routes[0].legs);
assertNotNull(routes[0].legs[0]);
assertNotNull(routes[0].legs[0].arrivalTime);
assertNotNull(routes[0].legs[0].departureTime);
}
/**
* A simple query from Toronto to Montreal.
* {@url http://maps.googleapis.com/maps/api/directions/json?origin=Toronto&destination=Montreal}
*/
@Test
public void testTorontoToMontreal() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.origin("Toronto")
.destination("Montreal").await();
assertNotNull(routes);
}
/**
* Going from Toronto to Montreal by bicycle, avoiding highways.
* {@url http://maps.googleapis.com/maps/api/directions/json?origin=Toronto&destination=Montreal&avoid=highways&mode=bicycling}
*/
@Test
public void testTorontoToMontrealByBicycleAvoidingHighways() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.origin("Toronto")
.destination("Montreal")
.avoid(RouteRestriction.HIGHWAYS)
.mode(TravelMode.BICYCLING)
.await();
assertNotNull(routes);
}
/**
* Brooklyn to Queens by public transport.
* {@url http://maps.googleapis.com/maps/api/directions/json?origin=Brooklyn&destination=Queens&departure_time=1343641500&mode=transit}
*/
@Test
public void testBrooklynToQueensByTransit() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.origin("Brooklyn")
.destination("Queens")
.departureTime(new DateTime(1343641500))
.mode(TravelMode.TRANSIT)
.await();
assertNotNull(routes);
}
/**
* Boston to Concord, via Charlestown and Lexington.
* {@url http://maps.googleapis.com/maps/api/directions/json?origin=Boston,MA&destination=Concord,MA&waypoints=Charlestown,MA|Lexington,MA
*/
@Test
public void testBostonToConcordViaCharlestownAndLexignton() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.origin("Boston,MA")
.destination("Concord,MA")
.waypoints("Charlestown,MA", "Lexington,MA")
.await();
assertNotNull(routes);
}
/**
* A wine tour around Adelaide in South Australia. This shows off how to get Directions Web
* Service API to find the shortest path amongst a set of way points.
* {@url http://maps.googleapis.com/maps/api/directions/json?origin=Adelaide,SA&destination=Adelaide,SA&waypoints=optimize:true|Barossa+Valley,SA|Clare,SA|Connawarra,SA|McLaren+Vale,SA}
*/
@Test
public void testAdelaideWineTour() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.origin("Adelaide,SA")
.destination("Adelaide,SA")
.optimizeWaypoints(true)
.waypoints("Barossa Valley, SA", "Clare, SA", "Connawarra, SA",
"McLaren Vale, SA")
.await();
assertNotNull(routes);
assertEquals(1, routes.length);
// optimize:true returns the waypoint_order of the optimized route.
// "waypoint_order": [ 1, 0, 2, 3 ]
assertNotNull(routes[0].waypointOrder);
assertEquals(1, routes[0].waypointOrder[0]);
assertEquals(0, routes[0].waypointOrder[1]);
assertEquals(2, routes[0].waypointOrder[2]);
assertEquals(3, routes[0].waypointOrder[3]);
}
/**
* Toledo to Madrid, in Spain. This showcases region biasing results.
* {@url http://maps.googleapis.com/maps/api/directions/json?origin=Toledo&destination=Madrid®ion=es}
*/
@Test
public void testToledoToMadridInSpain() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.origin("Toledo")
.destination("Madrid")
.region("es")
.await();
assertNotNull(routes);
}
/**
* This is the same query above, without region biasing. It returns no routes.
* {@url http://maps.googleapis.com/maps/api/directions/json?origin=Toledo&destination=Madrid}
*/
@Test
public void testToledoToMadridNotSpain() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.origin("Toledo")
.destination("Madrid")
.await();
assertNotNull(routes);
assertEquals(0, routes.length);
}
/**
* Test the language parameter.
*/
@Test
public void testLanguageParameter() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.origin("Toledo")
.destination("Madrid")
.region("es")
.language("es")
.await();
assertNotNull(routes);
}
/**
* Testing the alternatives param.
*/
@Test
public void testAlternatives() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.origin("Sydney Town Hall")
.destination("Parramatta Town Hall")
.alternatives(true)
.await();
assertNotNull(routes);
assertTrue(routes.length > 1);
}
/**
* Test fares are returned for transit requests that support them.
*/
@Test
public void testFares() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.origin("Fisherman's Wharf, San Francisco")
.destination("Union Square, San Francisco")
.mode(TravelMode.TRANSIT)
.departureTime(new DateTime(2015, 1, 1, 19, 0, DateTimeZone.UTC))
.await();
// Just in case we get a walking route or something silly
for (DirectionsRoute route : routes) {
if (route.fare.value != null && "USD".equals(route.fare.currency.getCurrencyCode())) {
return;
}
}
fail("Fare data not found in any route");
}
/**
* Test transit without arrival or departure times specified.
*/
@Test
public void testTransitWithoutSpecifyingTime() throws Exception {
DirectionsApi.newRequest(context)
.origin("Fisherman's Wharf, San Francisco")
.destination("Union Square, San Francisco")
.mode(TravelMode.TRANSIT)
.await();
// Since this test may run at different times-of-day, it's entirely valid to return zero
// routes, but the main thing to catch is that no exception is thrown.
}
/**
* Test the extended transit parameters: mode and routing preference.
*/
@Test
public void testTransitParams() throws Exception {
DirectionsRoute[] routes = DirectionsApi.newRequest(context)
.origin("Fisherman's Wharf, San Francisco")
.destination("Union Square, San Francisco")
.mode(TravelMode.TRANSIT)
.transitMode(TransitMode.BUS, TransitMode.TRAM)
.transitRoutingPreference(TransitRoutingPreference.LESS_WALKING)
.await();
assertTrue(routes.length > 0);
}
@Test(expected = NotFoundException.class)
public void testNotFound() throws Exception {
DirectionsRoute[] routes = DirectionsApi.getDirections(context, "fksjdhgf", "faldfdaf").await();
}
}