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

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

public class RoboTrackProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        var decoder = inject(new RoboTrackProtocolDecoder(null));

        verifyNull(decoder, binary(
                "00524f424f545241434b00000000000000383638323034303032323533343136313233343536373839303132312e313261000000312e353761000000312e3030000000003e"));

        verifyPosition(decoder, binary(
                "03e020bb5a034409034862120210a9e105000000000000b9"));

        verifyPosition(decoder, binary(
                "03f120bb5a30460903426312021798e105000000000000cd"));

    }

}