-
Notifications
You must be signed in to change notification settings - Fork 11.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ISSUE #8500] Add more test coverage for RocksDBLmqConsumerOffsetMana…
…ger (#8502) * ```新增RocksDBLmqConsumerOffsetManagerTest.java测试用例``` * ```新增RocksDBLmqConsumerOffsetManagerTest.java测试用例``` * ```新增RocksDBLmqConsumerOffsetManagerTest.java测试用例```
- Loading branch information
Showing
1 changed file
with
134 additions
and
0 deletions.
There are no files selected for viewing
134 changes: 134 additions & 0 deletions
134
.../src/test/java/org/apache/rocketmq/broker/offset/RocksDBLmqConsumerOffsetManagerTest.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,134 @@ | ||
/* | ||
* 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.offset; | ||
|
||
import org.apache.rocketmq.broker.BrokerController; | ||
import org.apache.rocketmq.common.BrokerConfig; | ||
import org.apache.rocketmq.common.MixAll; | ||
import org.apache.rocketmq.store.config.MessageStoreConfig; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.mockito.Mockito; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.concurrent.ConcurrentHashMap; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNotNull; | ||
import static org.junit.Assert.assertTrue; | ||
import static org.mockito.Mockito.when; | ||
|
||
public class RocksDBLmqConsumerOffsetManagerTest { | ||
private static final String LMQ_GROUP = MixAll.LMQ_PREFIX + "FooBarGroup"; | ||
private static final String NON_LMQ_GROUP = "nonLmqGroup"; | ||
private static final String TOPIC = "FooBarTopic"; | ||
private static final int QUEUE_ID = 0; | ||
private static final long OFFSET = 12345; | ||
|
||
private BrokerController brokerController; | ||
|
||
private RocksDBLmqConsumerOffsetManager offsetManager; | ||
|
||
@Before | ||
public void setUp() { | ||
brokerController = Mockito.mock(BrokerController.class); | ||
when(brokerController.getMessageStoreConfig()).thenReturn(Mockito.mock(MessageStoreConfig.class)); | ||
when(brokerController.getBrokerConfig()).thenReturn(Mockito.mock(BrokerConfig.class)); | ||
offsetManager = new RocksDBLmqConsumerOffsetManager(brokerController); | ||
} | ||
|
||
@Test | ||
public void testQueryOffsetForLmq() { | ||
// Setup | ||
offsetManager.getLmqOffsetTable().put(getKey(), OFFSET); | ||
// Execute | ||
long actualOffset = offsetManager.queryOffset(LMQ_GROUP, TOPIC, QUEUE_ID); | ||
// Verify | ||
assertEquals("Offset should match the expected value.", OFFSET, actualOffset); | ||
} | ||
|
||
@Test | ||
public void testQueryOffsetForNonLmq() { | ||
long actualOffset = offsetManager.queryOffset(NON_LMQ_GROUP, TOPIC, QUEUE_ID); | ||
// Verify | ||
assertEquals("Offset should not be null.", -1, actualOffset); | ||
} | ||
|
||
|
||
@Test | ||
public void testQueryOffsetForLmqGroupWithExistingOffset() { | ||
offsetManager.getLmqOffsetTable().put(getKey(), OFFSET); | ||
|
||
// Act | ||
Map<Integer, Long> actualOffsets = offsetManager.queryOffset(LMQ_GROUP, TOPIC); | ||
|
||
// Assert | ||
assertNotNull(actualOffsets); | ||
assertEquals(1, actualOffsets.size()); | ||
assertEquals(OFFSET, (long) actualOffsets.get(0)); | ||
} | ||
|
||
@Test | ||
public void testQueryOffsetForLmqGroupWithoutExistingOffset() { | ||
// Act | ||
Map<Integer, Long> actualOffsets = offsetManager.queryOffset(LMQ_GROUP, "nonExistingTopic"); | ||
|
||
// Assert | ||
assertNotNull(actualOffsets); | ||
assertTrue("The map should be empty for non-existing offsets", actualOffsets.isEmpty()); | ||
} | ||
|
||
@Test | ||
public void testQueryOffsetForNonLmqGroup() { | ||
when(brokerController.getBrokerConfig().getConsumerOffsetUpdateVersionStep()).thenReturn(1L); | ||
// Arrange | ||
Map<Integer, Long> mockOffsets = new HashMap<>(); | ||
mockOffsets.put(QUEUE_ID, OFFSET); | ||
|
||
offsetManager.commitOffset("clientHost", NON_LMQ_GROUP, TOPIC, QUEUE_ID, OFFSET); | ||
|
||
// Act | ||
Map<Integer, Long> actualOffsets = offsetManager.queryOffset(NON_LMQ_GROUP, TOPIC); | ||
|
||
// Assert | ||
assertNotNull(actualOffsets); | ||
assertEquals("Offsets should match the mocked return value for non-LMQ groups", mockOffsets, actualOffsets); | ||
} | ||
|
||
@Test | ||
public void testCommitOffsetForLmq() { | ||
// Execute | ||
offsetManager.commitOffset("clientHost", LMQ_GROUP, TOPIC, QUEUE_ID, OFFSET); | ||
// Verify | ||
Long expectedOffset = offsetManager.getLmqOffsetTable().get(getKey()); | ||
assertEquals("Offset should be updated correctly.", OFFSET, expectedOffset.longValue()); | ||
} | ||
|
||
@Test | ||
public void testEncode() { | ||
offsetManager.setLmqOffsetTable(new ConcurrentHashMap<>(512)); | ||
offsetManager.getLmqOffsetTable().put(getKey(), OFFSET); | ||
String encodedData = offsetManager.encode(); | ||
assertTrue(encodedData.contains(String.valueOf(OFFSET))); | ||
} | ||
|
||
private String getKey() { | ||
return TOPIC + "@" + LMQ_GROUP; | ||
} | ||
} |