diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-04-24 10:08:33 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-04-24 10:08:33 +1200 |
commit | 07d3ff0538c4999b7ac445d5c41af3c67c098bce (patch) | |
tree | f18a99a3b6f332f91379a000b9c94569ba8a6e22 /test | |
parent | 037b1401975751f8b70338eae781e28bda676972 (diff) | |
parent | b97a5a7764710cfa6744715555b6a3395ec3bf58 (diff) | |
download | trackermap-server-07d3ff0538c4999b7ac445d5c41af3c67c098bce.tar.gz trackermap-server-07d3ff0538c4999b7ac445d5c41af3c67c098bce.tar.bz2 trackermap-server-07d3ff0538c4999b7ac445d5c41af3c67c098bce.zip |
Merge pull request #1899 from gaborgsomogyi/h02-additional-commands
H02 engine start/stop and periodic update commands
Diffstat (limited to 'test')
-rw-r--r-- | test/org/traccar/protocol/H02ProtocolEncoderTest.java | 31 |
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)); + } } |