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 7ef0f68434e Use DistSQLDatabaseRuleQueryExecutorAssert in ShowShardingAlgorithmExecutorTest (#34601) 7ef0f68434e is described below commit 7ef0f68434e36a60cb77d52fdce2a9b335eafe7a Author: ilyas ahsan <meilyasah...@gmail.com> AuthorDate: Sat Feb 8 18:08:26 2025 +0700 Use DistSQLDatabaseRuleQueryExecutorAssert in ShowShardingAlgorithmExecutorTest (#34601) --- .../query/ShowShardingAlgorithmExecutorTest.java | 46 +++++----------------- .../show-sharding-algorithm-current-config.yaml | 33 ++++++++++++++++ .../resources/cases/show-sharding-algorithm.xml | 27 +++++++++++++ 3 files changed, 70 insertions(+), 36 deletions(-) diff --git a/features/sharding/distsql/handler/src/test/java/org/apache/shardingsphere/sharding/distsql/handler/query/ShowShardingAlgorithmExecutorTest.java b/features/sharding/distsql/handler/src/test/java/org/apache/shardingsphere/sharding/distsql/handler/query/ShowShardingAlgorithmExecutorTest.java index dc7f64f327e..e2fe4eeed2f 100644 --- a/features/sharding/distsql/handler/src/test/java/org/apache/shardingsphere/sharding/distsql/handler/query/ShowShardingAlgorithmExecutorTest.java +++ b/features/sharding/distsql/handler/src/test/java/org/apache/shardingsphere/sharding/distsql/handler/query/ShowShardingAlgorithmExecutorTest.java @@ -18,53 +18,27 @@ package org.apache.shardingsphere.sharding.distsql.handler.query; import org.apache.shardingsphere.distsql.statement.DistSQLStatement; -import org.apache.shardingsphere.infra.algorithm.core.config.AlgorithmConfiguration; -import org.apache.shardingsphere.infra.config.rule.scope.DatabaseRuleConfiguration; import org.apache.shardingsphere.infra.merge.result.impl.local.LocalDataQueryResultRow; import org.apache.shardingsphere.sharding.api.config.ShardingRuleConfiguration; -import org.apache.shardingsphere.sharding.distsql.statement.ShowShardingAlgorithmsStatement; import org.apache.shardingsphere.sharding.rule.ShardingRule; -import org.apache.shardingsphere.test.it.distsql.handler.engine.query.DistSQLDatabaseRuleQueryExecutorTest; -import org.apache.shardingsphere.test.util.PropertiesBuilder; -import org.apache.shardingsphere.test.util.PropertiesBuilder.Property; -import org.junit.jupiter.api.extension.ExtensionContext; +import org.apache.shardingsphere.test.it.distsql.handler.engine.query.DistSQLDatabaseRuleQueryExecutorAssert; +import org.apache.shardingsphere.test.it.distsql.handler.engine.query.DistSQLRuleQueryExecutorSettings; +import org.apache.shardingsphere.test.it.distsql.handler.engine.query.DistSQLRuleQueryExecutorTestCaseArgumentsProvider; import org.junit.jupiter.params.ParameterizedTest; -import org.junit.jupiter.params.provider.Arguments; -import org.junit.jupiter.params.provider.ArgumentsProvider; import org.junit.jupiter.params.provider.ArgumentsSource; import java.sql.SQLException; import java.util.Collection; -import java.util.Collections; -import java.util.stream.Stream; import static org.mockito.Mockito.mock; -class ShowShardingAlgorithmExecutorTest extends DistSQLDatabaseRuleQueryExecutorTest { +@DistSQLRuleQueryExecutorSettings("cases/show-sharding-algorithm.xml") +class ShowShardingAlgorithmExecutorTest { - ShowShardingAlgorithmExecutorTest() { - super(mock(ShardingRule.class)); - } - - @ParameterizedTest(name = "{0}") - @ArgumentsSource(TestCaseArgumentsProvider.class) - void assertExecuteQuery(final String name, final DatabaseRuleConfiguration ruleConfig, final DistSQLStatement sqlStatement, - final Collection<LocalDataQueryResultRow> expected) throws SQLException { - assertQueryResultRows(ruleConfig, sqlStatement, expected); - } - - private static class TestCaseArgumentsProvider implements ArgumentsProvider { - - @Override - public Stream<? extends Arguments> provideArguments(final ExtensionContext extensionContext) { - return Stream.of(Arguments.arguments("normal", createRuleConfiguration(), new ShowShardingAlgorithmsStatement(null), - Collections.singleton(new LocalDataQueryResultRow("database_inline", "INLINE", "{\"algorithm-expression\":\"ds_${user_id % 2}\"}")))); - } - - private ShardingRuleConfiguration createRuleConfiguration() { - ShardingRuleConfiguration result = new ShardingRuleConfiguration(); - result.getShardingAlgorithms().put("database_inline", new AlgorithmConfiguration("INLINE", PropertiesBuilder.build(new Property("algorithm-expression", "ds_${user_id % 2}")))); - return result; - } + @ParameterizedTest(name = "DistSQL -> {0}") + @ArgumentsSource(DistSQLRuleQueryExecutorTestCaseArgumentsProvider.class) + void assertExecuteQuery(@SuppressWarnings("unused") final String distSQL, final DistSQLStatement sqlStatement, + final ShardingRuleConfiguration currentRuleConfig, final Collection<LocalDataQueryResultRow> expected) throws SQLException { + new DistSQLDatabaseRuleQueryExecutorAssert(mock(ShardingRule.class)).assertQueryResultRows(currentRuleConfig, sqlStatement, expected); } } diff --git a/features/sharding/distsql/handler/src/test/resources/cases/show-sharding-algorithm-current-config.yaml b/features/sharding/distsql/handler/src/test/resources/cases/show-sharding-algorithm-current-config.yaml new file mode 100644 index 00000000000..1489aeb30a2 --- /dev/null +++ b/features/sharding/distsql/handler/src/test/resources/cases/show-sharding-algorithm-current-config.yaml @@ -0,0 +1,33 @@ +# +# 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. +# + +rules: + - !SHARDING + defaultDatabaseStrategy: + none: + tables: + t_order: + actualDataNodes: ds_${0..1}.t_order_${0..1} + databaseStrategy: + standard: + shardingColumn: user_id + shardingAlgorithmName: database_inline + shardingAlgorithms: + database_inline: + type: INLINE + props: + algorithm-expression: ds_${user_id % 2} diff --git a/features/sharding/distsql/handler/src/test/resources/cases/show-sharding-algorithm.xml b/features/sharding/distsql/handler/src/test/resources/cases/show-sharding-algorithm.xml new file mode 100644 index 00000000000..2ab3bea15d0 --- /dev/null +++ b/features/sharding/distsql/handler/src/test/resources/cases/show-sharding-algorithm.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ 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. + --> + +<distsql-rule-query-executor-test-cases> + <test-case dist-sql="SHOW SHARDING ALGORITHMS" current-rule-config-yaml-file="cases/show-sharding-algorithm-current-config.yaml"> + <expected-query-result-rows> + <expected-query-result-row> + database_inline|INLINE|{"algorithm-expression":"ds_${user_id % 2}"} + </expected-query-result-row> + </expected-query-result-rows> + </test-case> +</distsql-rule-query-executor-test-cases>