aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/WondexProtocolDecoderTest.java
blob: 5173734a8898f0d7d5c73b4d415c057358b958d4 (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
package org.traccar.protocol;

import org.junit.Test;
import org.traccar.ProtocolDecoderTest;

public class WondexProtocolDecoderTest extends ProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {

        WondexProtocolDecoder decoder = new WondexProtocolDecoder(new WondexProtocol());
        
        verifyPosition(decoder, text(
                "1044989601,20130323074605,0.000000,90.000000,0,000,0,0,2"));

        verifyPosition(decoder, text(
                "123456789000001,20120101123200,130.000000,60.000000,0,000,0,0,0,0"));

        verifyPosition(decoder, text(
                "210000001,20070313170040,121.123456,12.654321,0,233,0,9,2,0.0,0,0.00,0.00,0"));

        verifyPosition(decoder, text(
                "1044989601,20130322172647,13.572583,52.401070,22,204,49,0,2"));

        verifyPosition(decoder, text(
                "1044989601,20130322172647,13.572583,52.401070,22,204,-49,0,2"));
        
        verifyPosition(decoder, text(
                "3997324533,20140326074908,28.797603,47.041635,0,48,0,6,2,3.90V,0"));
        
        verifyPosition(decoder, text(
                "2000000001,20140529213210,-63.179111,9.781493,0,0,54.0,8,2,0.0,0,0.01,0.01,0,0,0,0"));

    }

}