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.ProtocolDecoderTest;
public class Tk102ProtocolDecoderTest extends ProtocolDecoderTest {
@Test
public void testDecode() throws Exception {
Tk102ProtocolDecoder decoder = new Tk102ProtocolDecoder(new Tk102Protocol());
verifyNothing(decoder, text(
""));
verifyNothing(decoder, text(
"[!0000000081r(353327023367238,TK102-W998_01_V1.1.001_130219,255,001,255,001,0,100,100,0,internet,0000,0000,0,0,255,0,4,1,11,00)"));
verifyNothing(decoder, text(
"[L0000001323N(GSM,0,0,07410001,20120101162600,404,010,9261,130,0,2353,130,35,9263,130,33,1)"));
verifyNothing(decoder, text(
"[%0000000082\u001d(100100000000000600-30-65535)"));
verifyNothing(decoder, text(
"[#0000000004\u0018(062100000000000600-0-0)"));
verifyPosition(decoder, text(
"[=00000000836(ITV013939A4913.8317N02824.9241E000.90018031310010000)"));
verifyPosition(decoder, text(
"[=00000000366(ITV012209A4913.8281N02824.9258E000.32018031310010000)"));
verifyPosition(decoder, text(
"[;00000000106(ONE200834A5952.8114N01046.0832E003.93212071305010000)"));
verifyPosition(decoder, text(
"[\u00930000000000F(ITV153047A1534.0805N03233.0888E000.00029041500000400&Wsz-wl001&B0000)]"));
}
}
|