aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/events/MotionEventHandlerTest.java
blob: f05ef54d5eb8182cb0707d3a72c6772eec7a59e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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.BaseTest;
import org.traccar.model.Event;
import org.traccar.model.Position;

public class MotionEventHandlerTest extends BaseTest {
    
    @Test
    public void testMotionEventHandler() throws Exception {
        
        MotionEventHandler motionEventHandler = new MotionEventHandler();
        
        Position position = new Position();
        position.set(Position.KEY_MOTION, true);
        position.setValid(true);
        Collection<Event> events = motionEventHandler.analyzePosition(position);
        assertNotNull(events);
        Event event = (Event) events.toArray()[0];
        assertEquals(Event.TYPE_DEVICE_MOVING, event.getType());
    }

}