aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/WatchProtocolDecoderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/protocol/WatchProtocolDecoderTest.java')
-rw-r--r--test/org/traccar/protocol/WatchProtocolDecoderTest.java23
1 files changed, 1 insertions, 22 deletions
diff --git a/test/org/traccar/protocol/WatchProtocolDecoderTest.java b/test/org/traccar/protocol/WatchProtocolDecoderTest.java
index f1287d721..51846f51a 100644
--- a/test/org/traccar/protocol/WatchProtocolDecoderTest.java
+++ b/test/org/traccar/protocol/WatchProtocolDecoderTest.java
@@ -119,32 +119,11 @@ public class WatchProtocolDecoderTest extends ProtocolTest {
verifyNull(decoder.decode(null, null, buffer("[CS*1234567890*0004*TK,1]")));
- MockMediaManager mockMediaManager = new MockMediaManager("/tmp");
- Context.initMediaManager(mockMediaManager);
String hex = "7d5b5d2c2aff";
Object decodedObject = decoder.decode(null, null, concatenateBuffers(buffer("[CS*1234567890*000e*TK,#!AMR"), binary(hex), buffer("]")));
assertTrue("not a position", decodedObject instanceof Position);
Position position = (Position) decodedObject;
assertEquals("1234567890/mock.amr", position.getAttributes().get("audio"));
- verifyFrame(concatenateBuffers(buffer("#!AMR"), binary(hex)), mockMediaManager.readFile("1234567890/mock.amr"));
- }
-
- private static class MockMediaManager extends MediaManager {
- Map<String, ByteBuf> files = new HashMap<>();
-
- MockMediaManager(String path) {
- super(path);
- }
-
- @Override
- public String writeFile(String uniqueId, ByteBuf buf, String extension) {
- String fileName = uniqueId + "/mock." + extension;
- files.put(fileName, buf);
- return fileName;
- }
-
- ByteBuf readFile(String fileName) {
- return files.get(fileName);
- }
+ verifyFrame(concatenateBuffers(buffer("#!AMR"), binary(hex)), ((MockMediaManager) Context.getMediaManager()).readFile("1234567890/mock.amr"));
}
}