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 f87cba50027 Add YamlComputeNodeDataSwapperTest (#36968)
f87cba50027 is described below
commit f87cba500279f42d6daf1bfb01cf0105def9e70b
Author: Liang Zhang <[email protected]>
AuthorDate: Wed Oct 29 18:44:47 2025 +0800
Add YamlComputeNodeDataSwapperTest (#36968)
---
.../yaml/YamlComputeNodeDataSwapperTest.java | 50 ++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git
a/infra/common/src/test/java/org/apache/shardingsphere/infra/instance/yaml/YamlComputeNodeDataSwapperTest.java
b/infra/common/src/test/java/org/apache/shardingsphere/infra/instance/yaml/YamlComputeNodeDataSwapperTest.java
new file mode 100644
index 00000000000..05f061c6fb6
--- /dev/null
+++
b/infra/common/src/test/java/org/apache/shardingsphere/infra/instance/yaml/YamlComputeNodeDataSwapperTest.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.infra.instance.yaml;
+
+import org.apache.shardingsphere.infra.instance.ComputeNodeData;
+import org.junit.jupiter.api.Test;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+
+class YamlComputeNodeDataSwapperTest {
+
+ private final YamlComputeNodeDataSwapper swapper = new
YamlComputeNodeDataSwapper();
+
+ @Test
+ void assertSwapToYamlConfiguration() {
+ ComputeNodeData computeNodeData = new ComputeNodeData("foo_db",
"foo_attr", "1.0.0");
+ YamlComputeNodeData actual =
swapper.swapToYamlConfiguration(computeNodeData);
+ assertThat(actual.getDatabaseName(), is("foo_db"));
+ assertThat(actual.getAttribute(), is("foo_attr"));
+ assertThat(actual.getVersion(), is("1.0.0"));
+ }
+
+ @Test
+ void assertSwapToObject() {
+ YamlComputeNodeData yamlConfig = new YamlComputeNodeData();
+ yamlConfig.setDatabaseName("foo_db");
+ yamlConfig.setAttribute("foo_attr");
+ yamlConfig.setVersion("1.0.0");
+ ComputeNodeData actual = swapper.swapToObject(yamlConfig);
+ assertThat(actual.getDatabaseName(), is("foo_db"));
+ assertThat(actual.getAttribute(), is("foo_attr"));
+ assertThat(actual.getVersion(), is("1.0.0"));
+ }
+}