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
|
package org.traccar.geocode;
import org.junit.Assert;
import org.junit.Test;
public class ReverseGeocoderTest {
private boolean enable = false;
@Test
public void test() throws InterruptedException {
if (enable) {
testGoogle();
}
}
private String address;
private synchronized String waitAddress() {
try {
wait(5000);
return address;
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
}
private synchronized void setAddress(String address) {
this.address = address;
notifyAll();
}
public void testGoogle() throws InterruptedException {
ReverseGeocoder reverseGeocoder = new GoogleReverseGeocoder();
reverseGeocoder.getAddress(new AddressFormat(), 37.4217550, -122.0846330, new ReverseGeocoder.ReverseGeocoderCallback() {
@Override
public void onResult(String address) {
setAddress(address);
}
});
Assert.assertEquals("1600 Amphitheatre Pkwy, Mountain View, CA, US", waitAddress());
}
public void testNominatim() throws InterruptedException {
ReverseGeocoder reverseGeocoder = new NominatimReverseGeocoder();
reverseGeocoder.getAddress(new AddressFormat(), 40.7337807, -73.9974401, new ReverseGeocoder.ReverseGeocoderCallback() {
@Override
public void onResult(String address) {
setAddress(address);
}
});
Assert.assertEquals("35 West 9th Street, NYC, New York, US", waitAddress());
}
public void testGisgraphy() throws InterruptedException {
ReverseGeocoder reverseGeocoder = new GisgraphyReverseGeocoder();
reverseGeocoder.getAddress(new AddressFormat(), 48.8530000, 2.3400000, new ReverseGeocoder.ReverseGeocoderCallback() {
@Override
public void onResult(String address) {
setAddress(address);
}
});
Assert.assertEquals("Rue du Jardinet, Paris, FR", waitAddress());
}
public void testOpenCage() throws InterruptedException {
ReverseGeocoder reverseGeocoder = new OpenCageReverseGeocoder(
"http://api.opencagedata.com/geocode/v1", "SECRET", 0);
reverseGeocoder.getAddress(new AddressFormat(), 34.116302, -118.051519, new ReverseGeocoder.ReverseGeocoderCallback() {
@Override
public void onResult(String address) {
setAddress(address);
}
});
Assert.assertEquals("Charleston Road, California, US", waitAddress());
}
}
|