blob: 795f758424e20de3872e21a49e7e00a53e68e2f1 (
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.jupiter.api.Test;
import org.traccar.ProtocolTest;
import org.traccar.model.Command;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class TotemProtocolEncoderTest extends ProtocolTest {
@Test
public void testEncode() throws Exception {
var encoder = inject(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 = inject(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));
}
}
|