You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by di...@apache.org on 2019/02/27 11:52:27 UTC

[rocketmq] branch develop updated: [RIP-10] Add test case for QueryCorrectionOffsetBody & ResetOffsetBody (#898)

This is an automated email from the ASF dual-hosted git repository.

dinglei pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git


The following commit(s) were added to refs/heads/develop by this push:
     new 3b5a170  [RIP-10] Add test case for QueryCorrectionOffsetBody & ResetOffsetBody (#898)
3b5a170 is described below

commit 3b5a17048eeeb2cc7f5e3063790fb2784614332c
Author: Yuanqing Luo <ro...@gmail.com>
AuthorDate: Wed Feb 27 19:52:22 2019 +0800

    [RIP-10] Add test case for QueryCorrectionOffsetBody & ResetOffsetBody (#898)
    
    [RIP-10] Add test case for QueryCorrectionOffsetBody & ResetOffsetBody
---
 .../body/QueryCorrectionOffsetBodyTest.java        | 43 ++++++++++++++++++++
 .../common/protocol/body/ResetOffsetBodyTest.java  | 46 ++++++++++++++++++++++
 2 files changed, 89 insertions(+)

diff --git a/common/src/test/java/org/apache/rocketmq/common/protocol/body/QueryCorrectionOffsetBodyTest.java b/common/src/test/java/org/apache/rocketmq/common/protocol/body/QueryCorrectionOffsetBodyTest.java
new file mode 100644
index 0000000..d0c4b50
--- /dev/null
+++ b/common/src/test/java/org/apache/rocketmq/common/protocol/body/QueryCorrectionOffsetBodyTest.java
@@ -0,0 +1,43 @@
+/*
+ * 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.body;
+
+import org.apache.rocketmq.remoting.protocol.RemotingSerializable;
+import org.junit.Test;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class QueryCorrectionOffsetBodyTest {
+
+    @Test
+    public void testFromJson() throws Exception {
+        QueryCorrectionOffsetBody qcob = new QueryCorrectionOffsetBody();
+        Map<Integer, Long> offsetMap = new HashMap<Integer, Long>();
+        offsetMap.put(1, 100L);
+        offsetMap.put(2, 200L);
+        qcob.setCorrectionOffsets(offsetMap);
+        String json = RemotingSerializable.toJson(qcob, true);
+        QueryCorrectionOffsetBody fromJson = RemotingSerializable.fromJson(json, QueryCorrectionOffsetBody.class);
+        assertThat(fromJson.getCorrectionOffsets().get(1)).isEqualTo(100L);
+        assertThat(fromJson.getCorrectionOffsets().get(2)).isEqualTo(200L);
+        assertThat(fromJson.getCorrectionOffsets().size()).isEqualTo(2);
+    }
+}
diff --git a/common/src/test/java/org/apache/rocketmq/common/protocol/body/ResetOffsetBodyTest.java b/common/src/test/java/org/apache/rocketmq/common/protocol/body/ResetOffsetBodyTest.java
new file mode 100644
index 0000000..f9559a9
--- /dev/null
+++ b/common/src/test/java/org/apache/rocketmq/common/protocol/body/ResetOffsetBodyTest.java
@@ -0,0 +1,46 @@
+/*
+ * 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.body;
+
+import org.apache.rocketmq.common.message.MessageQueue;
+import org.apache.rocketmq.remoting.protocol.RemotingSerializable;
+import org.junit.Test;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class ResetOffsetBodyTest {
+
+    @Test
+    public void testFromJson() throws Exception {
+        ResetOffsetBody rob = new ResetOffsetBody();
+        Map<MessageQueue, Long> offsetMap = new HashMap<MessageQueue, Long>();
+        MessageQueue queue = new MessageQueue();
+        queue.setQueueId(1);
+        queue.setBrokerName("brokerName");
+        queue.setTopic("topic");
+        offsetMap.put(queue, 100L);
+        rob.setOffsetTable(offsetMap);
+        String json = RemotingSerializable.toJson(rob, true);
+        ResetOffsetBody fromJson = RemotingSerializable.fromJson(json, ResetOffsetBody.class);
+        assertThat(fromJson.getOffsetTable().get(queue)).isEqualTo(100L);
+        assertThat(fromJson.getOffsetTable().size()).isEqualTo(1);
+    }
+}