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
|
package org.traccar.geocoder;
import java.util.Locale;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class GeocoderTest {
@Ignore
@Test
public void test() throws InterruptedException {
Locale.setDefault(Locale.US);
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 {
Geocoder geocoder = new GoogleGeocoder(null, null, 0, new AddressFormat());
geocoder.getAddress(31.776797, 35.211489, new Geocoder.ReverseGeocoderCallback() {
@Override
public void onSuccess(String address) {
setAddress(address);
}
@Override
public void onFailure(final Throwable e) {
}
});
assertEquals("1 Ibn Shaprut St, Jerusalem, Jerusalem District, IL", waitAddress());
assertEquals("1 Ibn Shaprut St, Jerusalem, Jerusalem District, IL",
geocoder.getAddress(31.776797, 35.211489, null));
}
public void testNominatim() throws InterruptedException {
Geocoder geocoder = new NominatimGeocoder(null, null, null, 0, new AddressFormat());
geocoder.getAddress(40.7337807, -73.9974401, new Geocoder.ReverseGeocoderCallback() {
@Override
public void onSuccess(String address) {
setAddress(address);
}
@Override
public void onFailure(Throwable e) {
}
});
assertEquals("35 West 9th Street, NYC, New York, US", waitAddress());
assertEquals("35 West 9th Street, NYC, New York, US",
geocoder.getAddress(40.7337807, -73.9974401, null));
}
public void testGisgraphy() throws InterruptedException {
Geocoder geocoder = new GisgraphyGeocoder(new AddressFormat());
geocoder.getAddress(48.8530000, 2.3400000, new Geocoder.ReverseGeocoderCallback() {
@Override
public void onSuccess(String address) {
setAddress(address);
}
@Override
public void onFailure(Throwable e) {
}
});
assertEquals("Rue du Jardinet, Paris, FR", waitAddress());
assertEquals("Rue du Jardinet, Paris, FR", geocoder.getAddress(48.8530000, 2.3400000, null));
}
public void testOpenCage() throws InterruptedException {
Geocoder geocoder = new OpenCageGeocoder(
"http://api.opencagedata.com/geocode/v1", "SECRET", 0, new AddressFormat());
geocoder.getAddress(34.116302, -118.051519, new Geocoder.ReverseGeocoderCallback() {
@Override
public void onSuccess(String address) {
setAddress(address);
}
@Override
public void onFailure(Throwable e) {
}
});
assertEquals("Charleston Road, California, US", waitAddress());
assertEquals("Charleston Road, California, US", geocoder.getAddress(34.116302, -118.051519, null));
}
public void testGeocodeFarm() throws InterruptedException {
Geocoder geocoder = new GeocodeFarmGeocoder(null, null, 0, new AddressFormat());
geocoder.getAddress(34.116302, -118.051519, new Geocoder.ReverseGeocoderCallback() {
@Override
public void onSuccess(String address) {
setAddress(address);
}
@Override
public void onFailure(Throwable e) {
}
});
assertEquals("Estrella Avenue, Arcadia, California, United States", waitAddress());
assertEquals("Estrella Avenue, Arcadia, California, United States",
geocoder.getAddress(34.116302, -118.051519, null));
}
}
|