diff options
Diffstat (limited to 'test/org/traccar/protocol/Pt502ProtocolEncoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/Pt502ProtocolEncoderTest.java | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/test/org/traccar/protocol/Pt502ProtocolEncoderTest.java b/test/org/traccar/protocol/Pt502ProtocolEncoderTest.java deleted file mode 100644 index a6c8bb50f..000000000 --- a/test/org/traccar/protocol/Pt502ProtocolEncoderTest.java +++ /dev/null @@ -1,69 +0,0 @@ -package org.traccar.protocol; - -import org.junit.Test; -import org.traccar.ProtocolTest; -import org.traccar.model.Command; - -import static org.junit.Assert.assertEquals; - -public class Pt502ProtocolEncoderTest extends ProtocolTest { - - @Test - public void testEncodeCustom() throws Exception { - - Pt502ProtocolEncoder encoder = new Pt502ProtocolEncoder(); - - Command command = new Command(); - command.setDeviceId(1); - command.setType(Command.TYPE_CUSTOM); - command.set(Command.KEY_DATA, "#PTI300"); - - assertEquals("#PTI300\r\n", encoder.encodeCommand(command)); - - } - - @Test - public void testEncodeOutputControl() throws Exception { - - Pt502ProtocolEncoder encoder = new Pt502ProtocolEncoder(); - - Command command = new Command(); - command.setDeviceId(1); - command.setType(Command.TYPE_OUTPUT_CONTROL); - command.set(Command.KEY_INDEX, 2); - command.set(Command.KEY_DATA, "1"); - - assertEquals("#OPC2,1\r\n", encoder.encodeCommand(command)); - - } - - @Test - public void testEncodeTimezone() throws Exception { - - Pt502ProtocolEncoder encoder = new Pt502ProtocolEncoder(); - - Command command = new Command(); - command.setDeviceId(1); - command.setType(Command.TYPE_SET_TIMEZONE); - command.set(Command.KEY_TIMEZONE, "GMT+8"); - - assertEquals("#TMZ8\r\n", encoder.encodeCommand(command)); - - } - - - @Test - public void testEncodeAlarmSpeed() throws Exception { - - Pt502ProtocolEncoder encoder = new Pt502ProtocolEncoder(); - - Command command = new Command(); - command.setDeviceId(1); - command.setType(Command.TYPE_ALARM_SPEED); - command.set(Command.KEY_DATA, 120); - - assertEquals("#SPD120\r\n", encoder.encodeCommand(command)); - - } - -} |