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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class MiniFinderProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
MiniFinderProtocolDecoder decoder = new MiniFinderProtocolDecoder(new MiniFinderProtocol());
verifyNothing(decoder, text(
"!1,123456789012345"));
verifyNothing(decoder, text(
"!5,17,V"));
verifyNothing(decoder, text(
"!1,860719027585011"));
verifyPosition(decoder, text(
"!D,07/04/17,05:42:26,-37.588970,145.121231,0,0,0c0001,185.2,92,7,14,1.2"));
verifyPosition(decoder, text(
"!D,28/11/16,00:04:09,42.926067,-85.747589,124,236,140001,179.8,60,11,16,0"));
verifyPosition(decoder, text(
"!C,30/1/16,1:1:6,31.259157,30.020910,0,0,100001,25.32,100,0.03,0.01,0"));
verifyPosition(decoder, text(
"!A,26/10/12,00:28:41,7.770385,-72.215706,0.0,25101,0"));
verifyPosition(decoder, text(
"!A,01/12/10,13:25:35,22.641724,114.023666,000.1,281.6,0"));
verifyPosition(decoder, text(
"!D,08/07/15,04:01:32,40.428257,-3.704808,0,0,170001,701.7,22,5,14,0"));
verifyPosition(decoder, text(
"!D,08/07/15,04:55:13,40.428257,-3.704932,0,0,180001,680.0,8,8,13,0"));
verifyPosition(decoder, text(
"!D,08/07/15,02:01:32,40.428230,-3.704950,4,170,170001,682.7,43,6,13,0"));
verifyNothing(decoder, text(
"!1,860719020212696"));
verifyPosition(decoder, text(
"!D,22/2/14,13:40:58,56.899601,14.811541,0,0,1,176.0,98,5,16,0"),
position("2014-02-22 13:40:58.000", true, 56.89960, 14.81154));
verifyPosition(decoder, text(
"!D,22/2/14,13:47:51,56.899517,14.811665,0,0,b0001,179.3,97,5,16,0"));
verifyPosition(decoder, text(
"!D,3/7/13,6:35:30,22.645952,114.040436,0.0,225.8,1f0001,12.11,98,0,0,0"));
}
}
|