aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/geocoder/GeocoderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/geocoder/GeocoderTest.java')
-rw-r--r--test/org/traccar/geocoder/GeocoderTest.java112
1 files changed, 0 insertions, 112 deletions
diff --git a/test/org/traccar/geocoder/GeocoderTest.java b/test/org/traccar/geocoder/GeocoderTest.java
deleted file mode 100644
index 40b6fd75d..000000000
--- a/test/org/traccar/geocoder/GeocoderTest.java
+++ /dev/null
@@ -1,112 +0,0 @@
-package org.traccar.geocoder;
-
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
-public class GeocoderTest {
-
- @Ignore
- @Test
- public void test() throws InterruptedException {
- 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);
-
- geocoder.getAddress(new AddressFormat(), 31.776797, 35.211489, new Geocoder.ReverseGeocoderCallback() {
- @Override
- public void onSuccess(String address) {
- setAddress(address);
- }
-
- @Override
- public void onFailure(Throwable e) {
- }
- });
- Assert.assertEquals("1 Ibn Shaprut St, Jerusalem, Jerusalem District, IL", waitAddress());
- }
-
- public void testNominatim() throws InterruptedException {
- Geocoder geocoder = new NominatimGeocoder(null, null, null, 0);
-
- geocoder.getAddress(new AddressFormat(), 40.7337807, -73.9974401, new Geocoder.ReverseGeocoderCallback() {
- @Override
- public void onSuccess(String address) {
- setAddress(address);
- }
-
- @Override
- public void onFailure(Throwable e) {
- }
- });
- Assert.assertEquals("35 West 9th Street, NYC, New York, US", waitAddress());
- }
-
- public void testGisgraphy() throws InterruptedException {
- Geocoder geocoder = new GisgraphyGeocoder();
-
- geocoder.getAddress(new AddressFormat(), 48.8530000, 2.3400000, new Geocoder.ReverseGeocoderCallback() {
- @Override
- public void onSuccess(String address) {
- setAddress(address);
- }
-
- @Override
- public void onFailure(Throwable e) {
- }
- });
- Assert.assertEquals("Rue du Jardinet, Paris, FR", waitAddress());
- }
-
- public void testOpenCage() throws InterruptedException {
- Geocoder geocoder = new OpenCageGeocoder(
- "http://api.opencagedata.com/geocode/v1", "SECRET", 0);
-
- geocoder.getAddress(new AddressFormat(), 34.116302, -118.051519, new Geocoder.ReverseGeocoderCallback() {
- @Override
- public void onSuccess(String address) {
- setAddress(address);
- }
-
- @Override
- public void onFailure(Throwable e) {
- }
- });
- Assert.assertEquals("Charleston Road, California, US", waitAddress());
- }
-
- public void testGeocodeFarm() throws InterruptedException {
- Geocoder geocoder = new GeocodeFarmGeocoder(null, null, 0);
-
- geocoder.getAddress(new AddressFormat(), 34.116302, -118.051519, new Geocoder.ReverseGeocoderCallback() {
- @Override
- public void onSuccess(String address) {
- setAddress(address);
- }
-
- @Override
- public void onFailure(Throwable e) {
- }
- });
- Assert.assertEquals("Estrella Avenue, Arcadia, California, United States", waitAddress());
- }
-
-}