diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-04-03 19:28:54 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-04-03 19:28:54 +1200 |
commit | 72dc597437b0377fb060ef8d26aba404c62e73e2 (patch) | |
tree | 926abbaa7b66daa8569da9c0db71ca1ab271fcbc /test/org | |
parent | e1d7bcccdbdd7f2eb35224f0811fd806ae034821 (diff) | |
download | trackermap-server-72dc597437b0377fb060ef8d26aba404c62e73e2.tar.gz trackermap-server-72dc597437b0377fb060ef8d26aba404c62e73e2.tar.bz2 trackermap-server-72dc597437b0377fb060ef8d26aba404c62e73e2.zip |
Implement web data handler unit test
Diffstat (limited to 'test/org')
-rw-r--r-- | test/org/traccar/WebDataHandlerTest.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/org/traccar/WebDataHandlerTest.java b/test/org/traccar/WebDataHandlerTest.java new file mode 100644 index 000000000..f8818a0c4 --- /dev/null +++ b/test/org/traccar/WebDataHandlerTest.java @@ -0,0 +1,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}"); + + Assert.assertEquals( + "http://localhost/?fixTime=1451610123000&gprmc=$GPRMC,010203.000,A,2000.0000,N,03000.0000,E,0.00,0.00,010116,,*21", + handler.formatRequest(p)); + + } + +} |