diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2014-06-22 20:39:49 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2014-06-22 20:39:49 +1200 |
commit | 1c668044b7c1ce5b90257cca3cdc21ac0bc6fc90 (patch) | |
tree | ef81db278606d0cf66b7ec917ef651dca179396a /test/org/traccar | |
parent | f09fc2f40d61c08daa1a28aa03ebe23fe336c8ee (diff) | |
download | trackermap-server-1c668044b7c1ce5b90257cca3cdc21ac0bc6fc90.tar.gz trackermap-server-1c668044b7c1ce5b90257cca3cdc21ac0bc6fc90.tar.bz2 trackermap-server-1c668044b7c1ce5b90257cca3cdc21ac0bc6fc90.zip |
Implement Trackbox protocol
Diffstat (limited to 'test/org/traccar')
-rw-r--r-- | test/org/traccar/protocol/TrackboxProtocolDecoderTest.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/TrackboxProtocolDecoderTest.java b/test/org/traccar/protocol/TrackboxProtocolDecoderTest.java new file mode 100644 index 000000000..7319bb329 --- /dev/null +++ b/test/org/traccar/protocol/TrackboxProtocolDecoderTest.java @@ -0,0 +1,26 @@ +package org.traccar.protocol; + +import org.traccar.helper.TestDataManager; +import static org.traccar.helper.DecoderVerifier.verify; +import static org.junit.Assert.assertNull; +import org.junit.Test; + +public class TrackboxProtocolDecoderTest { + + @Test + public void testDecode() throws Exception { + + TrackboxProtocolDecoder decoder = new TrackboxProtocolDecoder(null); + decoder.setDataManager(new TestDataManager()); + + assertNull(decoder.decode(null, null, "a=connect&v=11&i=111111111111111")); + + verify(decoder.decode(null, null, + "183457.999,5126.0247N,00002.8686E,5.2,70.4,3,57.63,32.11,17.32,150507,05")); + + verify(decoder.decode(null, null, + "183558.999,5126.3979N,00003.0745E,5.2,70.4,3,57.63,32.11,17.32,150507,05")); + + } + +} |