diff options
author | Gábor Somogyi <gabor.g.somogyi@gmail.com> | 2016-04-22 23:15:39 +0200 |
---|---|---|
committer | Gábor Somogyi <gabor.g.somogyi@gmail.com> | 2016-04-23 12:10:24 +0200 |
commit | 40620ab3f10c686499ae2b25c8019280b1c82c1f (patch) | |
tree | 08e23e921744ae4fe0132d87df8f9e6d4c4e3b09 /test/org/traccar/protocol/H02ProtocolEncoderTest.java | |
parent | a427f3f6644a62366e4c2ed6c69f2f4479b2bed5 (diff) | |
download | trackermap-server-40620ab3f10c686499ae2b25c8019280b1c82c1f.tar.gz trackermap-server-40620ab3f10c686499ae2b25c8019280b1c82c1f.tar.bz2 trackermap-server-40620ab3f10c686499ae2b25c8019280b1c82c1f.zip |
H02 protocol arm and disarm commands
Diffstat (limited to 'test/org/traccar/protocol/H02ProtocolEncoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/H02ProtocolEncoderTest.java | 45 |
1 files changed, 45 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..d50e66d72 --- /dev/null +++ b/test/org/traccar/protocol/H02ProtocolEncoderTest.java @@ -0,0 +1,45 @@ +package org.traccar.protocol; + +import org.joda.time.DateTime; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.MockitoAnnotations; +import org.mockito.Spy; +import org.traccar.ProtocolTest; +import org.traccar.model.Command; + +import static org.mockito.Mockito.when; + +public class H02ProtocolEncoderTest extends ProtocolTest { + + @Spy + H02ProtocolEncoder encoder; + + @Before + public void before() { + MockitoAnnotations.initMocks(this); + DateTime dt = new DateTime().withHourOfDay(1).withMinuteOfHour(2).withSecondOfMinute(3); + when(encoder.getActualDateTime()).thenReturn(dt); + } + + @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)); + } + + @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)); + } +} |