diff options
author | Vitaly Litvak <vitavaque@gmail.com> | 2016-10-01 09:58:59 +0300 |
---|---|---|
committer | Vitaly Litvak <vitavaque@gmail.com> | 2016-10-01 09:58:59 +0300 |
commit | 2c9c5540cb9c8edace64daba4b60957436d12e76 (patch) | |
tree | c13cb9dc160b93890713bd470ca6ce9300c3ff40 /test/org/traccar/protocol/Jt600ProtocolEncoderTest.java | |
parent | 82909a81eb01cfd76f38fec7cccff5a5c87b5232 (diff) | |
download | trackermap-server-2c9c5540cb9c8edace64daba4b60957436d12e76.tar.gz trackermap-server-2c9c5540cb9c8edace64daba4b60957436d12e76.tar.bz2 trackermap-server-2c9c5540cb9c8edace64daba4b60957436d12e76.zip |
For JT600c - added engine start/stop, set timezone and reboot commands implementation with tests
Diffstat (limited to 'test/org/traccar/protocol/Jt600ProtocolEncoderTest.java')
-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)); + } +} |