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 5d238d3a990 Add DatabaseAdminUpdateProxyBackendHandlerTest (#37484)
5d238d3a990 is described below
commit 5d238d3a990d99cb0980261e4e62c2631d30badd
Author: Liang Zhang <[email protected]>
AuthorDate: Tue Dec 23 23:54:29 2025 +0800
Add DatabaseAdminUpdateProxyBackendHandlerTest (#37484)
* Add DatabaseAdminUpdateProxyBackendHandlerTest
* Add DatabaseAdminUpdateProxyBackendHandlerTest
---
...DatabaseAdminUpdateProxyBackendHandlerTest.java | 51 ++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git
a/proxy/backend/core/src/test/java/org/apache/shardingsphere/proxy/backend/handler/admin/DatabaseAdminUpdateProxyBackendHandlerTest.java
b/proxy/backend/core/src/test/java/org/apache/shardingsphere/proxy/backend/handler/admin/DatabaseAdminUpdateProxyBackendHandlerTest.java
new file mode 100644
index 00000000000..8d18055868b
--- /dev/null
+++
b/proxy/backend/core/src/test/java/org/apache/shardingsphere/proxy/backend/handler/admin/DatabaseAdminUpdateProxyBackendHandlerTest.java
@@ -0,0 +1,51 @@
+/*
+ * 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.handler.admin;
+
+import org.apache.shardingsphere.infra.metadata.ShardingSphereMetaData;
+import org.apache.shardingsphere.mode.manager.ContextManager;
+import
org.apache.shardingsphere.proxy.backend.handler.admin.executor.DatabaseAdminExecutor;
+import org.apache.shardingsphere.proxy.backend.response.header.ResponseHeader;
+import
org.apache.shardingsphere.proxy.backend.response.header.update.UpdateResponseHeader;
+import org.apache.shardingsphere.proxy.backend.session.ConnectionSession;
+import org.junit.jupiter.api.Test;
+
+import java.sql.SQLException;
+
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.Matchers.isA;
+import static org.mockito.Mockito.RETURNS_DEEP_STUBS;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.when;
+
+class DatabaseAdminUpdateProxyBackendHandlerTest {
+
+ @Test
+ void assertExecute() throws SQLException {
+ ShardingSphereMetaData metaData = mock(ShardingSphereMetaData.class);
+ ContextManager contextManager = mock(ContextManager.class,
RETURNS_DEEP_STUBS);
+
when(contextManager.getMetaDataContexts().getMetaData()).thenReturn(metaData);
+ ConnectionSession connectionSession = mock(ConnectionSession.class,
RETURNS_DEEP_STUBS);
+ DatabaseAdminExecutor executor = mock(DatabaseAdminExecutor.class);
+ DatabaseAdminUpdateProxyBackendHandler handler = new
DatabaseAdminUpdateProxyBackendHandler(contextManager, connectionSession,
mock(), executor);
+ ResponseHeader actual = handler.execute();
+ verify(executor).execute(connectionSession, metaData);
+ assertThat(actual, isA(UpdateResponseHeader.class));
+ }
+}