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 b8ed6ef4e47 Add ProxyPreparedStatementExecutorCallbackTest (#37481)
b8ed6ef4e47 is described below
commit b8ed6ef4e47138e2c1aa285b03b81b1e043a60e4
Author: Liang Zhang <[email protected]>
AuthorDate: Tue Dec 23 22:55:13 2025 +0800
Add ProxyPreparedStatementExecutorCallbackTest (#37481)
---
...ProxyPreparedStatementExecutorCallbackTest.java | 45 ++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git
a/proxy/backend/core/src/test/java/org/apache/shardingsphere/proxy/backend/connector/jdbc/executor/callback/impl/ProxyPreparedStatementExecutorCallbackTest.java
b/proxy/backend/core/src/test/java/org/apache/shardingsphere/proxy/backend/connector/jdbc/executor/callback/impl/ProxyPreparedStatementExecutorCallbackTest.java
new file mode 100644
index 00000000000..20fa43f0a46
--- /dev/null
+++
b/proxy/backend/core/src/test/java/org/apache/shardingsphere/proxy/backend/connector/jdbc/executor/callback/impl/ProxyPreparedStatementExecutorCallbackTest.java
@@ -0,0 +1,45 @@
+/*
+ * 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.impl;
+
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import org.mockito.Mock;
+import org.mockito.junit.jupiter.MockitoExtension;
+
+import java.sql.PreparedStatement;
+import java.sql.SQLException;
+
+import static org.junit.jupiter.api.Assertions.assertTrue;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.when;
+
+@ExtendWith(MockitoExtension.class)
+class ProxyPreparedStatementExecutorCallbackTest {
+
+ @Mock
+ private PreparedStatement preparedStatement;
+
+ @Test
+ void assertExecuteDelegatesPreparedStatementExecute() throws SQLException {
+ when(preparedStatement.execute()).thenReturn(true);
+ assertTrue(new ProxyPreparedStatementExecutorCallback(mock(), mock(),
mock(), mock(), true, false, false).execute("foo_sql", preparedStatement,
true));
+ verify(preparedStatement).execute();
+ }
+}