aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/H02ProtocolEncoderTest.java
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2019-03-31 22:35:39 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2019-03-31 22:35:39 -0700
commit59416923dcb3a756eaf532cc4259f2f6625c0762 (patch)
tree9082dae6616deac8fda432b7bfd80e4a52b6d9dc /test/org/traccar/protocol/H02ProtocolEncoderTest.java
parent79a129dd6327d932133d6b9a50190d3f4927bff9 (diff)
downloadtrackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.tar.gz
trackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.tar.bz2
trackermap-server-59416923dcb3a756eaf532cc4259f2f6625c0762.zip
Convert project to gradle
Diffstat (limited to 'test/org/traccar/protocol/H02ProtocolEncoderTest.java')
-rw-r--r--test/org/traccar/protocol/H02ProtocolEncoderTest.java72
1 files changed, 0 insertions, 72 deletions
diff --git a/test/org/traccar/protocol/H02ProtocolEncoderTest.java b/test/org/traccar/protocol/H02ProtocolEncoderTest.java
deleted file mode 100644
index a7ce3fc7e..000000000
--- a/test/org/traccar/protocol/H02ProtocolEncoderTest.java
+++ /dev/null
@@ -1,72 +0,0 @@
-package org.traccar.protocol;
-
-import org.junit.Test;
-import org.traccar.ProtocolTest;
-import org.traccar.model.Command;
-
-import java.time.LocalDate;
-import java.time.LocalDateTime;
-import java.time.LocalTime;
-import java.time.ZoneOffset;
-import java.util.Date;
-
-import static org.junit.Assert.assertEquals;
-
-public class H02ProtocolEncoderTest extends ProtocolTest {
-
- private H02ProtocolEncoder encoder = new H02ProtocolEncoder();
- private Date time = Date.from(
- LocalDateTime.of(LocalDate.now(), LocalTime.of(1, 2, 3)).atZone(ZoneOffset.systemDefault()).toInstant());
-
- @Test
- public void testAlarmArmEncode() throws Exception {
-
- Command command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_ALARM_ARM);
-
- assertEquals("*HQ,123456789012345,SCF,010203,0,0#", encoder.encodeCommand(command, time));
- }
-
- @Test
- public void testAlarmDisarmEncode() throws Exception {
-
- Command command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_ALARM_DISARM);
-
- assertEquals("*HQ,123456789012345,SCF,010203,1,1#", encoder.encodeCommand(command, time));
- }
-
- @Test
- public void testEngineStopEncode() throws Exception {
-
- Command command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_ENGINE_STOP);
-
- assertEquals("*HQ,123456789012345,S20,010203,1,1#", encoder.encodeCommand(command, time));
- }
-
- @Test
- public void testEngineResumeEncode() throws Exception {
-
- Command command = new Command();
- command.setDeviceId(1);
- command.setType(Command.TYPE_ENGINE_RESUME);
-
- assertEquals("*HQ,123456789012345,S20,010203,1,0#", encoder.encodeCommand(command, time));
- }
-
- @Test
- public void testPositionPeriodicEncode() throws Exception {
-
- Command command = new Command();
- command.setDeviceId(1);
- command.set(Command.KEY_FREQUENCY, 10);
- command.setType(Command.TYPE_POSITION_PERIODIC);
-
- assertEquals("*HQ,123456789012345,S71,010203,22,10#", encoder.encodeCommand(command, time));
- }
-
-}