blob: c1e913415afce41516f53bd6a3c71c088a4489ac (
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
45
46
47
48
49
50
51
52
53
54
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
public class EelinkProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
EelinkProtocolDecoder decoder = new EelinkProtocolDecoder(new EelinkProtocol());
verifyNothing(decoder, binary(
"676701000c007b03525440717505180104"));
verifyPosition(decoder, binary(
"676712001e0092579714d60201f90001785003a301cd1a006a118504f2000000000000"));
verifyPosition(decoder, binary(
"676712003400505784cc0b130246479b07d05a06001800000000070195039f046100002cc52e6466b391604a4900890e7c00000000000006ca"));
verifyPosition(decoder, binary(
"676714002b00515784cc24130246479b07d05a06001800010000060195039f046100002cc52f6466b391604a49020089"));
verifyNothing(decoder, binary(
"676701000c002603541880486128290120"));
verifyPosition(decoder, binary(
"676704001c01a4569ff2dd0517a0f7020b0d9a06011000d8001e005b0004450183"));
verifyPosition(decoder, binary(
"676705002200ba569fc3520517a0d8020b0f740f007100d8001e005b0004460101569fd162001f"));
verifyPosition(decoder, binary(
"676702002500bb569fc3610517a091020b116000001900d8001e005b00044601001f1170003200000000"));
verifyPosition(decoder, binary(
"676704001c00b7569fc3020517a2d7020b08e100000000d8001e005b0004460004"));
verifyNothing(decoder, binary(
"676701000b001b035418804661834901"));
verifyNothing(decoder, binary(
"6767030004001A0001"));
verifyNothing(decoder, binary(
"6767070088001050E2281400FFFFFFFF02334455660333445566043344556605AA00000007334455660A334455660B334455660C4E2000000DAA0000000E334455660F3344556610AAAA000011334455661C334455661F334455662133445566423344556646334455664D334455665C334455665E33445566880000000089000000008A000000008B00000000"));
verifyPosition(decoder, binary(
"676702001b03c5538086df0190c1790b3482df0f0157020800013beb00342401"));
}
}
|