aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/events
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-08-11 09:51:40 +0500
committerAbyss777 <abyss@fox5.ru>2016-08-11 09:51:40 +0500
commit16ec66e18af7c421e80591cf6c463c52980665ec (patch)
tree947a9d4b109a6d91597b6d4c2b6ef2e4a677a0c2 /test/org/traccar/events
parent76420fb31d41a62bc0fe19e8fea63be374c67b61 (diff)
downloadtrackermap-server-16ec66e18af7c421e80591cf6c463c52980665ec.tar.gz
trackermap-server-16ec66e18af7c421e80591cf6c463c52980665ec.tar.bz2
trackermap-server-16ec66e18af7c421e80591cf6c463c52980665ec.zip
- Added IgnitionEventHandler
- Added unit test for some EventHandlers - Changed a bit IdentityManager to fit EventHandlerTest
Diffstat (limited to 'test/org/traccar/events')
-rw-r--r--test/org/traccar/events/AlertEventHandlerTest.java28
-rw-r--r--test/org/traccar/events/CommandResultEventHandlerTest.java28
-rw-r--r--test/org/traccar/events/IgnitionEventHandlerTest.java29
-rw-r--r--test/org/traccar/events/MotionEventHandlerTest.java29
4 files changed, 114 insertions, 0 deletions
diff --git a/test/org/traccar/events/AlertEventHandlerTest.java b/test/org/traccar/events/AlertEventHandlerTest.java
new file mode 100644
index 000000000..c6d5e07d9
--- /dev/null
+++ b/test/org/traccar/events/AlertEventHandlerTest.java
@@ -0,0 +1,28 @@
+package org.traccar.events;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+
+import java.util.Collection;
+
+import org.junit.Test;
+import org.traccar.EventHandlerTest;
+import org.traccar.model.Event;
+import org.traccar.model.Position;
+
+public class AlertEventHandlerTest extends EventHandlerTest {
+
+ @Test
+ public void testAlertEventHandler() throws Exception {
+
+ AlertEventHandler alertEventHandler = new AlertEventHandler();
+
+ Position position = new Position();
+ position.set(Position.KEY_ALARM, Position.ALARM_GENERAL);
+ Collection<Event> events = alertEventHandler.analyzePosition(position);
+ assertNotNull(events);
+ Event event = (Event) events.toArray()[0];
+ assertEquals(Event.TYPE_ALARM, event.getType());
+ }
+
+}
diff --git a/test/org/traccar/events/CommandResultEventHandlerTest.java b/test/org/traccar/events/CommandResultEventHandlerTest.java
new file mode 100644
index 000000000..b09898b4a
--- /dev/null
+++ b/test/org/traccar/events/CommandResultEventHandlerTest.java
@@ -0,0 +1,28 @@
+package org.traccar.events;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+
+import java.util.Collection;
+
+import org.junit.Test;
+import org.traccar.EventHandlerTest;
+import org.traccar.model.Event;
+import org.traccar.model.Position;
+
+public class CommandResultEventHandlerTest extends EventHandlerTest {
+
+ @Test
+ public void testCommandResultEventHandler() throws Exception {
+
+ CommandResultEventHandler commandResultEventHandler = new CommandResultEventHandler();
+
+ Position position = new Position();
+ position.set(Position.KEY_RESULT, "Test Result");
+ Collection<Event> events = commandResultEventHandler.analyzePosition(position);
+ assertNotNull(events);
+ Event event = (Event) events.toArray()[0];
+ assertEquals(Event.TYPE_COMMAND_RESULT, event.getType());
+ }
+
+}
diff --git a/test/org/traccar/events/IgnitionEventHandlerTest.java b/test/org/traccar/events/IgnitionEventHandlerTest.java
new file mode 100644
index 000000000..96df6e1ed
--- /dev/null
+++ b/test/org/traccar/events/IgnitionEventHandlerTest.java
@@ -0,0 +1,29 @@
+package org.traccar.events;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+
+import java.util.Collection;
+
+import org.junit.Test;
+import org.traccar.EventHandlerTest;
+import org.traccar.model.Event;
+import org.traccar.model.Position;
+
+public class IgnitionEventHandlerTest extends EventHandlerTest{
+
+ @Test
+ public void testIgnitionEventHandler() throws Exception {
+
+ IgnitionEventHandler ignitionEventHandler = new IgnitionEventHandler();
+
+ Position position = new Position();
+ position.set(Position.KEY_IGNITION, true);
+ position.setValid(true);
+ Collection<Event> events = ignitionEventHandler.analyzePosition(position);
+ assertNotNull(events);
+ Event event = (Event) events.toArray()[0];
+ assertEquals(Event.TYPE_IGNITION_ON, event.getType());
+ }
+
+}
diff --git a/test/org/traccar/events/MotionEventHandlerTest.java b/test/org/traccar/events/MotionEventHandlerTest.java
new file mode 100644
index 000000000..34b2c481d
--- /dev/null
+++ b/test/org/traccar/events/MotionEventHandlerTest.java
@@ -0,0 +1,29 @@
+package org.traccar.events;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+
+import java.util.Collection;
+
+import org.junit.Test;
+import org.traccar.EventHandlerTest;
+import org.traccar.model.Event;
+import org.traccar.model.Position;
+
+public class MotionEventHandlerTest extends EventHandlerTest {
+
+ @Test
+ public void testMotionEventHandler() throws Exception {
+
+ MotionEventHandler motionEventHandler = new MotionEventHandler();
+
+ Position position = new Position();
+ position.setSpeed(10.0);
+ position.setValid(true);
+ Collection<Event> events = motionEventHandler.analyzePosition(position);
+ assertNotNull(events);
+ Event event = (Event) events.toArray()[0];
+ assertEquals(Event.TYPE_DEVICE_MOVING, event.getType());
+ }
+
+}