aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/events/IgnitionEventHandlerTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/events/IgnitionEventHandlerTest.java')
-rw-r--r--test/org/traccar/events/IgnitionEventHandlerTest.java29
1 files changed, 29 insertions, 0 deletions
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());
+ }
+
+}