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

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

public class C2stekProtocolDecoderTest extends ProtocolTest {

    @Test
    public void testDecode() throws Exception {

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

        verifyPosition(decoder, text(
                "PA$012207006145046$D#190607#123157#1#37.947087#023.768669#000.00#314.6#00000.0#4104#000#8$AP"));

        verifyPosition(decoder, text(
                "PA$867965024889327$D#220222#135059#0#+37.98995#+23.85141#0.00#69.2#0.0#0000#000#8#00#sz-w1001#B2600$AP"));

        verifyPosition(decoder, text(
                "PA$863083038046613$D#181123#162850#1#+37.92684#+23.75933#0.62#200.1#0.0#3768#000#9#00#sz-w1001#B0907839$AP"));

        verifyPosition(decoder, text(
                "PA$353990030327618$D#091117#020928#1#22.537222#114.020948#0.00#0.0#42.1#4183#011#1#101#Wsz-wl001#B0101940#C+3.0,-5.0,+2.0$AP"));

        verifyNull(decoder, text(
                "PA$863083030602124$20$AP"));

    }

}