blob: 9c50d972a420b7b41cafeb419071f8ec0006f9ad (
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
40
41
|
package org.traccar.protocol;
import org.junit.Test;
import org.traccar.ProtocolTest;
import org.traccar.model.Command;
public class MeiligaoProtocolEncoderTest extends ProtocolTest {
@Test
public void testEncode() throws Exception {
var encoder = new MeiligaoProtocolEncoder(null);
Command command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_POSITION_SINGLE);
verifyCommand(encoder, command, binary("404000111234567890123441016cf70d0a"));
command.setType(Command.TYPE_POSITION_PERIODIC);
command.set(Command.KEY_FREQUENCY, 100);
verifyCommand(encoder, command, binary("40400013123456789012344102000a2f4f0d0a"));
command.setType(Command.TYPE_SET_TIMEZONE);
command.set(Command.KEY_TIMEZONE, "GMT+8");
verifyCommand(encoder, command, binary("4040001412345678901234413234383030ad0d0a"));
command.setType(Command.TYPE_REBOOT_DEVICE);
verifyCommand(encoder, command, binary("40400011123456789012344902d53d0d0a"));
command.setType(Command.TYPE_ALARM_GEOFENCE);
command.set(Command.KEY_RADIUS, 1000);
verifyCommand(encoder, command, binary("4040001312345678901234410603e87bb00d0a"));
}
}
|