aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/MiniFinderProtocolDecoderTest.java
blob: 32bcfe30c1b68a1204392f394d8d55e2b652d9a4 (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
package org.traccar.protocol;

import org.traccar.helper.TestDataManager;
import static org.traccar.helper.DecoderVerifier.verify;
import static org.junit.Assert.assertNull;
import org.junit.Test;

public class MiniFinderProtocolDecoderTest extends ProtocolDecoderTest {

    @Test
    public void testDecode() throws Exception {

        MiniFinderProtocolDecoder decoder = new MiniFinderProtocolDecoder(null);

        assertNull(decoder.decode(null, null, "!1,860719020212696"));

        verify(decoder.decode(null, null,
                "!D,22/2/14,13:40:58,56.899601,14.811541,0,0,1,176.0,98,5,16,0"));

        verify(decoder.decode(null, null,
                "!D,22/2/14,13:47:51,56.899517,14.811665,0,0,b0001,179.3,97,5,16,0"));

        verify(decoder.decode(null, null,
                "!D,3/7/13,6:35:30,22.645952,114.040436,0.0,225.8,1f0001,12.11,98,0,0,0"));

    }

}