aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGábor Somogyi <gabor.g.somogyi@gmail.com>2016-04-23 17:33:23 +0200
committerGábor Somogyi <gabor.g.somogyi@gmail.com>2016-04-23 17:33:23 +0200
commitb97a5a7764710cfa6744715555b6a3395ec3bf58 (patch)
treef18a99a3b6f332f91379a000b9c94569ba8a6e22 /test
parent037b1401975751f8b70338eae781e28bda676972 (diff)
downloadtrackermap-server-b97a5a7764710cfa6744715555b6a3395ec3bf58.tar.gz
trackermap-server-b97a5a7764710cfa6744715555b6a3395ec3bf58.tar.bz2
trackermap-server-b97a5a7764710cfa6744715555b6a3395ec3bf58.zip
H02 engine start/stop and periodic update commands
Diffstat (limited to 'test')
-rw-r--r--test/org/traccar/protocol/H02ProtocolEncoderTest.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/H02ProtocolEncoderTest.java b/test/org/traccar/protocol/H02ProtocolEncoderTest.java
index 50f36c12d..620793595 100644
--- a/test/org/traccar/protocol/H02ProtocolEncoderTest.java
+++ b/test/org/traccar/protocol/H02ProtocolEncoderTest.java
@@ -30,4 +30,35 @@ public class H02ProtocolEncoderTest extends ProtocolTest {
Assert.assertEquals("*HQ,123456789012345,SCF,010203,1,1#", encoder.encodeCommand(command, dt));
}
+
+ @Test
+ public void testEngineStopEncode() throws Exception {
+
+ Command command = new Command();
+ command.setDeviceId(1);
+ command.setType(Command.TYPE_ENGINE_STOP);
+
+ Assert.assertEquals("*HQ,123456789012345,S20,010203,1,3,10,3,5,5,3,5,3,5,3,5#", encoder.encodeCommand(command, dt));
+ }
+
+ @Test
+ public void testEngineResumeEncode() throws Exception {
+
+ Command command = new Command();
+ command.setDeviceId(1);
+ command.setType(Command.TYPE_ENGINE_RESUME);
+
+ Assert.assertEquals("*HQ,123456789012345,S20,010203,0,0#", encoder.encodeCommand(command, dt));
+ }
+
+ @Test
+ public void testPositionPeriodicEncode() throws Exception {
+
+ Command command = new Command();
+ command.setDeviceId(1);
+ command.set(Command.KEY_FREQUENCY, 10);
+ command.setType(Command.TYPE_POSITION_PERIODIC);
+
+ Assert.assertEquals("*HQ,123456789012345,S71,010203,22,10#", encoder.encodeCommand(command, dt));
+ }
}