blob: 1dc89b2510f04c835c5c9b5e745c2816382f6cbc (
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.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class OsmAndProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
OsmAndProtocolDecoder decoder = new OsmAndProtocolDecoder(new OsmAndProtocol());
verifyNothing(decoder, request(
"/?timestamp=1377177267&lat=60.0&lon=30.0"));
verifyPosition(decoder, request(
"/?id=902064&lat=42.06288&lon=-88.23412×tamp=2016-01-27T18%3A55%3A47Z&hdop=6.0&altitude=224.0&speed=0.0"));
verifyPosition(decoder, request(
"/?id=902064&lat=42.06288&lon=-88.23412×tamp=1442068686579&hdop=6.0&altitude=224.0&speed=0.0"));
verifyPosition(decoder, request(
"/?lat=49.60688&lon=6.15788×tamp=2014-06-04+09%3A10%3A11&altitude=384.7&speed=0.0&id=353861053849681"));
verifyPosition(decoder, request(
"/?id=123456×tamp=1377177267&lat=60.0&lon=30.0&speed=0.0&bearing=0.0&altitude=0&hdop=0.0"));
verifyPosition(decoder, request(
"/?id=123456×tamp=1377177267&lat=60.0&lon=30.0"));
verifyPosition(decoder, request(
"/?lat=60.0&lon=30.0&speed=0.0&heading=0.0&vacc=0&hacc=0&altitude=0&deviceid=123456"));
verifyPosition(decoder, request(
"/?id=861001000719969&lat=41.666667&lon=-0.883333&altitude=350.059479&speed=0.000000&batt=87"));
verifyPosition(decoder, request(
"/?id=123456×tamp=1377177267&location=60.0,30.0"));
}
}
|