diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-10-02 10:17:28 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-02 10:17:28 +1300 |
commit | 8e265f9c030496f5672460379bcb3fc2d0d78a3b (patch) | |
tree | 3554e244d8c012d2a8cce6349b99e0cbb77a880c /test/org/traccar | |
parent | 82909a81eb01cfd76f38fec7cccff5a5c87b5232 (diff) | |
parent | 1acd62bd100ec6a759f49e449b4f31476a4288c1 (diff) | |
download | trackermap-server-8e265f9c030496f5672460379bcb3fc2d0d78a3b.tar.gz trackermap-server-8e265f9c030496f5672460379bcb3fc2d0d78a3b.tar.bz2 trackermap-server-8e265f9c030496f5672460379bcb3fc2d0d78a3b.zip |
Merge pull request #2388 from vitalidze/jt600_commands
For JT600c - added engine start/stop, set timezone and reboot commands implementations
Diffstat (limited to 'test/org/traccar')
-rw-r--r-- | test/org/traccar/protocol/Jt600ProtocolEncoderTest.java | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/Jt600ProtocolEncoderTest.java b/test/org/traccar/protocol/Jt600ProtocolEncoderTest.java new file mode 100644 index 000000000..80802dc35 --- /dev/null +++ b/test/org/traccar/protocol/Jt600ProtocolEncoderTest.java @@ -0,0 +1,37 @@ +package org.traccar.protocol; + +import static org.junit.Assert.assertEquals; + +import org.junit.Test; +import org.traccar.ProtocolTest; +import org.traccar.model.Command; + +public class Jt600ProtocolEncoderTest extends ProtocolTest { + Jt600ProtocolEncoder encoder = new Jt600ProtocolEncoder(); + Command command = new Command(); + + @Test + public void testEngineStop() throws Exception { + command.setType(Command.TYPE_ENGINE_STOP); + assertEquals("(S07,0)", encoder.encodeCommand(command)); + } + + @Test + public void testEngineResume() throws Exception { + command.setType(Command.TYPE_ENGINE_RESUME); + assertEquals("(S07,1)", encoder.encodeCommand(command)); + } + + @Test + public void testSetTimezone() throws Exception { + command.setType(Command.TYPE_SET_TIMEZONE); + command.set(Command.KEY_TIMEZONE, 240 * 60); + assertEquals("(S09,1,240)", encoder.encodeCommand(command)); + } + + @Test + public void testReboot() throws Exception { + command.setType(Command.TYPE_REBOOT_DEVICE); + assertEquals("(S17)", encoder.encodeCommand(command)); + } +} |