aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/location/LocationProviderTest.java
blob: 910f9e9ea038fe2dc4906ce024af6fb0f1ca5fa9 (plain)
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
package org.traccar.location;

import org.junit.Assert;
import org.junit.Test;
import org.traccar.model.Position;

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(Position.KEY_MCC, 260);
        attributes.put(Position.KEY_MNC, 2);
        attributes.put(Position.KEY_LAC, 10250);
        attributes.put(Position.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();
            }
        });
    }

}