blob: 97b5b32daa6d4a470f9f5700a7dcc3ea26d17001 (
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
|
package org.traccar.geolocation;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.traccar.BaseTest;
import org.traccar.model.CellTower;
import org.traccar.model.Network;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
public class GeolocationProviderTest extends BaseTest {
@Ignore
@Test
public void test() throws Exception {
testLocationProvider();
}
public void testLocationProvider() throws Exception {
MozillaGeolocationProvider provider = new MozillaGeolocationProvider(null);
Network network = new Network(CellTower.from(208, 1, 2, 1234567));
provider.getLocation(network, new GeolocationProvider.LocationProviderCallback() {
@Override
public void onSuccess(double latitude, double longitude, double accuracy) {
assertEquals(60.07254, latitude, 0.00001);
assertEquals(30.30996, longitude, 0.00001);
}
@Override
public void onFailure(Throwable e) {
fail();
}
});
Thread.sleep(Long.MAX_VALUE);
}
}
|