aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-04-24 01:38:14 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2016-04-24 01:38:14 +1200
commit037b1401975751f8b70338eae781e28bda676972 (patch)
tree7a09163c265ba5378c5c59b03db73e295addecf8 /test
parent32f5c3ce86ed63ec880c31f337821285be52a94f (diff)
parent45f1471fc612834128d4ce3751905060fda04042 (diff)
downloadtrackermap-server-037b1401975751f8b70338eae781e28bda676972.tar.gz
trackermap-server-037b1401975751f8b70338eae781e28bda676972.tar.bz2
trackermap-server-037b1401975751f8b70338eae781e28bda676972.zip
Merge pull request #1898 from gaborgsomogyi/h02-arm-disarm-commands
H02 protocol arm and disarm commands
Diffstat (limited to 'test')
-rw-r--r--test/org/traccar/protocol/H02ProtocolEncoderTest.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/H02ProtocolEncoderTest.java b/test/org/traccar/protocol/H02ProtocolEncoderTest.java
new file mode 100644
index 000000000..50f36c12d
--- /dev/null
+++ b/test/org/traccar/protocol/H02ProtocolEncoderTest.java
@@ -0,0 +1,33 @@
+package org.traccar.protocol;
+
+import org.joda.time.DateTime;
+import org.junit.Assert;
+import org.junit.Test;
+import org.traccar.ProtocolTest;
+import org.traccar.model.Command;
+
+public class H02ProtocolEncoderTest extends ProtocolTest {
+
+ H02ProtocolEncoder encoder = new H02ProtocolEncoder();
+ DateTime dt = new DateTime().withHourOfDay(1).withMinuteOfHour(2).withSecondOfMinute(3);;
+
+ @Test
+ public void testAlarmArmEncode() throws Exception {
+
+ Command command = new Command();
+ command.setDeviceId(1);
+ command.setType(Command.TYPE_ALARM_ARM);
+
+ Assert.assertEquals("*HQ,123456789012345,SCF,010203,0,0#", encoder.encodeCommand(command, dt));
+ }
+
+ @Test
+ public void testAlarmDisarmEncode() throws Exception {
+
+ Command command = new Command();
+ command.setDeviceId(1);
+ command.setType(Command.TYPE_ALARM_DISARM);
+
+ Assert.assertEquals("*HQ,123456789012345,SCF,010203,1,1#", encoder.encodeCommand(command, dt));
+ }
+}