aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/traccar/protocol/PricolProtocolDecoderTest.java
blob: a9373e22eeb59ccc2af29c343b5e5e6bdbe1c3c6 (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.Test;
import org.traccar.ProtocolTest;

public class PricolProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

        var decoder = new PricolProtocolDecoder(null);

        verifyPosition(decoder, binary(
                "3c5052493030303350020000011402110b222b0455152e4e001de819ca450000000000000003820249000000000000000000000000000000000000000040003e"));

        verifyNotNull(decoder, binary(
                "3c544553303030324b02000000000000000000000000000000000000000000000000000000037c01f4000000000000000000000000000000000000000000003e"));

        verifyPosition(decoder, binary(
                "3c4944303030303150FFFFFFFF1C050C121D38045D09FA4e001DE815F4452FFFFFFFFFFF03FF03FF03FF03FF03FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF113e"));

    }

}