blob: 1b278032586f5d4176aa8c05ca32e84630332f77 (
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 PretraceProtocolEncoderTest extends ProtocolTest {
@Test
public void testEncodePositionPeriodic() throws Exception {
PretraceProtocolEncoder encoder = new PretraceProtocolEncoder();
Command command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_POSITION_PERIODIC);
command.set(Command.KEY_FREQUENCY, 300);
assertEquals("(123456789012345D221300,300,,^69)", encoder.encodeCommand(command));
}
@Test
public void testEncodeCustom() throws Exception {
PretraceProtocolEncoder encoder = new PretraceProtocolEncoder();
Command command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_CUSTOM);
command.set(Command.KEY_DATA, "D21012");
assertEquals("(123456789012345D21012^44)", encoder.encodeCommand(command));
}
}
|