aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/traccar/protocol/TotemProtocolEncoderTest.java
blob: a4fca2d9edf6a98e818e3b3ee13283bd1d700372 (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
37
38
39
package org.traccar.protocol;

import org.junit.Test;
import org.traccar.ProtocolTest;
import org.traccar.model.Command;

import static org.junit.Assert.assertEquals;

public class TotemProtocolEncoderTest extends ProtocolTest {

    @Test
    public void testEncode() throws Exception {

        var encoder = new TotemProtocolEncoder(null);

        Command command = new Command();
        command.setDeviceId(2);
        command.setType(Command.TYPE_REBOOT_DEVICE);
        command.set(Command.KEY_DEVICE_PASSWORD, "000000");

        assertEquals("$$0020CF000000,0061D", encoder.encodeCommand(command));

    }
    
    @Test
    public void testSmsEncode() throws Exception {

        var encoder = new TotemProtocolSmsEncoder(null);

        Command command = new Command();
        command.setDeviceId(2);
        command.setType(Command.TYPE_REBOOT_DEVICE);
        command.set(Command.KEY_DEVICE_PASSWORD, "000000");

        assertEquals("*000000,006#", encoder.encodeCommand(command));

    }

}