forked from apache/rocketmq
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ROCKETMQ-51] Add unit tests for ClientManageProcessor
- Loading branch information
Showing
3 changed files
with
207 additions
and
7 deletions.
There are no files selected for viewing
132 changes: 132 additions & 0 deletions
132
broker/src/test/java/org/apache/rocketmq/broker/processor/ClientManageProcessorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
/* | ||
* 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.broker.processor; | ||
|
||
import io.netty.channel.Channel; | ||
import io.netty.channel.ChannelHandlerContext; | ||
import java.util.HashMap; | ||
import java.util.UUID; | ||
import org.apache.rocketmq.broker.BrokerController; | ||
import org.apache.rocketmq.broker.client.ClientChannelInfo; | ||
import org.apache.rocketmq.broker.client.ConsumerGroupInfo; | ||
import org.apache.rocketmq.common.BrokerConfig; | ||
import org.apache.rocketmq.common.protocol.RequestCode; | ||
import org.apache.rocketmq.common.protocol.ResponseCode; | ||
import org.apache.rocketmq.common.protocol.header.UnregisterClientRequestHeader; | ||
import org.apache.rocketmq.common.protocol.heartbeat.ConsumerData; | ||
import org.apache.rocketmq.remoting.exception.RemotingCommandException; | ||
import org.apache.rocketmq.remoting.netty.NettyClientConfig; | ||
import org.apache.rocketmq.remoting.netty.NettyServerConfig; | ||
import org.apache.rocketmq.remoting.protocol.LanguageCode; | ||
import org.apache.rocketmq.remoting.protocol.RemotingCommand; | ||
import org.apache.rocketmq.store.config.MessageStoreConfig; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.mockito.Mock; | ||
import org.mockito.Spy; | ||
import org.mockito.junit.MockitoJUnitRunner; | ||
|
||
import static org.apache.rocketmq.broker.processor.PullMessageProcessorTest.createConsumerData; | ||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.mockito.Mockito.when; | ||
|
||
@RunWith(MockitoJUnitRunner.class) | ||
public class ClientManageProcessorTest { | ||
private ClientManageProcessor clientManageProcessor; | ||
@Spy | ||
private BrokerController brokerController = new BrokerController(new BrokerConfig(), new NettyServerConfig(), new NettyClientConfig(), new MessageStoreConfig()); | ||
@Mock | ||
private ChannelHandlerContext handlerContext; | ||
@Mock | ||
private Channel channel; | ||
|
||
private ClientChannelInfo clientChannelInfo; | ||
private String clientId = UUID.randomUUID().toString(); | ||
private String group = "FooBarGroup"; | ||
private String topic = "FooBar"; | ||
|
||
@Before | ||
public void init() { | ||
when(handlerContext.channel()).thenReturn(channel); | ||
clientManageProcessor = new ClientManageProcessor(brokerController); | ||
clientChannelInfo = new ClientChannelInfo(channel, clientId, LanguageCode.JAVA, 100); | ||
brokerController.getProducerManager().registerProducer(group, clientChannelInfo); | ||
|
||
ConsumerData consumerData = createConsumerData(group, topic); | ||
brokerController.getConsumerManager().registerConsumer( | ||
consumerData.getGroupName(), | ||
clientChannelInfo, | ||
consumerData.getConsumeType(), | ||
consumerData.getMessageModel(), | ||
consumerData.getConsumeFromWhere(), | ||
consumerData.getSubscriptionDataSet(), | ||
false); | ||
} | ||
|
||
@Test | ||
public void processRequest_UnRegisterProducer() throws Exception { | ||
brokerController.getProducerManager().registerProducer(group, clientChannelInfo); | ||
HashMap<Channel, ClientChannelInfo> channelMap = brokerController.getProducerManager().getGroupChannelTable().get(group); | ||
assertThat(channelMap).isNotNull(); | ||
assertThat(channelMap.get(channel)).isEqualTo(clientChannelInfo); | ||
|
||
RemotingCommand request = createUnRegisterProducerCommand(); | ||
RemotingCommand response = clientManageProcessor.processRequest(handlerContext, request); | ||
assertThat(response).isNotNull(); | ||
assertThat(response.getCode()).isEqualTo(ResponseCode.SUCCESS); | ||
|
||
channelMap = brokerController.getProducerManager().getGroupChannelTable().get(group); | ||
assertThat(channelMap).isNull(); | ||
} | ||
|
||
@Test | ||
public void processRequest_UnRegisterConsumer() throws RemotingCommandException { | ||
ConsumerGroupInfo consumerGroupInfo = brokerController.getConsumerManager().getConsumerGroupInfo(group); | ||
assertThat(consumerGroupInfo).isNotNull(); | ||
|
||
RemotingCommand request = createUnRegisterConsumerCommand(); | ||
RemotingCommand response = clientManageProcessor.processRequest(handlerContext, request); | ||
assertThat(response).isNotNull(); | ||
assertThat(response.getCode()).isEqualTo(ResponseCode.SUCCESS); | ||
|
||
consumerGroupInfo = brokerController.getConsumerManager().getConsumerGroupInfo(group); | ||
assertThat(consumerGroupInfo).isNull(); | ||
} | ||
|
||
private RemotingCommand createUnRegisterProducerCommand() { | ||
UnregisterClientRequestHeader requestHeader = new UnregisterClientRequestHeader(); | ||
requestHeader.setClientID(clientId); | ||
requestHeader.setProducerGroup(group); | ||
RemotingCommand request = RemotingCommand.createRequestCommand(RequestCode.UNREGISTER_CLIENT, requestHeader); | ||
request.setLanguage(LanguageCode.JAVA); | ||
request.setVersion(100); | ||
request.makeCustomHeaderToNet(); | ||
return request; | ||
} | ||
|
||
private RemotingCommand createUnRegisterConsumerCommand() { | ||
UnregisterClientRequestHeader requestHeader = new UnregisterClientRequestHeader(); | ||
requestHeader.setClientID(clientId); | ||
requestHeader.setConsumerGroup(group); | ||
RemotingCommand request = RemotingCommand.createRequestCommand(RequestCode.UNREGISTER_CLIENT, requestHeader); | ||
request.setLanguage(LanguageCode.JAVA); | ||
request.setVersion(100); | ||
request.makeCustomHeaderToNet(); | ||
return request; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters