aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/events/MotionEventHandlerTest.java
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/MotionEventHandlerTest.java
parent76420fb31d41a62bc0fe19e8fea63be374c67b61 (diff)
downloadtraccar-server-16ec66e18af7c421e80591cf6c463c52980665ec.tar.gz
traccar-server-16ec66e18af7c421e80591cf6c463c52980665ec.tar.bz2
traccar-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/MotionEventHandlerTest.java')
-rw-r--r--test/org/traccar/events/MotionEventHandlerTest.java29
1 files changed, 29 insertions, 0 deletions
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());
+ }
+
+}