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 cf24eb952f6 Remove useless DistSQLGlobalRuleQueryExecutorTest (#33141)
cf24eb952f6 is described below
commit cf24eb952f6914c762b0ed2a65e2ac9125138f27
Author: Liang Zhang <[email protected]>
AuthorDate: Mon Oct 7 16:54:00 2024 +0800
Remove useless DistSQLGlobalRuleQueryExecutorTest (#33141)
---
.../query/DistSQLGlobalRuleQueryExecutorTest.java | 59 ----------------------
1 file changed, 59 deletions(-)
diff --git
a/test/it/distsql/src/main/java/org/apache/shardingsphere/test/it/distsql/handler/engine/query/DistSQLGlobalRuleQueryExecutorTest.java
b/test/it/distsql/src/main/java/org/apache/shardingsphere/test/it/distsql/handler/engine/query/DistSQLGlobalRuleQueryExecutorTest.java
deleted file mode 100644
index 4fc087dbf7a..00000000000
---
a/test/it/distsql/src/main/java/org/apache/shardingsphere/test/it/distsql/handler/engine/query/DistSQLGlobalRuleQueryExecutorTest.java
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * 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.test.it.distsql.handler.engine.query;
-
-import lombok.RequiredArgsConstructor;
-import
org.apache.shardingsphere.distsql.handler.engine.DistSQLConnectionContext;
-import
org.apache.shardingsphere.distsql.handler.engine.query.DistSQLQueryExecuteEngine;
-import org.apache.shardingsphere.distsql.statement.DistSQLStatement;
-import
org.apache.shardingsphere.infra.config.rule.scope.GlobalRuleConfiguration;
-import
org.apache.shardingsphere.infra.merge.result.impl.local.LocalDataQueryResultRow;
-import org.apache.shardingsphere.infra.metadata.database.rule.RuleMetaData;
-import org.apache.shardingsphere.infra.rule.scope.GlobalRule;
-import org.apache.shardingsphere.mode.manager.ContextManager;
-
-import java.sql.SQLException;
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.Collections;
-
-import static
org.apache.shardingsphere.test.matcher.ShardingSphereAssertionMatchers.deepEqual;
-import static org.hamcrest.MatcherAssert.assertThat;
-import static org.mockito.Mockito.RETURNS_DEEP_STUBS;
-import static org.mockito.Mockito.mock;
-import static org.mockito.Mockito.when;
-
-@RequiredArgsConstructor
-public abstract class DistSQLGlobalRuleQueryExecutorTest {
-
- private final GlobalRule mockedRule;
-
- protected void assertQueryResultRows(final GlobalRuleConfiguration
ruleConfig, final DistSQLStatement sqlStatement, final
Collection<LocalDataQueryResultRow> expected) throws SQLException {
- DistSQLQueryExecuteEngine engine = new
DistSQLQueryExecuteEngine(sqlStatement, null, mockContextManager(ruleConfig),
mock(DistSQLConnectionContext.class));
- engine.executeQuery();
- Collection<LocalDataQueryResultRow> actual = new
ArrayList<>(engine.getRows());
- assertThat(actual, deepEqual(new ArrayList<>(expected)));
- }
-
- private ContextManager mockContextManager(final GlobalRuleConfiguration
ruleConfig) {
- ContextManager result = mock(ContextManager.class, RETURNS_DEEP_STUBS);
- when(mockedRule.getConfiguration()).thenReturn(ruleConfig);
-
when(result.getMetaDataContexts().getMetaData().getGlobalRuleMetaData()).thenReturn(new
RuleMetaData(Collections.singleton(mockedRule)));
- return result;
- }
-}