LeeGuoPing commented on a change in pull request #15343:
URL: https://github.com/apache/shardingsphere/pull/15343#discussion_r805442125



##########
File path: 
shardingsphere-test/shardingsphere-parser-test/src/main/java/org/apache/shardingsphere/test/sql/parser/parameterized/asserts/statement/distsql/rql/impl/rule/ShowShardingTableRulesUsedKeyGeneratorStatementAssert.java
##########
@@ -0,0 +1,61 @@
+/*
+ * 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.sql.parser.parameterized.asserts.statement.distsql.rql.impl.rule;
+
+import com.google.common.base.Strings;
+import lombok.AccessLevel;
+import lombok.NoArgsConstructor;
+import 
org.apache.shardingsphere.sharding.distsql.parser.statement.ShowShardingTableRulesUsedKeyGeneratorStatement;
+import 
org.apache.shardingsphere.test.sql.parser.parameterized.asserts.SQLCaseAssertContext;
+import 
org.apache.shardingsphere.test.sql.parser.parameterized.asserts.segment.schema.SchemaAssert;
+import 
org.apache.shardingsphere.test.sql.parser.parameterized.jaxb.cases.domain.statement.distsql.rql.ShowShardingTableRulesUsedKeyGeneratorStatementTestCase;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertThat;
+import static org.junit.Assert.assertTrue;
+
+/**
+ * Show sharding table rules used key generator statement assert.
+ */
+@NoArgsConstructor(access = AccessLevel.PRIVATE)
+public final class ShowShardingTableRulesUsedKeyGeneratorStatementAssert {
+    
+    /**
+     * Assert show sharding table rules used key generator statement is 
correct with expected parser result.
+     *
+     * @param assertContext assert context
+     * @param actual actual show sharding table rules used key generator 
statement
+     * @param expected expected show sharding table rules used key generator 
statement test case
+     */
+    public static void assertIs(final SQLCaseAssertContext assertContext, 
final ShowShardingTableRulesUsedKeyGeneratorStatement actual,
+                                final 
ShowShardingTableRulesUsedKeyGeneratorStatementTestCase expected) {
+        if (null != expected.getSchema()) {
+            assertTrue(assertContext.getText("Actual schema should exist."), 
actual.getSchema().isPresent());
+            SchemaAssert.assertIs(assertContext, actual.getSchema().get(), 
expected.getSchema());
+        } else {
+            assertFalse(assertContext.getText("Actual schema should not 
exist."), actual.getSchema().isPresent());
+        }
+        if (!Strings.isNullOrEmpty(expected.getKeyGenerator())) {
+            assertTrue(assertContext.getText("Actual keyGenerator should 
exist."), actual.getKeyGeneratorName().isPresent());
+            assertThat(assertContext.getText("keyGenerator assertion error:"), 
actual.getKeyGeneratorName().get(), is(expected.getKeyGenerator()));

Review comment:
       @RaigorJiang done.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to