This is an automated email from the ASF dual-hosted git repository. duanzhengqiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push: new 46b99405860 Add test cases on InventoryChannelCreator and IncrementalChannelCreator (#33313) 46b99405860 is described below commit 46b9940586029edb7f80055cfac9789e4e2cd151 Author: Liang Zhang <zhangli...@apache.org> AuthorDate: Sat Oct 19 10:49:18 2024 +0800 Add test cases on InventoryChannelCreator and IncrementalChannelCreator (#33313) --- .../channel/IncrementalChannelCreatorTest.java | 37 ++++++++++++++++++++ .../core/channel/InventoryChannelCreatorTest.java | 39 ++++++++++++++++++++++ 2 files changed, 76 insertions(+) diff --git a/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/channel/IncrementalChannelCreatorTest.java b/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/channel/IncrementalChannelCreatorTest.java new file mode 100644 index 00000000000..67418aee57d --- /dev/null +++ b/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/channel/IncrementalChannelCreatorTest.java @@ -0,0 +1,37 @@ +/* + * 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.shardingsphere.data.pipeline.core.channel; + +import org.apache.shardingsphere.data.pipeline.core.channel.memory.MemoryPipelineChannel; +import org.apache.shardingsphere.data.pipeline.core.task.progress.IncrementalTaskProgress; +import org.apache.shardingsphere.infra.algorithm.core.config.AlgorithmConfiguration; +import org.junit.jupiter.api.Test; + +import java.util.Properties; + +import static org.hamcrest.CoreMatchers.instanceOf; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.mockito.Mockito.mock; + +class IncrementalChannelCreatorTest { + + @Test + void assertCreate() { + assertThat(IncrementalChannelCreator.create(new AlgorithmConfiguration("MEMORY", new Properties()), mock(IncrementalTaskProgress.class)), instanceOf(MemoryPipelineChannel.class)); + } +} diff --git a/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/channel/InventoryChannelCreatorTest.java b/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/channel/InventoryChannelCreatorTest.java new file mode 100644 index 00000000000..89eabe3604c --- /dev/null +++ b/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/channel/InventoryChannelCreatorTest.java @@ -0,0 +1,39 @@ +/* + * 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.shardingsphere.data.pipeline.core.channel; + +import org.apache.shardingsphere.data.pipeline.core.channel.memory.MemoryPipelineChannel; +import org.apache.shardingsphere.data.pipeline.core.ingest.position.IngestPosition; +import org.apache.shardingsphere.infra.algorithm.core.config.AlgorithmConfiguration; +import org.junit.jupiter.api.Test; + +import java.util.Properties; +import java.util.concurrent.atomic.AtomicReference; + +import static org.hamcrest.CoreMatchers.instanceOf; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.mockito.Mockito.mock; + +class InventoryChannelCreatorTest { + + @Test + void assertCreate() { + assertThat(InventoryChannelCreator.create(new AlgorithmConfiguration("MEMORY", new Properties()), 1, new AtomicReference<>(mock(IngestPosition.class))), + instanceOf(MemoryPipelineChannel.class)); + } +}