aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/WebDataHandlerTest.java
blob: e68eaf74efdebc9475bfa060b8eadd3c5dbcf31f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.traccar;

import org.junit.Assert;
import org.junit.Test;
import org.traccar.model.Position;

public class WebDataHandlerTest extends ProtocolTest {

    @Test
    public void testFormatRequest() throws Exception {

        Position p = position("2016-01-01 01:02:03.000", true, 20, 30);

        WebDataHandler handler = new WebDataHandler("http://localhost/?fixTime={fixTime}&gprmc={gprmc}&name={name}");

        Assert.assertEquals(
                "http://localhost/?fixTime=1451610123000&gprmc=$GPRMC,010203.000,A,2000.0000,N,03000.0000,E,0.00,0.00,010116,,*21&name=test",
                handler.formatRequest(p));

    }

}