aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/traccar/protocol/ArnaviFrameDecoderTest.java
blob: 3f495731a536629a2bab450945135f2a79564660 (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
package org.traccar.protocol;

import org.junit.Test;
import org.traccar.ProtocolTest;

public class ArnaviFrameDecoderTest extends ProtocolTest {

    @Test
    public void testDecodeValidPackets() throws Exception {

        var decoder = new ArnaviFrameDecoder();

        verifyFrame(
                binary("2441562c563344492c38353136342c3231342c2d312c31392c30303030344634462c30303030303935452c30433030303030322c3836333037313031333034313631382c38393939373031353630333832353236363232462c2a3039"),
                decoder.decode(null, null, binary("2441562c563344492c38353136342c3231342c2d312c31392c30303030344634462c30303030303935452c30433030303030322c3836333037313031333034313631382c38393939373031353630333832353236363232462c2a30390d0a")));

        verifyFrame(
                binary("ff22f30c45f5c90f0300"),
                decoder.decode(null, null, binary("ff22f30c45f5c90f0300")));

        verifyFrame(
                binary("5b01012800a3175f5903513934420447221c42055402781E0900f0c5215b4e0084005c00007c005d0000a300fa37010000295d"),
                decoder.decode(null, null, binary("5b01012800a3175f5903513934420447221c42055402781E0900f0c5215b4e0084005c00007c005d0000a300fa37010000295d")));

        verifyFrame(
                binary("5b01012800a3175f5903513934420447221c42055402781E0900f0c5215b4e0084005c00007c005d0000a300fa3701000029012800a3175f5903513934420447221c42055402781E0900f0c5215b4e0084005c00007c005d0000a300fa37010000295d"),
                decoder.decode(null, null, binary("5b01012800a3175f5903513934420447221c42055402781E0900f0c5215b4e0084005c00007c005d0000a300fa3701000029012800a3175f5903513934420447221c42055402781E0900f0c5215b4e0084005c00007c005d0000a300fa37010000295d")));

        verifyFrame(
                binary("5b01030700e3f16b50747261636361721b5d"),
                decoder.decode(null, null, binary("5b01030700e3f16b50747261636361721b5d")));

        verifyFrame(
                binary("5b01030700e3f16b50747261636361721b030700e3f16b50747261636361721b5d"),
                decoder.decode(null, null, binary("5b01030700e3f16b50747261636361721b030700e3f16b50747261636361721b5d")));

        verifyFrame(
                binary("5b01061400e3f16b5003298b5e4204cbd514420500191000080400ff021b5d"),
                decoder.decode(null, null, binary("5b01061400e3f16b5003298b5e4204cbd514420500191000080400ff021b5d")));

        verifyFrame(
                binary("5b01061400e3f16b5003298b5e4204cbd514420500191000080400ff021b061400e3f16b5003298b5e4204cbd514420500191000080400ff021b5d"),
                decoder.decode(null, null, binary("5b01061400e3f16b5003298b5e4204cbd514420500191000080400ff021b061400e3f16b5003298b5e4204cbd514420500191000080400ff021b5d")));

        verifyFrame(
                binary("5bfd005d"),
                decoder.decode(null, null, binary("5bfd005d")));

    }

}