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 274fd08069c Add OracleSQLFederationConnectionConfigBuilderTest (#37319)
274fd08069c is described below

commit 274fd08069cb017853016ed77925af7ff03a526a
Author: Liang Zhang <[email protected]>
AuthorDate: Wed Dec 10 00:48:43 2025 +0800

    Add OracleSQLFederationConnectionConfigBuilderTest (#37319)
---
 ...leSQLFederationConnectionConfigBuilderTest.java | 49 ++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git 
a/kernel/sql-federation/dialect/oracle/src/test/java/org/apache/shardingsphere/sqlfederation/oracle/OracleSQLFederationConnectionConfigBuilderTest.java
 
b/kernel/sql-federation/dialect/oracle/src/test/java/org/apache/shardingsphere/sqlfederation/oracle/OracleSQLFederationConnectionConfigBuilderTest.java
new file mode 100644
index 00000000000..cda8d85cdce
--- /dev/null
+++ 
b/kernel/sql-federation/dialect/oracle/src/test/java/org/apache/shardingsphere/sqlfederation/oracle/OracleSQLFederationConnectionConfigBuilderTest.java
@@ -0,0 +1,49 @@
+/*
+ * 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.sqlfederation.oracle;
+
+import org.apache.calcite.config.CalciteConnectionConfig;
+import org.apache.calcite.config.Lex;
+import org.apache.calcite.sql.SqlOperatorTable;
+import org.apache.calcite.sql.validate.SqlConformanceEnum;
+import 
org.apache.shardingsphere.database.connector.core.spi.DatabaseTypedSPILoader;
+import org.apache.shardingsphere.database.connector.core.type.DatabaseType;
+import org.apache.shardingsphere.infra.spi.type.typed.TypedSPILoader;
+import 
org.apache.shardingsphere.sqlfederation.compiler.context.connection.config.DialectSQLFederationConnectionConfigBuilder;
+import org.junit.jupiter.api.Test;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+
+class OracleSQLFederationConnectionConfigBuilderTest {
+    
+    private final DatabaseType databaseType = 
TypedSPILoader.getService(DatabaseType.class, "Oracle");
+    
+    private final DialectSQLFederationConnectionConfigBuilder builder = 
DatabaseTypedSPILoader.getService(DialectSQLFederationConnectionConfigBuilder.class,
 databaseType);
+    
+    @Test
+    void assertBuild() {
+        CalciteConnectionConfig actualConfig = builder.build();
+        assertThat(actualConfig.lex(), is(Lex.ORACLE));
+        assertThat(actualConfig.conformance(), 
is(SqlConformanceEnum.ORACLE_12));
+        assertNotNull(actualConfig.fun(SqlOperatorTable.class, null));
+        assertThat(actualConfig.caseSensitive(), is(Lex.ORACLE.caseSensitive));
+        assertThat(builder.getDatabaseType(), is("Oracle"));
+    }
+}

Reply via email to