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 88f9052bd87 Add test cases for StandaloneContextManager (#32834)
88f9052bd87 is described below
commit 88f9052bd877383d934ba3681c6a73e8a65e21d3
Author: Liang Zhang <[email protected]>
AuthorDate: Thu Sep 12 13:38:32 2024 +0800
Add test cases for StandaloneContextManager (#32834)
---
.../StandaloneContextManagerBuilderTest.java | 66 ++++++++++++++++++++++
1 file changed, 66 insertions(+)
diff --git
a/mode/type/standalone/core/src/test/java/org/apache/shardingsphere/mode/manager/standalone/StandaloneContextManagerBuilderTest.java
b/mode/type/standalone/core/src/test/java/org/apache/shardingsphere/mode/manager/standalone/StandaloneContextManagerBuilderTest.java
new file mode 100644
index 00000000000..ffbc159fc85
--- /dev/null
+++
b/mode/type/standalone/core/src/test/java/org/apache/shardingsphere/mode/manager/standalone/StandaloneContextManagerBuilderTest.java
@@ -0,0 +1,66 @@
+/*
+ * 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.mode.manager.standalone;
+
+import org.apache.shardingsphere.infra.config.mode.ModeConfiguration;
+import
org.apache.shardingsphere.infra.config.mode.PersistRepositoryConfiguration;
+import org.apache.shardingsphere.infra.instance.metadata.InstanceMetaData;
+import
org.apache.shardingsphere.infra.instance.metadata.jdbc.JDBCInstanceMetaData;
+import org.apache.shardingsphere.infra.spi.type.typed.TypedSPILoader;
+import org.apache.shardingsphere.infra.util.eventbus.EventBusContext;
+import org.apache.shardingsphere.mode.manager.ContextManager;
+import org.apache.shardingsphere.mode.manager.ContextManagerBuilder;
+import org.apache.shardingsphere.mode.manager.ContextManagerBuilderParameter;
+import
org.apache.shardingsphere.mode.repository.standalone.StandalonePersistRepositoryConfiguration;
+import org.junit.jupiter.api.Test;
+
+import java.sql.SQLException;
+import java.util.Collections;
+import java.util.Properties;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+class StandaloneContextManagerBuilderTest {
+
+ @Test
+ void assertBuildWithType() throws SQLException {
+ assertBuild(TypedSPILoader.getService(ContextManagerBuilder.class,
"Standalone"));
+ }
+
+ @Test
+ void assertBuildWithDefault() throws SQLException {
+ assertBuild(TypedSPILoader.getService(ContextManagerBuilder.class,
null));
+ }
+
+ @SuppressWarnings("resource")
+ void assertBuild(final ContextManagerBuilder builder) throws SQLException {
+ InstanceMetaData instanceMetaData = new JDBCInstanceMetaData("foo");
+ ContextManager actual = builder.build(new
ContextManagerBuilderParameter(createModeConfiguration(),
+ Collections.emptyMap(), Collections.emptyMap(),
Collections.emptyList(), new Properties(), Collections.emptyList(),
instanceMetaData, false), mock(EventBusContext.class));
+
assertThat(actual.getComputeNodeInstanceContext().getInstance().getMetaData(),
is(instanceMetaData));
+ }
+
+ private static ModeConfiguration createModeConfiguration() {
+ PersistRepositoryConfiguration repositoryConfig =
mock(StandalonePersistRepositoryConfiguration.class);
+ when(repositoryConfig.getType()).thenReturn("FIXTURE");
+ return new ModeConfiguration("STANDALONE", repositoryConfig);
+ }
+}