diff options
author | Anton Tananaev <anton@traccar.org> | 2023-02-17 08:16:37 -0800 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-02-17 08:16:37 -0800 |
commit | ec2b7b64a83aa1c3dcd0cd69c1ae7b2d0d8a7864 (patch) | |
tree | 8ea35258d07932b7e23301a68b1478bc62140ffe /src/test/java/org/traccar/protocol/Jt600FrameDecoderTest.java | |
parent | 596036dc3380e0750d27c814a4d3bb94f4c7e1ea (diff) | |
download | trackermap-server-ec2b7b64a83aa1c3dcd0cd69c1ae7b2d0d8a7864.tar.gz trackermap-server-ec2b7b64a83aa1c3dcd0cd69c1ae7b2d0d8a7864.tar.bz2 trackermap-server-ec2b7b64a83aa1c3dcd0cd69c1ae7b2d0d8a7864.zip |
Support GL600 frames
Diffstat (limited to 'src/test/java/org/traccar/protocol/Jt600FrameDecoderTest.java')
-rw-r--r-- | src/test/java/org/traccar/protocol/Jt600FrameDecoderTest.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/java/org/traccar/protocol/Jt600FrameDecoderTest.java b/src/test/java/org/traccar/protocol/Jt600FrameDecoderTest.java index 8e408e50f..895a0b07b 100644 --- a/src/test/java/org/traccar/protocol/Jt600FrameDecoderTest.java +++ b/src/test/java/org/traccar/protocol/Jt600FrameDecoderTest.java @@ -11,6 +11,14 @@ public class Jt600FrameDecoderTest extends ProtocolTest { var decoder = inject(new Jt600FrameDecoder()); verifyFrame( + binary("2460201102320112003401010000000422434199114158229e000000000009000000000010e06400000000000020100e0868817043592664000000000000"), + decoder.decode(null, null, binary("2460201102320112003401010000000422434199114158229e000000000009000000000010e06400000000000020100e0868817043592664000000000000"))); + + verifyFrame( + binary("24657060730131001b13111710361906538525079524797f000000000000000003f300036c"), + decoder.decode(null, null, binary("24657060730131001b13111710361906538525079524797f000000000000000003f300036c"))); + + verifyFrame( binary("2480413009781914003406102107544354193631006213423b00000000006c070000000020e064f91ea0671d00020f0f0f0f0f0f0f0f0f0f07f100ea0f6e"), decoder.decode(null, null, binary("2480413009781914003406102107544354193631006213423b00000000006c070000000020e064f91ea0671d00020f0f0f0f0f0f0f0f0f0f07f100ea0f6e"))); |