aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/WebDataHandlerTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/WebDataHandlerTest.java')
-rw-r--r--test/org/traccar/WebDataHandlerTest.java12
1 files changed, 8 insertions, 4 deletions
diff --git a/test/org/traccar/WebDataHandlerTest.java b/test/org/traccar/WebDataHandlerTest.java
index 9b003a425..cfbd71f23 100644
--- a/test/org/traccar/WebDataHandlerTest.java
+++ b/test/org/traccar/WebDataHandlerTest.java
@@ -1,6 +1,8 @@
package org.traccar;
import org.junit.Test;
+import org.traccar.config.Config;
+import org.traccar.config.Keys;
import org.traccar.model.Position;
import static org.junit.Assert.assertEquals;
@@ -10,14 +12,16 @@ public class WebDataHandlerTest extends ProtocolTest {
@Test
public void testFormatRequest() throws Exception {
- Position p = position("2016-01-01 01:02:03.000", true, 20, 30);
+ Config config = new Config();
+ config.setString(Keys.FORWARD_URL, "http://localhost/?fixTime={fixTime}&gprmc={gprmc}&name={name}");
- WebDataHandler handler = new WebDataHandler(
- Context.getIdentityManager(), null, null, "http://localhost/?fixTime={fixTime}&gprmc={gprmc}&name={name}", false);
+ Position position = position("2016-01-01 01:02:03.000", true, 20, 30);
+
+ WebDataHandler handler = new WebDataHandler(config, Context.getIdentityManager(), null, null);
assertEquals(
"http://localhost/?fixTime=1451610123000&gprmc=$GPRMC,010203.000,A,2000.0000,N,03000.0000,E,0.00,0.00,010116,,*05&name=test",
- handler.formatRequest(p));
+ handler.formatRequest(position));
}