Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
小五666\n哈哈
Rocketmq
提交
f8d881ba
R
Rocketmq
项目概览
小五666\n哈哈
/
Rocketmq
与 Fork 源项目一致
Fork自
Apache RocketMQ / Rocketmq
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
Rocketmq
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
f8d881ba
编写于
1月 20, 2017
作者:
S
stevenschew
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ROCKETMQ-57] Add unit test for DefaultMQAdminExt
上级
0de84e20
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
130 addition
and
6 deletion
+130
-6
tools/src/test/java/org/apache/rocketmq/tools/admin/DefaultMQAdminExtTest.java
...rg/apache/rocketmq/tools/admin/DefaultMQAdminExtTest.java
+130
-6
未找到文件。
tools/src/test/java/org/apache/rocketmq/tools/admin/DefaultMQAdminExtTest.java
浏览文件 @
f8d881ba
...
...
@@ -22,15 +22,21 @@ import org.apache.rocketmq.client.exception.MQClientException;
import
org.apache.rocketmq.client.impl.MQClientAPIImpl
;
import
org.apache.rocketmq.client.impl.MQClientManager
;
import
org.apache.rocketmq.client.impl.factory.MQClientInstance
;
import
org.apache.rocketmq.common.admin.*
;
import
org.apache.rocketmq.common.consumer.ConsumeFromWhere
;
import
org.apache.rocketmq.common.message.MessageExt
;
import
org.apache.rocketmq.common.message.MessageQueue
;
import
org.apache.rocketmq.common.namesrv.NamesrvUtil
;
import
org.apache.rocketmq.common.protocol.body.*
;
import
org.apache.rocketmq.common.protocol.heartbeat.ConsumeType
;
import
org.apache.rocketmq.common.protocol.heartbeat.MessageModel
;
import
org.apache.rocketmq.common.protocol.heartbeat.SubscriptionData
;
import
org.apache.rocketmq.common.protocol.route.BrokerData
;
import
org.apache.rocketmq.common.protocol.route.QueueData
;
import
org.apache.rocketmq.common.protocol.route.TopicRouteData
;
import
org.apache.rocketmq.common.subscription.SubscriptionGroupConfig
;
import
org.apache.rocketmq.remoting.exception.RemotingConnectException
;
import
org.apache.rocketmq.remoting.exception.RemotingException
;
import
org.apache.rocketmq.remoting.exception.RemotingSendRequestException
;
import
org.apache.rocketmq.remoting.exception.RemotingTimeoutException
;
import
org.apache.rocketmq.remoting.exception.*
;
import
org.apache.rocketmq.tools.admin.api.MessageTrack
;
import
org.junit.After
;
import
org.junit.Before
;
import
org.junit.Test
;
...
...
@@ -43,8 +49,7 @@ import java.util.*;
import
java.util.concurrent.ConcurrentHashMap
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
import
static
org
.
mockito
.
ArgumentMatchers
.
anyLong
;
import
static
org
.
mockito
.
ArgumentMatchers
.
anyString
;
import
static
org
.
mockito
.
ArgumentMatchers
.*;
import
static
org
.
mockito
.
Mockito
.
mock
;
import
static
org
.
mockito
.
Mockito
.
when
;
...
...
@@ -93,6 +98,8 @@ public class DefaultMQAdminExtTest {
brokerData
.
setBrokerAddrs
(
brokerAddrs
);
brokerDatas
.
add
(
brokerData
);
topicRouteData
.
setBrokerDatas
(
brokerDatas
);
topicRouteData
.
setQueueDatas
(
new
ArrayList
<
QueueData
>());
topicRouteData
.
setFilterServerTable
(
new
HashMap
<
String
,
List
<
String
>>());
when
(
mQClientAPIImpl
.
getTopicRouteInfoFromNameServer
(
anyString
(),
anyLong
())).
thenReturn
(
topicRouteData
);
HashMap
<
String
,
String
>
result
=
new
HashMap
<>();
...
...
@@ -105,6 +112,7 @@ public class DefaultMQAdminExtTest {
brokerAddrTable
.
put
(
"default-broker"
,
brokerData
);
brokerAddrTable
.
put
(
"broker-test"
,
new
BrokerData
());
clusterInfo
.
setBrokerAddrTable
(
brokerAddrTable
);
clusterInfo
.
setClusterAddrTable
(
new
HashMap
<
String
,
Set
<
String
>>());
when
(
mQClientAPIImpl
.
getBrokerClusterInfo
(
anyLong
())).
thenReturn
(
clusterInfo
);
when
(
mQClientAPIImpl
.
cleanExpiredConsumeQueue
(
anyString
(),
anyLong
())).
thenReturn
(
true
);
...
...
@@ -140,6 +148,52 @@ public class DefaultMQAdminExtTest {
kv
.
put
(
"cluster-name"
,
"default-cluster"
);
kvTable
.
setTable
(
kv
);
when
(
mQClientAPIImpl
.
getKVListByNamespace
(
anyString
(),
anyLong
())).
thenReturn
(
kvTable
);
ConsumeStats
consumeStats
=
new
ConsumeStats
();
consumeStats
.
setConsumeTps
(
1234
);
MessageQueue
messageQueue
=
new
MessageQueue
();
OffsetWrapper
offsetWrapper
=
new
OffsetWrapper
();
HashMap
<
MessageQueue
,
OffsetWrapper
>
stats
=
new
HashMap
<>();
stats
.
put
(
messageQueue
,
offsetWrapper
);
consumeStats
.
setOffsetTable
(
stats
);
when
(
mQClientAPIImpl
.
getConsumeStats
(
anyString
(),
anyString
(),
anyString
(),
anyLong
())).
thenReturn
(
consumeStats
);
ConsumerConnection
consumerConnection
=
new
ConsumerConnection
();
consumerConnection
.
setConsumeType
(
ConsumeType
.
CONSUME_PASSIVELY
);
consumerConnection
.
setMessageModel
(
MessageModel
.
CLUSTERING
);
HashSet
<
Connection
>
connections
=
new
HashSet
<>();
connections
.
add
(
new
Connection
());
consumerConnection
.
setConnectionSet
(
connections
);
consumerConnection
.
setSubscriptionTable
(
new
ConcurrentHashMap
<
String
,
SubscriptionData
>());
consumerConnection
.
setConsumeFromWhere
(
ConsumeFromWhere
.
CONSUME_FROM_FIRST_OFFSET
);
when
(
mQClientAPIImpl
.
getConsumerConnectionList
(
anyString
(),
anyString
(),
anyLong
())).
thenReturn
(
consumerConnection
);
ProducerConnection
producerConnection
=
new
ProducerConnection
();
Connection
connection
=
new
Connection
();
connection
.
setClientAddr
(
"127.0.0.1:9898"
);
connection
.
setClientId
(
"PID_12345"
);
HashSet
<
Connection
>
connectionSet
=
new
HashSet
<
Connection
>();
connectionSet
.
add
(
connection
);
producerConnection
.
setConnectionSet
(
connectionSet
);
when
(
mQClientAPIImpl
.
getProducerConnectionList
(
anyString
(),
anyString
(),
anyLong
())).
thenReturn
(
producerConnection
);
when
(
mQClientAPIImpl
.
wipeWritePermOfBroker
(
anyString
(),
anyString
(),
anyLong
())).
thenReturn
(
6
);
TopicStatsTable
topicStatsTable
=
new
TopicStatsTable
();
topicStatsTable
.
setOffsetTable
(
new
HashMap
<
MessageQueue
,
TopicOffset
>());
Map
<
String
,
Map
<
MessageQueue
,
Long
>>
consumerStatus
=
new
HashMap
<>();
when
(
mQClientAPIImpl
.
invokeBrokerToGetConsumerStatus
(
anyString
(),
anyString
(),
anyString
(),
anyString
(),
anyLong
())).
thenReturn
(
consumerStatus
);
List
<
QueueTimeSpan
>
queueTimeSpanList
=
new
ArrayList
<>();
when
(
mQClientAPIImpl
.
queryConsumeTimeSpan
(
anyString
(),
anyString
(),
anyString
(),
anyLong
())).
thenReturn
(
queueTimeSpanList
);
ConsumerRunningInfo
consumerRunningInfo
=
new
ConsumerRunningInfo
();
consumerRunningInfo
.
setJstack
(
"test"
);
consumerRunningInfo
.
setMqTable
(
new
TreeMap
<
MessageQueue
,
ProcessQueueInfo
>());
consumerRunningInfo
.
setStatusTable
(
new
TreeMap
<
String
,
ConsumeStatus
>());
consumerRunningInfo
.
setSubscriptionSet
(
new
TreeSet
<
SubscriptionData
>());
when
(
mQClientAPIImpl
.
getConsumerRunningInfo
(
anyString
(),
anyString
(),
anyString
(),
anyBoolean
(),
anyLong
())).
thenReturn
(
consumerRunningInfo
);
}
@After
...
...
@@ -190,6 +244,31 @@ public class DefaultMQAdminExtTest {
assertThat
(
clusterAddress
.
get
(
"default-cluster"
).
size
()).
isEqualTo
(
2
);
}
@Test
public
void
testExamineConsumeStats
()
throws
InterruptedException
,
RemotingException
,
MQClientException
,
MQBrokerException
{
ConsumeStats
consumeStats
=
defaultMQAdminExtImpl
.
examineConsumeStats
(
"default-consumer-group"
,
"unit-test"
);
assertThat
(
consumeStats
.
getConsumeTps
()).
isEqualTo
(
1234
);
}
@Test
public
void
testExamineConsumerConnectionInfo
()
throws
InterruptedException
,
RemotingException
,
MQClientException
,
MQBrokerException
{
ConsumerConnection
consumerConnection
=
defaultMQAdminExtImpl
.
examineConsumerConnectionInfo
(
"default-consumer-group"
);
assertThat
(
consumerConnection
.
getConsumeType
()).
isEqualTo
(
ConsumeType
.
CONSUME_PASSIVELY
);
assertThat
(
consumerConnection
.
getMessageModel
()).
isEqualTo
(
MessageModel
.
CLUSTERING
);
}
@Test
public
void
testExamineProducerConnectionInfo
()
throws
InterruptedException
,
RemotingException
,
MQClientException
,
MQBrokerException
{
ProducerConnection
producerConnection
=
defaultMQAdminExtImpl
.
examineProducerConnectionInfo
(
"default-producer-group"
,
"unit-test"
);
assertThat
(
producerConnection
.
getConnectionSet
().
size
()).
isEqualTo
(
1
);
}
@Test
public
void
testWipeWritePermOfBroker
()
throws
InterruptedException
,
RemotingCommandException
,
RemotingSendRequestException
,
RemotingTimeoutException
,
MQClientException
,
RemotingConnectException
{
int
result
=
defaultMQAdminExtImpl
.
wipeWritePermOfBroker
(
"127.0.0.1:9876"
,
"default-broker"
);
assertThat
(
result
).
isEqualTo
(
6
);
}
@Test
public
void
testExamineTopicRouteInfo
()
throws
RemotingException
,
MQClientException
,
InterruptedException
{
TopicRouteData
topicRouteData
=
defaultMQAdminExtImpl
.
examineTopicRouteInfo
(
"UnitTest"
);
...
...
@@ -224,12 +303,57 @@ public class DefaultMQAdminExtTest {
assertThat
(
groupList
.
getGroupList
().
contains
(
"consumer-group-two"
)).
isTrue
();
}
@Test
public
void
testQueryConsumeTimeSpan
()
throws
InterruptedException
,
RemotingException
,
MQClientException
,
MQBrokerException
{
List
<
QueueTimeSpan
>
result
=
defaultMQAdminExtImpl
.
queryConsumeTimeSpan
(
"unit-test"
,
"default-broker-group"
);
assertThat
(
result
.
size
()).
isEqualTo
(
0
);
}
@Test
public
void
testCleanExpiredConsumerQueue
()
throws
InterruptedException
,
RemotingTimeoutException
,
MQClientException
,
RemotingSendRequestException
,
RemotingConnectException
{
boolean
result
=
defaultMQAdminExtImpl
.
cleanExpiredConsumerQueue
(
"default-cluster"
);
assertThat
(
result
).
isFalse
();
}
@Test
public
void
testCleanExpiredConsumerQueueByAddr
()
throws
InterruptedException
,
RemotingTimeoutException
,
MQClientException
,
RemotingSendRequestException
,
RemotingConnectException
{
boolean
clean
=
defaultMQAdminExtImpl
.
cleanExpiredConsumerQueueByAddr
(
"127.0.0.1:10911"
);
assertThat
(
clean
).
isTrue
();
}
@Test
public
void
testCleanUnusedTopic
()
throws
InterruptedException
,
RemotingTimeoutException
,
MQClientException
,
RemotingSendRequestException
,
RemotingConnectException
{
boolean
result
=
defaultMQAdminExtImpl
.
cleanUnusedTopic
(
"default-cluster"
);
assertThat
(
result
).
isFalse
();
}
@Test
public
void
testGetConsumerRunningInfo
()
throws
RemotingException
,
MQClientException
,
InterruptedException
{
ConsumerRunningInfo
consumerRunningInfo
=
defaultMQAdminExtImpl
.
getConsumerRunningInfo
(
"consumer-group"
,
"cid_123"
,
false
);
assertThat
(
consumerRunningInfo
.
getJstack
()).
isEqualTo
(
"test"
);
}
@Test
public
void
testMessageTrackDetail
()
throws
InterruptedException
,
RemotingException
,
MQClientException
,
MQBrokerException
{
MessageExt
messageExt
=
new
MessageExt
();
messageExt
.
setMsgId
(
"msgId"
);
messageExt
.
setTopic
(
"unit-test"
);
List
<
MessageTrack
>
messageTrackList
=
defaultMQAdminExtImpl
.
messageTrackDetail
(
messageExt
);
assertThat
(
messageTrackList
.
size
()).
isEqualTo
(
2
);
}
@Test
public
void
testGetConsumeStatus
()
throws
InterruptedException
,
RemotingException
,
MQClientException
,
MQBrokerException
{
Map
<
String
,
Map
<
MessageQueue
,
Long
>>
result
=
defaultMQAdminExtImpl
.
getConsumeStatus
(
"unit-test"
,
"default-broker-group"
,
"127.0.0.1:10911"
);
assertThat
(
result
.
size
()).
isEqualTo
(
0
);
}
@Test
public
void
testGetTopicClusterList
()
throws
InterruptedException
,
RemotingException
,
MQClientException
,
MQBrokerException
{
Set
<
String
>
result
=
defaultMQAdminExtImpl
.
getTopicClusterList
(
"unit-test"
);
assertThat
(
result
.
size
()).
isEqualTo
(
0
);
}
@Test
public
void
testGetClusterList
()
throws
InterruptedException
,
RemotingTimeoutException
,
MQClientException
,
RemotingSendRequestException
,
RemotingConnectException
{
Set
<
String
>
clusterlist
=
defaultMQAdminExtImpl
.
getClusterList
(
"UnitTest"
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录