From e8cd15c0fb192f635808adfde4e8614e6b4b3c3f Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 31 Dec 2016 11:34:22 +1300 Subject: Rename Location to Geolocation --- .../geolocation/GeolocationProviderTest.java | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 test/org/traccar/geolocation/GeolocationProviderTest.java (limited to 'test/org/traccar/geolocation/GeolocationProviderTest.java') diff --git a/test/org/traccar/geolocation/GeolocationProviderTest.java b/test/org/traccar/geolocation/GeolocationProviderTest.java new file mode 100644 index 000000000..adfd36b96 --- /dev/null +++ b/test/org/traccar/geolocation/GeolocationProviderTest.java @@ -0,0 +1,41 @@ +package org.traccar.geolocation; + +import org.junit.Assert; +import org.junit.Test; +import org.traccar.BaseTest; +import org.traccar.model.CellTower; +import org.traccar.model.Network; + +public class GeolocationProviderTest extends BaseTest { + + private boolean enable = false; + + @Test + public void test() throws Exception { + if (enable) { + testGoogleLocationProvider(); + } + } + + public void testGoogleLocationProvider() throws Exception { + GoogleGeolocationProvider locationProvider = new GoogleGeolocationProvider("KEY"); + + Network network = new Network(CellTower.from(260, 2, 10250, 26511)); + + locationProvider.getLocation(network, new GeolocationProvider.LocationProviderCallback() { + @Override + public void onSuccess(double latitude, double longitude, double accuracy) { + Assert.assertEquals(60.07254, latitude, 0.00001); + Assert.assertEquals(30.30996, longitude, 0.00001); + } + + @Override + public void onFailure(Throwable e) { + Assert.fail(); + } + }); + + Thread.sleep(Long.MAX_VALUE); + } + +} -- cgit v1.2.3