blob: 62406d3f2cefdab8b3e706a3767bf5fc58428e80 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
|
package org.traccar.protocol;
import org.junit.Assert;
import org.junit.Test;
import org.traccar.ProtocolTest;
import org.traccar.model.Command;
public class Pt502ProtocolEncoderTest extends ProtocolTest {
@Test
public void testEncodeOutputControl() throws Exception {
Pt502ProtocolEncoder encoder = new Pt502ProtocolEncoder();
Command command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_OUTPUT_CONTROL);
command.set(Command.KEY_INDEX, 2);
command.set(Command.KEY_DATA, 1);
Assert.assertEquals("#OPC2,1\r\n", encoder.encodeCommand(command));
}
@Test
public void testEncodeTimezone() throws Exception {
Pt502ProtocolEncoder encoder = new Pt502ProtocolEncoder();
Command command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_SET_TIMEZONE);
command.set(Command.KEY_TIMEZONE, "GMT+8");
Assert.assertEquals("#TMZ8\r\n", encoder.encodeCommand(command));
}
@Test
public void testEncodeAlarmSpeed() throws Exception {
Pt502ProtocolEncoder encoder = new Pt502ProtocolEncoder();
Command command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_ALARM_SPEED);
command.set(Command.KEY_DATA, 120);
Assert.assertEquals("#SPD120\r\n", encoder.encodeCommand(command));
}
}
|