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 4ecf220fff1 Add test cases on IncrementalDumperCreator (#33369)
4ecf220fff1 is described below

commit 4ecf220fff1ca7fff0f57499c97849e51a585c82
Author: Liang Zhang <[email protected]>
AuthorDate: Wed Oct 23 17:02:50 2024 +0800

    Add test cases on IncrementalDumperCreator (#33369)
    
    * Add test cases on IncrementalDumperCreator
    
    * Add test cases on IncrementalDumperCreator
---
 .../DialectIncrementalDumperCreatorFixture.java    | 33 ++++++++++++++
 .../incremental/IncrementalDumperCreatorTest.java  | 50 ++++++++++++++++++++++
 ...per.incremental.DialectIncrementalDumperCreator | 18 ++++++++
 3 files changed, 101 insertions(+)

diff --git 
a/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/ingest/dumper/incremental/DialectIncrementalDumperCreatorFixture.java
 
b/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/ingest/dumper/incremental/DialectIncrementalDumperCreatorFixture.java
new file mode 100644
index 00000000000..54d19997cc8
--- /dev/null
+++ 
b/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/ingest/dumper/incremental/DialectIncrementalDumperCreatorFixture.java
@@ -0,0 +1,33 @@
+/*
+ * 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.ingest.dumper.incremental;
+
+import static org.mockito.Mockito.mock;
+
+public final class DialectIncrementalDumperCreatorFixture implements 
DialectIncrementalDumperCreator {
+    
+    @Override
+    public IncrementalDumper createIncrementalDumper(final 
CreateIncrementalDumperParameter param) {
+        return mock(IncrementalDumper.class);
+    }
+    
+    @Override
+    public String getDatabaseType() {
+        return "FIXTURE";
+    }
+}
diff --git 
a/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/ingest/dumper/incremental/IncrementalDumperCreatorTest.java
 
b/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/ingest/dumper/incremental/IncrementalDumperCreatorTest.java
new file mode 100644
index 00000000000..11f759cd28c
--- /dev/null
+++ 
b/kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/ingest/dumper/incremental/IncrementalDumperCreatorTest.java
@@ -0,0 +1,50 @@
+/*
+ * 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.ingest.dumper.incremental;
+
+import 
org.apache.shardingsphere.data.pipeline.api.type.ShardingSpherePipelineDataSourceConfiguration;
+import 
org.apache.shardingsphere.data.pipeline.api.type.StandardPipelineDataSourceConfiguration;
+import org.apache.shardingsphere.infra.database.core.type.DatabaseType;
+import 
org.apache.shardingsphere.infra.exception.generic.UnsupportedSQLOperationException;
+import org.apache.shardingsphere.infra.spi.type.typed.TypedSPILoader;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
+import static org.junit.jupiter.api.Assertions.assertThrows;
+import static org.mockito.Mockito.RETURNS_DEEP_STUBS;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+class IncrementalDumperCreatorTest {
+    
+    @Test
+    void assertCreateWithStandardPipelineDataSourceConfiguration() {
+        StandardPipelineDataSourceConfiguration dataSourceConfig = 
mock(StandardPipelineDataSourceConfiguration.class);
+        
when(dataSourceConfig.getDatabaseType()).thenReturn(TypedSPILoader.getService(DatabaseType.class,
 "FIXTURE"));
+        CreateIncrementalDumperParameter param = 
mock(CreateIncrementalDumperParameter.class, RETURNS_DEEP_STUBS);
+        
when(param.getContext().getCommonContext().getDataSourceConfig()).thenReturn(dataSourceConfig);
+        assertDoesNotThrow(() -> IncrementalDumperCreator.create(param));
+    }
+    
+    @Test
+    void assertCreateWithShardingSpherePipelineDataSourceConfiguration() {
+        CreateIncrementalDumperParameter param = 
mock(CreateIncrementalDumperParameter.class, RETURNS_DEEP_STUBS);
+        
when(param.getContext().getCommonContext().getDataSourceConfig()).thenReturn(mock(ShardingSpherePipelineDataSourceConfiguration.class));
+        assertThrows(UnsupportedSQLOperationException.class, () -> 
IncrementalDumperCreator.create(param));
+    }
+}
diff --git 
a/kernel/data-pipeline/core/src/test/resources/META-INF/services/org.apache.shardingsphere.data.pipeline.core.ingest.dumper.incremental.DialectIncrementalDumperCreator
 
b/kernel/data-pipeline/core/src/test/resources/META-INF/services/org.apache.shardingsphere.data.pipeline.core.ingest.dumper.incremental.DialectIncrementalDumperCreator
new file mode 100644
index 00000000000..1476ca25b82
--- /dev/null
+++ 
b/kernel/data-pipeline/core/src/test/resources/META-INF/services/org.apache.shardingsphere.data.pipeline.core.ingest.dumper.incremental.DialectIncrementalDumperCreator
@@ -0,0 +1,18 @@
+#
+# 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.
+#
+
+org.apache.shardingsphere.data.pipeline.core.ingest.dumper.incremental.DialectIncrementalDumperCreatorFixture

Reply via email to