blob: c58600bed38118e44d4aae2e7f6ea1d4d070d238 (
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 KhdProtocolDecoderTest extends ProtocolTest {
@Test
public void testDecode() throws Exception {
KhdProtocolDecoder decoder = new KhdProtocolDecoder(new KhdProtocol());
verifyNothing(decoder, binary(
"2929b1000605162935b80d"));
verifyPosition(decoder, binary(
"292980002805162935140108074727801129670365336900000103ffff000082fc0000001e78091b000000360d"));
verifyPosition(decoder, binary(
"29298100280A9F9538081228160131022394301140372500000330FF0000007FFC0F00001E000000000034290D"));
verifyPosition(decoder, binary(
"29298000280A81850A120310095750005281370061190800000232F848FFBBFFFF0000001E000000000000ED0D"));
verifyPosition(decoder, binary(
"29298E00280F80815A121218203116022318461140227000720262FB00077C7FBF5600001E3C3200000000850D"));
verifyPosition(decoder, binary(
"29298200230AA2CC391205030505220285947903109550008002078400000002000000000000750D"));
verifyPosition(decoder, binary(
"29298500081DD08C22120312174026026545710312541700000000F819C839FFFF1D00001E00500000003AF90D"));
verifyPosition(decoder, binary(
"292980002822836665140825142037045343770193879200000050ffff000082fc000004b0780b170000002a0d"));
verifyPosition(decoder, binary(
"292980002802425349120811032137022373011140211100000334FFFF000082FC0000001E780913000034DF0D"));
}
}
|