forked from googlemaps/google-maps-services-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeolocationApiTest.java
421 lines (392 loc) · 17.7 KB
/
GeolocationApiTest.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
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
416
417
418
419
420
421
/*
* 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 com.google.maps.TestUtils.retrieveBody;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import com.google.maps.errors.InvalidRequestException;
import com.google.maps.errors.NotFoundException;
import com.google.maps.model.CellTower;
import com.google.maps.model.GeolocationPayload;
import com.google.maps.model.GeolocationResult;
import com.google.maps.model.WifiAccessPoint;
import org.json.JSONArray;
import org.json.JSONObject;
import org.junit.Test;
import org.junit.experimental.categories.Category;
@Category(LargeTests.class)
public class GeolocationApiTest {
private final String geolocationDocSample;
private final String geolocationMinimumWifi;
private final String geolocationBasic;
private final String geolocationMaximumWifi;
private final String geolocationMinimumCellTower;
private final String geolocationAlternatePayloadBuilder;
private final String geolocationMaximumCellTower;
public GeolocationApiTest() {
geolocationDocSample = retrieveBody("GeolocationDocSampleResponse.json");
geolocationMinimumWifi = retrieveBody("GeolocationMinimumWifiResponse.json");
geolocationBasic = retrieveBody("GeolocationBasicResponse.json");
geolocationMaximumWifi = retrieveBody("GeolocationMaximumWifiResponse.json");
geolocationMinimumCellTower = retrieveBody("GeolocationMinimumCellTowerResponse.json");
geolocationAlternatePayloadBuilder = retrieveBody("GeolocationAlternatePayloadBuilder.json");
geolocationMaximumCellTower = retrieveBody("GeolocationMaximumCellTower.json");
}
@Test
public void testDocSampleGeolocation() throws Exception {
try (LocalTestServerContext sc = new LocalTestServerContext(geolocationDocSample)) {
GeolocationResult result =
GeolocationApi.newRequest(sc.context)
.ConsiderIp(false)
.HomeMobileCountryCode(310)
.HomeMobileNetworkCode(260)
.RadioType("gsm")
.Carrier("T-Mobile")
.AddCellTower(
new CellTower.CellTowerBuilder()
.CellId(39627456)
.LocationAreaCode(40495)
.MobileCountryCode(310)
.MobileNetworkCode(260)
.Age(0)
.SignalStrength(-95)
.createCellTower())
.AddWifiAccessPoint(
new WifiAccessPoint.WifiAccessPointBuilder()
.MacAddress("01:23:45:67:89:AB")
.SignalStrength(-65)
.SignalToNoiseRatio(8)
.Channel(8)
.Age(0)
.createWifiAccessPoint())
.AddWifiAccessPoint(
new WifiAccessPoint.WifiAccessPointBuilder()
.MacAddress("01:23:45:67:89:AC")
.SignalStrength(4)
.SignalToNoiseRatio(4)
.Age(0)
.createWifiAccessPoint())
.CreatePayload()
.await();
JSONObject body = sc.requestBody();
assertEquals(false, body.get("considerIp"));
assertEquals(310, body.get("homeMobileCountryCode"));
assertEquals(260, body.get("homeMobileNetworkCode"));
assertEquals("gsm", body.get("radioType"));
assertEquals("T-Mobile", body.get("carrier"));
assertEquals("accuracy", 1145.0, result.accuracy, 0.00001);
assertEquals("lat", 37.4248297, result.location.lat, 0.00001);
assertEquals("lng", -122.07346549999998, result.location.lng, 0.00001);
}
}
@Test
public void testMinimumWifiGeolocation() throws Exception {
try (LocalTestServerContext sc = new LocalTestServerContext(geolocationMinimumWifi)) {
GeolocationResult result =
GeolocationApi.newRequest(sc.context)
.ConsiderIp(false)
.AddWifiAccessPoint(
new WifiAccessPoint.WifiAccessPointBuilder()
.MacAddress("94:b4:0f:ff:6b:11")
.createWifiAccessPoint())
.AddWifiAccessPoint(
new WifiAccessPoint.WifiAccessPointBuilder()
.MacAddress("94:b4:0f:ff:6b:10")
.createWifiAccessPoint())
.CreatePayload()
.await();
JSONObject body = sc.requestBody();
assertEquals(false, body.get("considerIp"));
JSONArray wifiAccessPoints = body.getJSONArray("wifiAccessPoints");
assertEquals("94:b4:0f:ff:6b:11", wifiAccessPoints.getJSONObject(0).get("macAddress"));
assertEquals("94:b4:0f:ff:6b:10", wifiAccessPoints.getJSONObject(1).get("macAddress"));
assertEquals("accuracy", 150.0, result.accuracy, 0.001);
assertEquals("lat", 37.3989885, result.location.lat, 0.001);
assertEquals("lng", -122.0585196, result.location.lng, 0.001);
}
}
@Test
public void testBasicGeolocation() throws Exception {
try (LocalTestServerContext sc = new LocalTestServerContext(geolocationBasic)) {
GeolocationResult result =
GeolocationApi.newRequest(sc.context)
.ConsiderIp(false)
.AddWifiAccessPoint(
new WifiAccessPoint.WifiAccessPointBuilder()
.MacAddress("92:68:c3:f8:76:47")
.SignalStrength(-42)
.SignalToNoiseRatio(68)
.createWifiAccessPoint())
.AddWifiAccessPoint(
new WifiAccessPoint.WifiAccessPointBuilder()
.MacAddress("94:b4:0f:ff:6b:11")
.SignalStrength(-55)
.SignalToNoiseRatio(55)
.createWifiAccessPoint())
.CreatePayload()
.await();
JSONObject body = sc.requestBody();
assertEquals(false, body.get("considerIp"));
JSONArray wifiAccessPoints = body.getJSONArray("wifiAccessPoints");
JSONObject wifi0 = wifiAccessPoints.getJSONObject(0);
JSONObject wifi1 = wifiAccessPoints.getJSONObject(1);
assertEquals("92:68:c3:f8:76:47", wifi0.get("macAddress"));
assertEquals(-42, wifi0.get("signalStrength"));
assertEquals(68, wifi0.get("signalToNoiseRatio"));
assertEquals("94:b4:0f:ff:6b:11", wifi1.get("macAddress"));
assertEquals(-55, wifi1.get("signalStrength"));
assertEquals(55, wifi1.get("signalToNoiseRatio"));
assertEquals("accuracy", 150.0, result.accuracy, 0.00001);
assertEquals("lat", 37.3989885, result.location.lat, 0.00001);
assertEquals("lng", -122.0585196, result.location.lng, 0.00001);
}
}
@Test
public void testAlternateWifiSetterGeolocation() throws Exception {
try (LocalTestServerContext sc = new LocalTestServerContext(geolocationBasic)) {
WifiAccessPoint[] wifiAccessPoints = new WifiAccessPoint[2];
wifiAccessPoints[0] =
new WifiAccessPoint.WifiAccessPointBuilder()
.MacAddress("94:b4:0f:ff:6b:11")
.createWifiAccessPoint();
wifiAccessPoints[1] =
new WifiAccessPoint.WifiAccessPointBuilder()
.MacAddress("94:b4:0f:ff:6b:10")
.createWifiAccessPoint();
GeolocationResult result =
GeolocationApi.newRequest(sc.context)
.ConsiderIp(false)
.WifiAccessPoints(wifiAccessPoints)
.CreatePayload()
.await();
JSONObject body = sc.requestBody();
assertEquals(false, body.get("considerIp"));
JSONArray wifiAccessPointsResponse = body.getJSONArray("wifiAccessPoints");
JSONObject wifi0 = wifiAccessPointsResponse.getJSONObject(0);
JSONObject wifi1 = wifiAccessPointsResponse.getJSONObject(1);
assertEquals("94:b4:0f:ff:6b:11", wifi0.get("macAddress"));
assertEquals("94:b4:0f:ff:6b:10", wifi1.get("macAddress"));
assertEquals("accuracy", 150.0, result.accuracy, 0.001);
assertEquals("lat", 37.3989885, result.location.lat, 0.001);
assertEquals("lng", -122.0585196, result.location.lng, 0.001);
}
}
@Test
public void testMaximumWifiGeolocation() throws Exception {
try (LocalTestServerContext sc = new LocalTestServerContext(geolocationMaximumWifi)) {
GeolocationResult result =
GeolocationApi.newRequest(sc.context)
.ConsiderIp(false)
.HomeMobileCountryCode(310)
.HomeMobileNetworkCode(410)
.RadioType("gsm")
.Carrier("Vodafone")
.AddWifiAccessPoint(
new WifiAccessPoint.WifiAccessPointBuilder()
.MacAddress("94:b4:0f:ff:88:31")
.SignalStrength(-61)
.SignalToNoiseRatio(49)
.Channel(40)
.Age(0)
.createWifiAccessPoint())
.AddWifiAccessPoint(
new WifiAccessPoint.WifiAccessPointBuilder()
.MacAddress("94:b4:0f:ff:88:30")
.SignalStrength(-64)
.SignalToNoiseRatio(46)
.Channel(40)
.Age(0)
.createWifiAccessPoint())
.CreatePayload()
.await();
JSONObject body = sc.requestBody();
assertEquals(false, body.get("considerIp"));
assertEquals(310, body.get("homeMobileCountryCode"));
assertEquals(410, body.get("homeMobileNetworkCode"));
assertEquals("gsm", body.get("radioType"));
assertEquals("Vodafone", body.get("carrier"));
JSONArray wifiAccessPointsResponse = body.getJSONArray("wifiAccessPoints");
JSONObject wifi0 = wifiAccessPointsResponse.getJSONObject(0);
assertEquals("94:b4:0f:ff:88:31", wifi0.get("macAddress"));
assertEquals(-61, wifi0.get("signalStrength"));
assertEquals(49, wifi0.get("signalToNoiseRatio"));
assertEquals(40, wifi0.get("channel"));
assertEquals(0, wifi0.get("age"));
JSONObject wifi1 = wifiAccessPointsResponse.getJSONObject(1);
assertEquals("94:b4:0f:ff:88:30", wifi1.get("macAddress"));
assertEquals(-64, wifi1.get("signalStrength"));
assertEquals(46, wifi1.get("signalToNoiseRatio"));
assertEquals(40, wifi1.get("channel"));
assertEquals(0, wifi1.get("age"));
assertEquals("accuracy", 25.0, result.accuracy, 0.00001);
assertEquals("lat", 37.3990122, result.location.lat, 0.00001);
assertEquals("lng", -122.0583656, result.location.lng, 0.00001);
}
}
@Test
public void testMinimumCellTowerGeolocation() throws Exception {
try (LocalTestServerContext sc = new LocalTestServerContext(geolocationMinimumCellTower)) {
GeolocationResult result =
GeolocationApi.newRequest(sc.context)
.ConsiderIp(false)
.AddCellTower(
new CellTower.CellTowerBuilder()
.CellId(39627456)
.LocationAreaCode(40495)
.MobileCountryCode(310)
.MobileNetworkCode(260)
.createCellTower())
.CreatePayload()
.await();
JSONObject body = sc.requestBody();
assertEquals(false, body.get("considerIp"));
JSONObject cellTower = body.getJSONArray("cellTowers").getJSONObject(0);
assertEquals(39627456, cellTower.get("cellId"));
assertEquals(40495, cellTower.get("locationAreaCode"));
assertEquals(310, cellTower.get("mobileCountryCode"));
assertEquals(260, cellTower.get("mobileNetworkCode"));
assertEquals("accuracy", 658.0, result.accuracy, 0.00001);
assertEquals("lat", 37.42659, result.location.lat, 0.00001);
assertEquals("lng", -122.07266190000001, result.location.lng, 0.00001);
}
}
@Test
public void testAlternatePayloadBuilderGeolocation() throws Exception {
try (LocalTestServerContext sc =
new LocalTestServerContext(geolocationAlternatePayloadBuilder)) {
GeolocationPayload payload =
new GeolocationPayload.GeolocationPayloadBuilder()
.ConsiderIp(false)
.AddCellTower(
new CellTower.CellTowerBuilder()
.CellId(39627456)
.LocationAreaCode(40495)
.MobileCountryCode(310)
.MobileNetworkCode(260)
.createCellTower())
.createGeolocationPayload();
GeolocationResult result = GeolocationApi.geolocate(sc.context, payload).await();
JSONObject body = sc.requestBody();
assertEquals(false, body.get("considerIp"));
JSONObject cellTower = body.getJSONArray("cellTowers").getJSONObject(0);
assertEquals(39627456, cellTower.get("cellId"));
assertEquals(40495, cellTower.get("locationAreaCode"));
assertEquals(310, cellTower.get("mobileCountryCode"));
assertEquals(260, cellTower.get("mobileNetworkCode"));
assertEquals("accuracy", 658.0, result.accuracy, 0.00001);
assertEquals("lat", 37.42659, result.location.lat, 0.00001);
assertEquals("lng", -122.07266190000001, result.location.lng, 0.00001);
}
}
@Test
public void testMaximumCellTowerGeolocation() throws Exception {
try (LocalTestServerContext sc = new LocalTestServerContext(geolocationMaximumCellTower)) {
GeolocationResult result =
GeolocationApi.newRequest(sc.context)
.ConsiderIp(false)
.HomeMobileCountryCode(310)
.HomeMobileNetworkCode(260)
.RadioType("gsm")
.Carrier("Vodafone")
.AddCellTower(
new CellTower.CellTowerBuilder()
.CellId(39627456)
.LocationAreaCode(40495)
.MobileCountryCode(310)
.MobileNetworkCode(260)
.Age(0)
.SignalStrength(-103)
.TimingAdvance(15)
.createCellTower())
.CreatePayload()
.await();
JSONObject body = sc.requestBody();
assertEquals(false, body.get("considerIp"));
assertEquals(310, body.get("homeMobileCountryCode"));
assertEquals(260, body.get("homeMobileNetworkCode"));
assertEquals("gsm", body.get("radioType"));
assertEquals("Vodafone", body.get("carrier"));
JSONObject cellTower = body.getJSONArray("cellTowers").getJSONObject(0);
assertEquals(39627456, cellTower.get("cellId"));
assertEquals(40495, cellTower.get("locationAreaCode"));
assertEquals(310, cellTower.get("mobileCountryCode"));
assertEquals(260, cellTower.get("mobileNetworkCode"));
assertEquals(0, cellTower.get("age"));
assertEquals(-103, cellTower.get("signalStrength"));
assertEquals(15, cellTower.get("timingAdvance"));
assertEquals("accuracy", 1145.0, result.accuracy, 0.00001);
assertEquals("lat", 37.4248297, result.location.lat, 0.00001);
assertEquals("lng", -122.07346549999998, result.location.lng, 0.00001);
}
}
@Test
public void testNoPayloadGeolocation0() throws Exception {
try (LocalTestServerContext sc = new LocalTestServerContext(geolocationBasic)) {
GeolocationPayload payload =
new GeolocationPayload.GeolocationPayloadBuilder().createGeolocationPayload();
GeolocationResult result = GeolocationApi.geolocate(sc.context, payload).await();
assertNotNull(result);
assertNotNull(result.location);
}
}
@Test
public void testNoPayloadGeolocation1() throws Exception {
try (LocalTestServerContext sc = new LocalTestServerContext(geolocationBasic)) {
GeolocationResult result = GeolocationApi.newRequest(sc.context).CreatePayload().await();
assertNotNull(result);
assertNotNull(result.location);
}
}
@Test(expected = NotFoundException.class)
public void testNotFoundGeolocation() throws Exception {
try (LocalTestServerContext sc =
new LocalTestServerContext(
""
+ "{\n"
+ " \"error\": {\n"
+ " \"errors\": [\n"
+ " {\n"
+ " \"domain\": \"geolocation\",\n"
+ " \"reason\": \"notFound\""
+ " }\n"
+ " ],\n"
+ " \"code\": 404\n"
+ " }\n"
+ "}")) {
GeolocationApi.newRequest(sc.context).ConsiderIp(false).CreatePayload().await();
}
}
@Test(expected = InvalidRequestException.class)
public void testInvalidArgumentGeolocation() throws Exception {
try (LocalTestServerContext sc =
new LocalTestServerContext(
""
+ "{\n"
+ " \"error\": {\n"
+ " \"errors\": [\n"
+ " {\n"
+ " \"domain\": \"global\",\n"
+ " \"reason\": \"parseError\",\n"
+ " \"message\": \"Parse Error\"\n"
+ " }\n"
+ " ],\n"
+ " \"code\": 400,\n"
+ " \"message\": \"Parse Error\"\n"
+ " }\n"
+ "}")) {
GeolocationApi.newRequest(sc.context).HomeMobileCountryCode(-310).CreatePayload().await();
}
}
}