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 c7288c3958e YamlShardingTableReferenceRuleConfigurationConverterTest
Unit Tests (#30929)
c7288c3958e is described below
commit c7288c3958eb93d07f5c9b27c9e7f414516d4361
Author: shubham-j-sde <[email protected]>
AuthorDate: Sat Apr 20 18:19:47 2024 +0530
YamlShardingTableReferenceRuleConfigurationConverterTest Unit Tests (#30929)
Co-authored-by: Shubham Jaiswal <[email protected]>
---
...bleReferenceRuleConfigurationConverterTest.java | 47 ++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git
a/features/sharding/core/src/test/java/org/apache/shardingsphere/sharding/yaml/swapper/rule/YamlShardingTableReferenceRuleConfigurationConverterTest.java
b/features/sharding/core/src/test/java/org/apache/shardingsphere/sharding/yaml/swapper/rule/YamlShardingTableReferenceRuleConfigurationConverterTest.java
new file mode 100644
index 00000000000..2031ee74779
--- /dev/null
+++
b/features/sharding/core/src/test/java/org/apache/shardingsphere/sharding/yaml/swapper/rule/YamlShardingTableReferenceRuleConfigurationConverterTest.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.sharding.yaml.swapper.rule;
+
+import
org.apache.shardingsphere.sharding.api.config.rule.ShardingTableReferenceRuleConfiguration;
+import org.junit.jupiter.api.Test;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+
+class YamlShardingTableReferenceRuleConfigurationConverterTest {
+
+ @Test
+ void assertConvertToYamlString() {
+ ShardingTableReferenceRuleConfiguration data = new
ShardingTableReferenceRuleConfiguration("foo", "LOGIC_TABLE,SUB_LOGIC_TABLE");
+ String actual =
YamlShardingTableReferenceRuleConfigurationConverter.convertToYamlString(data);
+ assertThat(actual, is("foo:LOGIC_TABLE,SUB_LOGIC_TABLE"));
+ }
+
+ @Test
+ void assertConvertToObjectForYamlConfigurationWithName() {
+ ShardingTableReferenceRuleConfiguration actual =
YamlShardingTableReferenceRuleConfigurationConverter.convertToObject("foo:LOGIC_TABLE,SUB_LOGIC_TABLE");
+ assertThat(actual.getName(), is("foo"));
+ assertThat(actual.getReference(), is("LOGIC_TABLE,SUB_LOGIC_TABLE"));
+ }
+
+ @Test
+ void assertConvertToObjectForYamlConfigurationWithoutName() {
+ ShardingTableReferenceRuleConfiguration actual =
YamlShardingTableReferenceRuleConfigurationConverter.convertToObject("LOGIC_TABLE,SUB_LOGIC_TABLE");
+ assertThat(actual.getReference(), is("LOGIC_TABLE,SUB_LOGIC_TABLE"));
+ }
+}