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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
package org.traccar.protocol;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.traccar.ProtocolTest;
import org.traccar.model.Command;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.ZoneOffset;
import java.util.Date;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class H02ProtocolEncoderTest extends ProtocolTest {
private H02ProtocolEncoder encoder;
private final Date time = Date.from(
LocalDateTime.of(LocalDate.now(), LocalTime.of(1, 2, 3)).atZone(ZoneOffset.systemDefault()).toInstant());
@BeforeEach
public void before() throws Exception {
encoder = inject(new H02ProtocolEncoder(null));
}
@Test
public void testAlarmArmEncode() {
Command command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_ALARM_ARM);
assertEquals("*HQ,123456789012345,SCF,010203,0,0#", encoder.encodeCommand(command, time));
}
@Test
public void testAlarmDisarmEncode() {
Command command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_ALARM_DISARM);
assertEquals("*HQ,123456789012345,SCF,010203,1,1#", encoder.encodeCommand(command, time));
}
@Test
public void testEngineStopEncode() {
Command command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_ENGINE_STOP);
assertEquals("*HQ,123456789012345,S20,010203,1,1#", encoder.encodeCommand(command, time));
}
@Test
public void testEngineResumeEncode() {
Command command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_ENGINE_RESUME);
assertEquals("*HQ,123456789012345,S20,010203,1,0#", encoder.encodeCommand(command, time));
}
@Test
public void testPositionPeriodicEncode() {
Command command = new Command();
command.setDeviceId(1);
command.set(Command.KEY_FREQUENCY, 10);
command.setType(Command.TYPE_POSITION_PERIODIC);
assertEquals("*HQ,123456789012345,S71,010203,22,10#", encoder.encodeCommand(command, time));
}
}
|