forked from googlemaps/google-maps-services-java
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectionsApiTest.java
355 lines (309 loc) · 11.7 KB
/
DirectionsApiTest.java
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
/*
* 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.AddressType;
import com.google.maps.model.DirectionsLeg;
import com.google.maps.model.DirectionsResult;
import com.google.maps.model.DirectionsRoute;
import com.google.maps.model.GeocodedWaypointStatus;
import com.google.maps.model.TrafficModel;
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.joda.time.Duration;
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 {
DirectionsResult result = DirectionsApi.getDirections(context, "Sydney, AU",
"Melbourne, AU").await();
assertNotNull(result.routes);
assertNotNull(result.routes[0]);
assertThat(result.routes[0].overviewPolyline.decodePath().size(), not(0));
assertEquals("Sydney NSW, Australia", result.routes[0].legs[0].startAddress);
assertEquals("Melbourne VIC, Australia", result.routes[0].legs[0].endAddress);
}
@Test
public void testBuilder() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.mode(TravelMode.BICYCLING)
.avoid(RouteRestriction.HIGHWAYS, RouteRestriction.TOLLS, RouteRestriction.FERRIES)
.units(Unit.METRIC)
.region("au")
.origin("Sydney")
.destination("Melbourne").await();
assertNotNull(result.routes);
assertNotNull(result.routes[0]);
}
@Test
public void testTravelModeRoundTrip() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.mode(TravelMode.BICYCLING)
.origin("Town Hall, Sydney")
.destination("Parramatta, NSW").await();
assertNotNull(result.routes);
assertNotNull(result.routes[0]);
assertEquals(TravelMode.BICYCLING, result.routes[0].legs[0].steps[0].travelMode);
}
@Test
public void testResponseTimesArePopulatedCorrectly() throws Exception {
DateTime now = new DateTime();
DirectionsResult result = DirectionsApi.newRequest(context)
.mode(TravelMode.TRANSIT)
.origin("Town Hall, Sydney")
.destination("Parramatta, NSW")
.departureTime(now)
.await();
assertNotNull(result.routes);
assertNotNull(result.routes[0]);
assertNotNull(result.routes[0].legs);
assertNotNull(result.routes[0].legs[0]);
assertNotNull(result.routes[0].legs[0].arrivalTime);
assertNotNull(result.routes[0].legs[0].departureTime);
}
/**
* A simple query from Toronto to Montreal.
*
* {@code http://maps.googleapis.com/maps/api/directions/json?origin=Toronto&destination=Montreal}
*/
@Test
public void testTorontoToMontreal() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("Toronto")
.destination("Montreal").await();
assertNotNull(result.routes);
}
/**
* Going from Toronto to Montreal by bicycle, avoiding highways.
*
* {@code http://maps.googleapis.com/maps/api/directions/json?origin=Toronto&destination=Montreal&avoid=highways&mode=bicycling}
*/
@Test
public void testTorontoToMontrealByBicycleAvoidingHighways() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("Toronto")
.destination("Montreal")
.avoid(RouteRestriction.HIGHWAYS)
.mode(TravelMode.BICYCLING)
.await();
assertNotNull(result.routes);
}
/**
* Brooklyn to Queens by public transport.
*
* {@code http://maps.googleapis.com/maps/api/directions/json?origin=Brooklyn&destination=Queens&departure_time=1343641500&mode=transit}
*/
@Test
public void testBrooklynToQueensByTransit() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("Brooklyn")
.destination("Queens")
.departureTime(new DateTime(1343641500))
.mode(TravelMode.TRANSIT)
.await();
assertNotNull(result.routes);
}
/**
* Boston to Concord, via Charlestown and Lexington.
*
* {@code 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 {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("Boston,MA")
.destination("Concord,MA")
.waypoints("Charlestown,MA", "Lexington,MA")
.await();
assertNotNull(result.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.
*
* {@code 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 {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("Adelaide,SA")
.destination("Adelaide,SA")
.optimizeWaypoints(true)
.waypoints("Barossa Valley, SA", "Clare, SA", "Connawarra, SA",
"McLaren Vale, SA")
.await();
assertNotNull(result.routes);
assertEquals(1, result.routes.length);
// optimize:true returns the waypoint_order of the optimized route.
// "waypoint_order": [ 1, 0, 2, 3 ]
assertNotNull(result.routes[0].waypointOrder);
assertEquals(1, result.routes[0].waypointOrder[0]);
assertEquals(0, result.routes[0].waypointOrder[1]);
assertEquals(2, result.routes[0].waypointOrder[2]);
assertEquals(3, result.routes[0].waypointOrder[3]);
}
/**
* Toledo to Madrid, in Spain. This showcases region biasing results.
*
* {@code http://maps.googleapis.com/maps/api/directions/json?origin=Toledo&destination=Madrid®ion=es}
*/
@Test
public void testToledoToMadridInSpain() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("Toledo")
.destination("Madrid")
.region("es")
.await();
assertNotNull(result.routes);
}
/**
* This is the same query above, without region biasing. It returns no routes.
*
* {@code http://maps.googleapis.com/maps/api/directions/json?origin=Toledo&destination=Madrid}
*/
@Test
public void testToledoToMadridNotSpain() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("Toledo")
.destination("Madrid")
.await();
assertNotNull(result.routes);
assertEquals(0, result.routes.length);
}
/**
* Test the language parameter.
*/
@Test
public void testLanguageParameter() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("Toledo")
.destination("Madrid")
.region("es")
.language("es")
.await();
assertNotNull(result.routes);
}
/**
* Testing the alternatives param.
*/
@Test
public void testAlternatives() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("Sydney Town Hall")
.destination("Parramatta Town Hall")
.alternatives(true)
.await();
assertNotNull(result.routes);
assertTrue(result.routes.length > 1);
}
/**
* Tests the {@code traffic_model} and {@code duration_in_traffic} parameters.
*/
@Test
public void testTrafficModel() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("Sydney Town Hall")
.destination("Parramatta Town Hall")
.mode(TravelMode.DRIVING)
.departureTime(new DateTime().plus(Duration.standardMinutes(2)))
.trafficModel(TrafficModel.PESSIMISTIC)
.await();
assertNotNull(result.routes[0].legs[0].durationInTraffic);
}
/**
* 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 {
DirectionsResult result = 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(result.routes.length > 0);
}
@Test(expected = NotFoundException.class)
public void testNotFound() throws Exception {
DirectionsApi.getDirections(context, "fksjdhgf", "faldfdaf").await();
}
/**
* Test GeocodedWaypoints results.
*/
@Test
public void testGeocodedWaypoints() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("48 Pirrama Rd, Pyrmont NSW")
.destination("Airport Dr, Sydney NSW")
.mode(TravelMode.DRIVING)
.await();
assertNotNull(result.geocodedWaypoints);
assertEquals(2, result.geocodedWaypoints.length);
assertEquals(GeocodedWaypointStatus.OK, result.geocodedWaypoints[0].geocoderStatus);
assertEquals(AddressType.PREMISE, result.geocodedWaypoints[0].types[0]);
assertEquals(GeocodedWaypointStatus.OK, result.geocodedWaypoints[1].geocoderStatus);
assertEquals(AddressType.ROUTE, result.geocodedWaypoints[1].types[0]);
}
/**
* Test {@code local_icon} for Directions in Paris.
*/
@Test
public void testLocalIconInParis() throws Exception {
DirectionsResult result = DirectionsApi.newRequest(context)
.origin("paris metro bibliotheque francois mitterrand")
.destination("paris metro pyramides")
.mode(TravelMode.TRANSIT)
.await();
assertNotNull(result);
assertEquals("//maps.gstatic.com/mapfiles/transit/iw2/6/fr-paris-metro.png",
result.routes[0].legs[0].steps[1].transitDetails.line.vehicle.localIcon);
}
}