Java tutorial
/* Licensed to Diennea S.r.l. under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Diennea S.r.l. licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package dodo.network.netty; import majordodo.network.netty.DodoMessageUtils; import majordodo.network.Message; import io.netty.buffer.ByteBuf; import io.netty.buffer.Unpooled; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import org.junit.Test; import static org.junit.Assert.*; /** * @author enrico.olivelli */ public class DodoMessageUtilsTest { @Test public void testEncodeMessage() { ByteBuf encoded = Unpooled.buffer(); Map<String, Object> pp = new HashMap<>(); pp.put("1", 1); pp.put("2", 2L); pp.put("3", "3"); Map<String, Object> pp_map = new HashMap<>(); pp.put("pp_map", pp_map); pp_map.put("m1", 1); pp_map.put("m2", 2L); pp_map.put("m3", "3"); Set<Object> pp_set = new HashSet<>(); pp.put("pp_set", pp_set); pp_set.add(1); pp_set.add(2L); pp_set.add("3"); Set<Object> runningTasks = new HashSet<>(); runningTasks.add(null); runningTasks.add(Integer.valueOf(1)); runningTasks.add(Long.valueOf(1)); runningTasks.add("teststring"); pp.put("4", runningTasks); Map<String, Object> tags = new HashMap<>(); tags.put("a", null); tags.put("b", Integer.valueOf(1)); tags.put("c", Long.valueOf(1)); tags.put("d", "teststring"); pp.put("5", tags); Message m = new Message("a", Message.TYPE_KILL_WORKER, pp); m.replyMessageId = "b"; m.messageId = "c"; DodoMessageUtils.encodeMessage(encoded, m); Message read = DodoMessageUtils.decodeMessage(encoded); System.out.println("read.parameters:" + read.parameters); assertEquals(read.messageId, m.messageId); assertEquals(read.replyMessageId, m.replyMessageId); assertEquals(read.workerProcessId, m.workerProcessId); assertEquals(read.parameters.size(), m.parameters.size()); assertEquals(read.parameters.get("1"), m.parameters.get("1")); assertEquals(read.parameters.get("2"), m.parameters.get("2")); assertEquals(read.parameters.get("3"), m.parameters.get("3")); assertEquals(read.parameters.get("4"), m.parameters.get("4")); assertEquals(read.parameters.get("5"), m.parameters.get("5")); assertEquals(read.parameters.get("pp_map"), m.parameters.get("pp_map")); assertEquals(read.parameters.get("pp_set"), m.parameters.get("pp_set")); } }