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 cf2d03c2a3a Add ProxyJDBCExecutorCallbackFactoryTest (#37479)
cf2d03c2a3a is described below
commit cf2d03c2a3a6bd572521a5eb033926220de700ee
Author: Liang Zhang <[email protected]>
AuthorDate: Tue Dec 23 22:18:59 2025 +0800
Add ProxyJDBCExecutorCallbackFactoryTest (#37479)
---
.../ProxyJDBCExecutorCallbackFactoryTest.java | 52 ++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git
a/proxy/backend/core/src/test/java/org/apache/shardingsphere/proxy/backend/connector/jdbc/executor/callback/ProxyJDBCExecutorCallbackFactoryTest.java
b/proxy/backend/core/src/test/java/org/apache/shardingsphere/proxy/backend/connector/jdbc/executor/callback/ProxyJDBCExecutorCallbackFactoryTest.java
new file mode 100644
index 00000000000..b9c66c4924d
--- /dev/null
+++
b/proxy/backend/core/src/test/java/org/apache/shardingsphere/proxy/backend/connector/jdbc/executor/callback/ProxyJDBCExecutorCallbackFactoryTest.java
@@ -0,0 +1,52 @@
+/*
+ * 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.proxy.backend.connector.jdbc.executor.callback;
+
+import
org.apache.shardingsphere.infra.exception.generic.UnsupportedSQLOperationException;
+import
org.apache.shardingsphere.infra.executor.sql.prepare.driver.jdbc.JDBCDriverType;
+import
org.apache.shardingsphere.proxy.backend.connector.jdbc.executor.callback.impl.ProxyPreparedStatementExecutorCallback;
+import
org.apache.shardingsphere.proxy.backend.connector.jdbc.executor.callback.impl.ProxyStatementExecutorCallback;
+import org.junit.jupiter.api.Test;
+
+import static org.hamcrest.CoreMatchers.instanceOf;
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.junit.jupiter.api.Assertions.assertThrows;
+import static org.mockito.Mockito.mock;
+
+class ProxyJDBCExecutorCallbackFactoryTest {
+
+ @Test
+ void assertNewInstanceWithStatementDriverType() {
+ ProxyJDBCExecutorCallback actual =
ProxyJDBCExecutorCallbackFactory.newInstance(JDBCDriverType.STATEMENT, mock(),
mock(), mock(), mock(), true, true, true);
+ assertThat(actual, instanceOf(ProxyStatementExecutorCallback.class));
+ }
+
+ @Test
+ void assertNewInstanceWithPreparedStatementDriverType() {
+ ProxyJDBCExecutorCallback actual =
ProxyJDBCExecutorCallbackFactory.newInstance(JDBCDriverType.PREPARED_STATEMENT,
mock(), mock(), mock(), mock(), false, false, false);
+ assertThat(actual,
instanceOf(ProxyPreparedStatementExecutorCallback.class));
+ }
+
+ @Test
+ void assertNewInstanceWithUnsupportedDriverType() {
+ UnsupportedSQLOperationException ex =
assertThrows(UnsupportedSQLOperationException.class, () ->
ProxyJDBCExecutorCallbackFactory.newInstance(
+ null, mock(), mock(), mock(), mock(), false, false, false));
+ assertThat(ex.getMessage(), is("Unsupported SQL operation: Unsupported
driver type: `null`."));
+ }
+}