aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/location/LocationProviderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/location/LocationProviderTest.java')
-rw-r--r--test/org/traccar/location/LocationProviderTest.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/test/org/traccar/location/LocationProviderTest.java b/test/org/traccar/location/LocationProviderTest.java
new file mode 100644
index 000000000..b7280cfea
--- /dev/null
+++ b/test/org/traccar/location/LocationProviderTest.java
@@ -0,0 +1,49 @@
+package org.traccar.location;
+
+import org.junit.Assert;
+import org.junit.Test;
+import org.traccar.geocode.AddressFormat;
+import org.traccar.geocode.GisgraphyReverseGeocoder;
+import org.traccar.geocode.GoogleReverseGeocoder;
+import org.traccar.geocode.NominatimReverseGeocoder;
+import org.traccar.geocode.ReverseGeocoder;
+import org.traccar.model.Event;
+
+import java.util.HashMap;
+import java.util.Map;
+
+public class LocationProviderTest {
+
+ private boolean enable = false;
+
+ @Test
+ public void test() {
+ if (enable) {
+ testOpenCellId();
+ }
+ }
+
+ public void testOpenCellId() {
+ OpenCellIdLocationProvider locationProvider = new OpenCellIdLocationProvider("fake");
+
+ Map<String, Object> attributes = new HashMap<>();
+ attributes.put(Event.KEY_MCC, 260);
+ attributes.put(Event.KEY_MNC, 2);
+ attributes.put(Event.KEY_LAC, 10250);
+ attributes.put(Event.KEY_CID, 26511);
+
+ locationProvider.getLocation(attributes, new LocationProvider.LocationProviderCallback() {
+ @Override
+ public void onSuccess(double latitude, double longitude) {
+ Assert.assertEquals(60.07254, latitude, 0.00001);
+ Assert.assertEquals(30.30996, longitude, 0.00001);
+ }
+
+ @Override
+ public void onFailure() {
+ Assert.fail();
+ }
+ });
+ }
+
+}