diff options
Diffstat (limited to 'test/org/traccar/events')
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()); + } + +} |