diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-08-02 07:52:33 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2017-08-02 07:52:33 +1200 |
commit | 237c80296fe947c6857c9509ba1b947ed02b354f (patch) | |
tree | f6b235ddd321fe3e94f4bfe1ac22b14b03518572 /test/org/traccar/protocol/TlvProtocolDecoderTest.java | |
parent | 566f6b0dda38da75ed1fc89c9f5d29769fc1fbe9 (diff) | |
download | trackermap-server-237c80296fe947c6857c9509ba1b947ed02b354f.tar.gz trackermap-server-237c80296fe947c6857c9509ba1b947ed02b354f.tar.bz2 trackermap-server-237c80296fe947c6857c9509ba1b947ed02b354f.zip |
Implement TLV communication protocol
Diffstat (limited to 'test/org/traccar/protocol/TlvProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/TlvProtocolDecoderTest.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/org/traccar/protocol/TlvProtocolDecoderTest.java b/test/org/traccar/protocol/TlvProtocolDecoderTest.java new file mode 100644 index 000000000..6c37c4dbb --- /dev/null +++ b/test/org/traccar/protocol/TlvProtocolDecoderTest.java @@ -0,0 +1,24 @@ +package org.traccar.protocol; + +import org.junit.Test; +import org.traccar.ProtocolTest; + +public class TlvProtocolDecoderTest extends ProtocolTest { + + @Test + public void testDecode() throws Exception { + + TlvProtocolDecoder decoder = new TlvProtocolDecoder(new TlvProtocol()); + + verifyNull(decoder, binary( + "30430f383630323437303330303934333931ff10393233323132323030303834353433340f533636385f415f56312e30315f454eff1130303a30433a45373a30303a30303a30300132")); + + verifyNull(decoder, binary( + "30410f383630323437303330303934333931")); + + verifyNull(decoder, binary( + "30420f3836303234373033303039343339310131")); + + } + +} |