You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2022/05/16 16:13:23 UTC

[shardingsphere] branch master updated: Add test case for RuleBasedSchemaMetaDataBuilderFactory . (#17709)

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

zhangliang 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 8e59b0e3d20 Add test case for RuleBasedSchemaMetaDataBuilderFactory . (#17709)
8e59b0e3d20 is described below

commit 8e59b0e3d201dc0b6539bff269f7bdeeb6a83ca1
Author: VOPEN.XYZ <x_...@yeah.net>
AuthorDate: Tue May 17 00:13:17 2022 +0800

    Add test case for RuleBasedSchemaMetaDataBuilderFactory . (#17709)
---
 .../RuleBasedSchemaMetaDataBuilderFactoryTest.java | 47 ++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/metadata/schema/builder/RuleBasedSchemaMetaDataBuilderFactoryTest.java b/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/metadata/schema/builder/RuleBasedSchemaMetaDataBuilderFactoryTest.java
new file mode 100644
index 00000000000..17498a287c3
--- /dev/null
+++ b/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/metadata/schema/builder/RuleBasedSchemaMetaDataBuilderFactoryTest.java
@@ -0,0 +1,47 @@
+/*
+ * 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.infra.metadata.schema.builder;
+
+import org.apache.shardingsphere.infra.metadata.schema.builder.spi.RuleBasedSchemaMetaDataBuilder;
+import org.apache.shardingsphere.infra.metadata.schema.fixture.loader.CommonFixtureSchemaMetaDataBuilder;
+import org.apache.shardingsphere.infra.metadata.schema.fixture.rule.CommonFixtureRule;
+import org.apache.shardingsphere.infra.rule.ShardingSphereRule;
+import org.junit.Test;
+
+import java.util.Collections;
+import java.util.Map;
+
+import static org.hamcrest.CoreMatchers.instanceOf;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertThat;
+import static org.junit.Assert.assertTrue;
+
+public final class RuleBasedSchemaMetaDataBuilderFactoryTest {
+    
+    @SuppressWarnings("rawtypes")
+    @Test
+    public void assertGetInstances() {
+        CommonFixtureRule rule = new CommonFixtureRule();
+        Map<ShardingSphereRule, RuleBasedSchemaMetaDataBuilder> actual = RuleBasedSchemaMetaDataBuilderFactory.getInstances(Collections.singleton(rule));
+        assertNotNull(actual);
+        assertFalse(actual.isEmpty());
+        assertTrue(actual.containsKey(rule));
+        assertThat(actual.get(rule), instanceOf(CommonFixtureSchemaMetaDataBuilder.class));
+    }
+}