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 d1eb64d Add test 12890 (#12911)
d1eb64d is described below
commit d1eb64d40dfd8a4820119c5a67f975de6f0a7dd6
Author: Gabriel Cunha <[email protected]>
AuthorDate: Fri Oct 8 05:21:51 2021 -0400
Add test 12890 (#12911)
* Addint test to ShardingSphereRuleMetaData
* Removing wrong change
* Adding license and editing names
* Removing static import
* Fixing optional
* Removing useless class
* Removing class
* Applying static import changes
* Fixing checkstyle
---
.../metadata/rule/ShardingSphereRuleFixture.java | 27 +++++++++
.../rule/ShardingSphereRuleMetaDataTest.java | 65 ++++++++++++++++++++++
2 files changed, 92 insertions(+)
diff --git
a/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/metadata/rule/ShardingSphereRuleFixture.java
b/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/metadata/rule/ShardingSphereRuleFixture.java
new file mode 100644
index 0000000..13ec279
--- /dev/null
+++
b/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/metadata/rule/ShardingSphereRuleFixture.java
@@ -0,0 +1,27 @@
+/*
+ * 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.rule;
+
+import org.apache.shardingsphere.infra.rule.ShardingSphereRule;
+
+public class ShardingSphereRuleFixture implements ShardingSphereRule {
+ @Override
+ public String getType() {
+ return ShardingSphereRuleFixture.class.getSimpleName();
+ }
+}
diff --git
a/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/metadata/rule/ShardingSphereRuleMetaDataTest.java
b/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/metadata/rule/ShardingSphereRuleMetaDataTest.java
new file mode 100644
index 0000000..e392e19
--- /dev/null
+++
b/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/metadata/rule/ShardingSphereRuleMetaDataTest.java
@@ -0,0 +1,65 @@
+/*
+ * 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.rule;
+
+import org.apache.shardingsphere.infra.config.RuleConfiguration;
+import org.apache.shardingsphere.infra.rule.ShardingSphereRule;
+import org.junit.Before;
+import org.junit.Test;
+
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.Optional;
+
+import static org.hamcrest.CoreMatchers.equalTo;
+import static org.junit.Assert.assertThat;
+import static org.junit.Assert.assertTrue;
+
+public final class ShardingSphereRuleMetaDataTest {
+
+ private Collection<RuleConfiguration> configurations;
+
+ private Collection<ShardingSphereRule> rules;
+
+ private ShardingSphereRuleMetaData shardingSphereRuleMetaData;
+
+ @Before
+ public void init() {
+ rules = Arrays.asList(new ShardingSphereRuleFixture());
+ shardingSphereRuleMetaData = new
ShardingSphereRuleMetaData(configurations, rules);
+ }
+
+ @Test
+ public void assertFilterRulesReturnOneItem() {
+ Collection<ShardingSphereRuleFixture> clazzList =
shardingSphereRuleMetaData.findRules(ShardingSphereRuleFixture.class);
+ assertThat(1, equalTo(clazzList.size()));
+ }
+
+ @Test
+ public void assertFindSingleRuleReturnsIsPresent() {
+ Optional<ShardingSphereRuleFixture> clazzOptional =
shardingSphereRuleMetaData.findSingleRule(ShardingSphereRuleFixture.class);
+ assertTrue(clazzOptional.isPresent());
+ }
+
+ @Test
+ public void assertFindSingleRuleHasValue() {
+ Optional<ShardingSphereRuleFixture> clazzOptional =
shardingSphereRuleMetaData.findSingleRule(ShardingSphereRuleFixture.class);
+ assertTrue(clazzOptional.isPresent());
+ assertThat("ShardingSphereRuleFixture",
equalTo(clazzOptional.get().getType()));
+ }
+}