-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Li Zhanhui <[email protected]>
- Loading branch information
Showing
2 changed files
with
188 additions
and
0 deletions.
There are no files selected for viewing
105 changes: 105 additions & 0 deletions
105
...ler/src/test/java/com/automq/rocketmq/controller/server/store/impl/StreamManagerTest.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,105 @@ | ||
/* | ||
* 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 com.automq.rocketmq.controller.server.store.impl; | ||
|
||
import apache.rocketmq.controller.v1.S3ObjectState; | ||
import apache.rocketmq.controller.v1.StreamRole; | ||
import apache.rocketmq.controller.v1.StreamState; | ||
import com.automq.rocketmq.common.api.DataStore; | ||
import com.automq.rocketmq.controller.ControllerClient; | ||
import com.automq.rocketmq.controller.MetadataStore; | ||
import com.automq.rocketmq.controller.server.store.DefaultMetadataStore; | ||
import com.automq.rocketmq.controller.store.DatabaseTestBase; | ||
import com.automq.rocketmq.metadata.dao.S3Object; | ||
import com.automq.rocketmq.metadata.dao.S3StreamObject; | ||
import com.automq.rocketmq.metadata.dao.Stream; | ||
import com.automq.rocketmq.metadata.mapper.S3ObjectMapper; | ||
import com.automq.rocketmq.metadata.mapper.S3StreamObjectMapper; | ||
import com.automq.rocketmq.metadata.mapper.StreamMapper; | ||
import java.io.IOException; | ||
import java.util.Date; | ||
import java.util.concurrent.CompletableFuture; | ||
import org.apache.ibatis.session.SqlSession; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
import org.mockito.ArgumentMatchers; | ||
import org.mockito.Mockito; | ||
|
||
class StreamManagerTest extends DatabaseTestBase { | ||
|
||
@Test | ||
public void testDeleteStream() throws IOException { | ||
|
||
long streamId; | ||
try (SqlSession session = getSessionFactory().openSession()) { | ||
Stream stream = new Stream(); | ||
stream.setState(StreamState.UNINITIALIZED); | ||
stream.setStreamRole(StreamRole.STREAM_ROLE_DATA); | ||
stream.setEpoch(-1L); | ||
stream.setTopicId(1L); | ||
stream.setQueueId(2); | ||
stream.setRangeId(3); | ||
stream.setStartOffset(100L); | ||
stream.setSrcNodeId(5); | ||
stream.setDstNodeId(6); | ||
StreamMapper mapper = session.getMapper(StreamMapper.class); | ||
mapper.create(stream); | ||
streamId = stream.getId(); | ||
|
||
S3StreamObjectMapper streamObjectMapper = session.getMapper(S3StreamObjectMapper.class); | ||
S3StreamObject streamObject = new S3StreamObject(); | ||
streamObject.setObjectId(1L); | ||
streamObject.setStreamId(streamId); | ||
streamObject.setStartOffset(2L); | ||
streamObject.setEndOffset(4L); | ||
streamObject.setCreatedTimestamp(new Date()); | ||
streamObject.setBaseDataTimestamp(new Date()); | ||
streamObject.setCommittedTimestamp(new Date()); | ||
streamObject.setObjectSize(5L); | ||
streamObjectMapper.create(streamObject); | ||
|
||
S3ObjectMapper s3ObjectMapper = session.getMapper(S3ObjectMapper.class); | ||
S3Object s3Object = new S3Object(); | ||
s3Object.setId(1L); | ||
s3Object.setStreamId(streamId); | ||
s3Object.setObjectSize(5L); | ||
s3Object.setState(S3ObjectState.BOS_COMMITTED); | ||
s3Object.setPreparedTimestamp(new Date()); | ||
s3Object.setCommittedTimestamp(new Date()); | ||
s3Object.setExpiredTimestamp(new Date()); | ||
s3ObjectMapper.prepare(s3Object); | ||
s3ObjectMapper.commit(s3Object); | ||
session.commit(); | ||
} | ||
|
||
ControllerClient controllerClient = Mockito.mock(ControllerClient.class); | ||
DataStore dataStore = Mockito.mock(DataStore.class); | ||
Mockito.when(dataStore.batchDeleteS3Objects(ArgumentMatchers.anyList())).thenAnswer(r -> CompletableFuture.completedFuture(r.getArgument(0))); | ||
try (MetadataStore store = new DefaultMetadataStore(controllerClient, getSessionFactory(), config)) { | ||
store.setDataStore(dataStore); | ||
StreamManager streamManager = new StreamManager(store); | ||
streamManager.deleteStream(streamId); | ||
streamManager.deleteStream(streamId); | ||
|
||
try (SqlSession session = getSessionFactory().openSession()) { | ||
S3StreamObjectMapper streamObjectMapper = session.getMapper(S3StreamObjectMapper.class); | ||
Assertions.assertTrue(streamObjectMapper.listByStreamId(streamId).isEmpty()); | ||
} | ||
} | ||
} | ||
} |
83 changes: 83 additions & 0 deletions
83
...ller/src/test/java/com/automq/rocketmq/controller/server/store/impl/TopicManagerTest.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,83 @@ | ||
/* | ||
* 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 com.automq.rocketmq.controller.server.store.impl; | ||
|
||
import apache.rocketmq.controller.v1.AssignmentStatus; | ||
import apache.rocketmq.controller.v1.CreateTopicRequest; | ||
import apache.rocketmq.controller.v1.UpdateTopicRequest; | ||
import com.automq.rocketmq.common.exception.ControllerException; | ||
import com.automq.rocketmq.controller.ControllerClient; | ||
import com.automq.rocketmq.controller.MetadataStore; | ||
import com.automq.rocketmq.metadata.dao.QueueAssignment; | ||
import java.util.List; | ||
import java.util.Optional; | ||
import java.util.concurrent.CompletableFuture; | ||
import java.util.concurrent.CompletionException; | ||
import org.junit.jupiter.api.Assertions; | ||
import org.junit.jupiter.api.Test; | ||
import org.mockito.ArgumentMatchers; | ||
import org.mockito.Mockito; | ||
|
||
class TopicManagerTest { | ||
|
||
@Test | ||
public void testCreateTopic() throws ControllerException { | ||
MetadataStore metadataStore = Mockito.mock(MetadataStore.class); | ||
Mockito.when(metadataStore.leaderAddress()).thenReturn("localhost:1234"); | ||
ControllerClient controllerClient = Mockito.mock(ControllerClient.class); | ||
Mockito.when(controllerClient.createTopic(ArgumentMatchers.anyString(), ArgumentMatchers.any())).thenReturn( | ||
CompletableFuture.failedFuture(new CompletionException(new RuntimeException())) | ||
); | ||
Mockito.when(metadataStore.controllerClient()).thenReturn(controllerClient); | ||
Mockito.when(metadataStore.isLeader()).thenReturn(false); | ||
TopicManager topicManager = new TopicManager(metadataStore); | ||
topicManager.createTopic(CreateTopicRequest.newBuilder().build()); | ||
} | ||
|
||
@Test | ||
public void testUpdateTopic_RemoteFailure() throws ControllerException { | ||
MetadataStore metadataStore = Mockito.mock(MetadataStore.class); | ||
Mockito.when(metadataStore.leaderAddress()).thenReturn("localhost:1234"); | ||
ControllerClient controllerClient = Mockito.mock(ControllerClient.class); | ||
Mockito.when(controllerClient.updateTopic(ArgumentMatchers.anyString(), ArgumentMatchers.any())).thenReturn( | ||
CompletableFuture.failedFuture(new CompletionException(new RuntimeException())) | ||
); | ||
Mockito.when(metadataStore.controllerClient()).thenReturn(controllerClient); | ||
Mockito.when(metadataStore.isLeader()).thenReturn(false); | ||
TopicManager topicManager = new TopicManager(metadataStore); | ||
topicManager.updateTopic(UpdateTopicRequest.newBuilder().build()); | ||
} | ||
|
||
@Test | ||
public void testOwnerNode() { | ||
MetadataStore metadataStore = Mockito.mock(MetadataStore.class); | ||
TopicManager topicManager = new TopicManager(metadataStore); | ||
Optional<Integer> opt = topicManager.ownerNode(1L, 2); | ||
Assertions.assertTrue(opt.isEmpty()); | ||
QueueAssignment assignment = new QueueAssignment(); | ||
assignment.setDstNodeId(1); | ||
assignment.setTopicId(2); | ||
assignment.setQueueId(3); | ||
assignment.setStatus(AssignmentStatus.ASSIGNMENT_STATUS_ASSIGNED); | ||
topicManager.assignmentCache.apply(List.of(assignment)); | ||
opt = topicManager.ownerNode(2, 3); | ||
Assertions.assertTrue(opt.isPresent()); | ||
Assertions.assertEquals(1, opt.get()); | ||
} | ||
|
||
} |