diff options
author | Abyss777 <abyss@fox5.ru> | 2016-08-11 09:51:40 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-08-11 09:51:40 +0500 |
commit | 16ec66e18af7c421e80591cf6c463c52980665ec (patch) | |
tree | 947a9d4b109a6d91597b6d4c2b6ef2e4a677a0c2 /test/org/traccar/events/IgnitionEventHandlerTest.java | |
parent | 76420fb31d41a62bc0fe19e8fea63be374c67b61 (diff) | |
download | trackermap-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/IgnitionEventHandlerTest.java')
-rw-r--r-- | test/org/traccar/events/IgnitionEventHandlerTest.java | 29 |
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()); + } + +} |