提交 0623c6f8 编写于 作者: W wangjuneng 提交者: dinglei

[RIP-10] Add ClusterInfo testing case (#830)

上级 d2fba24c
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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 org.apache.rocketmq.common.protocol;
import org.apache.rocketmq.common.MixAll;
import org.apache.rocketmq.common.protocol.body.ClusterInfo;
import org.apache.rocketmq.common.protocol.route.BrokerData;
import org.apache.rocketmq.remoting.protocol.RemotingSerializable;
import static org.junit.Assert.*;
import org.junit.Test;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Set;
public class ClusterInfoTest {
@Test
public void testFormJson() throws Exception {
ClusterInfo clusterInfo = buildClusterInfo();
byte[] data = clusterInfo.encode();
ClusterInfo json = RemotingSerializable.decode(data, ClusterInfo.class);
assertNotNull(json);
assertNotNull(json.getClusterAddrTable());
assertTrue(json.getClusterAddrTable().containsKey("DEFAULT_CLUSTER"));
assertTrue(json.getClusterAddrTable().get("DEFAULT_CLUSTER").contains("master"));
assertNotNull(json.getBrokerAddrTable());
assertTrue(json.getBrokerAddrTable().containsKey("master"));
assertEquals(json.getBrokerAddrTable().get("master").getBrokerName(), "master");
assertEquals(json.getBrokerAddrTable().get("master").getCluster(), "DEFAULT_CLUSTER");
assertEquals(json.getBrokerAddrTable().get("master").getBrokerAddrs().get(MixAll.MASTER_ID), MixAll.getLocalhostByNetworkInterface());
}
@Test
public void testRetrieveAllClusterNames() throws Exception {
ClusterInfo clusterInfo = buildClusterInfo();
byte[] data = clusterInfo.encode();
ClusterInfo json = RemotingSerializable.decode(data, ClusterInfo.class);
assertArrayEquals(new String[]{"DEFAULT_CLUSTER"}, json.retrieveAllClusterNames());
}
@Test
public void testRetrieveAllAddrByCluster() throws Exception {
ClusterInfo clusterInfo = buildClusterInfo();
byte[] data = clusterInfo.encode();
ClusterInfo json = RemotingSerializable.decode(data, ClusterInfo.class);
assertArrayEquals(new String[]{MixAll.getLocalhostByNetworkInterface()}, json.retrieveAllAddrByCluster("DEFAULT_CLUSTER"));
}
private ClusterInfo buildClusterInfo() throws Exception {
ClusterInfo clusterInfo = new ClusterInfo();
HashMap<String, BrokerData> brokerAddrTable = new HashMap<String, BrokerData>();
HashMap<String, Set<String>> clusterAddrTable = new HashMap<String, Set<String>>();
//build brokerData
BrokerData brokerData = new BrokerData();
brokerData.setBrokerName("master");
brokerData.setCluster("DEFAULT_CLUSTER");
//build brokerAddrs
HashMap<Long, String> brokerAddrs = new HashMap<Long, String>();
brokerAddrs.put(MixAll.MASTER_ID, MixAll.getLocalhostByNetworkInterface());
brokerData.setBrokerAddrs(brokerAddrs);
brokerAddrTable.put("master", brokerData);
Set<String> brokerNames = new HashSet<String>();
brokerNames.add("master");
clusterAddrTable.put("DEFAULT_CLUSTER", brokerNames);
clusterInfo.setBrokerAddrTable(brokerAddrTable);
clusterInfo.setClusterAddrTable(clusterAddrTable);
return clusterInfo;
}
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册