You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by du...@apache.org on 2022/10/01 07:37:22 UTC

[shardingsphere] branch master updated: [Issue #20394]-Add unit test for SQLParserRuleBuilder (#21292)

This is an automated email from the ASF dual-hosted git repository.

duanzhengqiang 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 22130aa4a57 [Issue #20394]-Add unit test for SQLParserRuleBuilder (#21292)
22130aa4a57 is described below

commit 22130aa4a577d28bfe689afe3280afd898c19560
Author: Abhinav Koppula <ab...@gmail.com>
AuthorDate: Sat Oct 1 13:07:14 2022 +0530

    [Issue #20394]-Add unit test for SQLParserRuleBuilder (#21292)
---
 .../rule/builder/SQLParserRuleBuilderTest.java     | 61 ++++++++++++++++++++++
 1 file changed, 61 insertions(+)

diff --git a/shardingsphere-kernel/shardingsphere-parser/shardingsphere-parser-core/src/test/java/org/apache/shardingsphere/parser/rule/builder/SQLParserRuleBuilderTest.java b/shardingsphere-kernel/shardingsphere-parser/shardingsphere-parser-core/src/test/java/org/apache/shardingsphere/parser/rule/builder/SQLParserRuleBuilderTest.java
new file mode 100644
index 00000000000..f42a06097b1
--- /dev/null
+++ b/shardingsphere-kernel/shardingsphere-parser/shardingsphere-parser-core/src/test/java/org/apache/shardingsphere/parser/rule/builder/SQLParserRuleBuilderTest.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.parser.rule.builder;
+
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.Matchers.is;
+import static org.junit.Assert.assertTrue;
+
+import java.util.HashMap;
+import java.util.Properties;
+import org.apache.shardingsphere.infra.config.props.ConfigurationProperties;
+import org.apache.shardingsphere.infra.instance.InstanceContext;
+import org.apache.shardingsphere.parser.config.SQLParserRuleConfiguration;
+import org.apache.shardingsphere.parser.constant.SQLParserOrder;
+import org.apache.shardingsphere.parser.rule.SQLParserRule;
+import org.apache.shardingsphere.sql.parser.api.CacheOption;
+import org.junit.Test;
+import org.mockito.Mock;
+
+public final class SQLParserRuleBuilderTest {
+    
+    @Mock
+    private InstanceContext instanceContext;
+    
+    @Test
+    public void assertBuild() {
+        SQLParserRuleConfiguration configuration = new SQLParserRuleConfiguration(true, new CacheOption(2, 5), new CacheOption(4, 7));
+        SQLParserRule actualResult = new SQLParserRuleBuilder().build(configuration, new HashMap<>(), instanceContext, new ConfigurationProperties(new Properties()));
+        assertThat(actualResult.getConfiguration(), is(configuration));
+        assertTrue(actualResult.isSqlCommentParseEnabled());
+        assertThat(actualResult.getSqlStatementCache().getInitialCapacity(), is(4));
+        assertThat(actualResult.getSqlStatementCache().getMaximumSize(), is(7L));
+        assertThat(actualResult.getParseTreeCache().getInitialCapacity(), is(2));
+        assertThat(actualResult.getParseTreeCache().getMaximumSize(), is(5L));
+    }
+    
+    @Test
+    public void assertGetOrder() {
+        assertThat(new SQLParserRuleBuilder().getOrder(), is(SQLParserOrder.ORDER));
+    }
+    
+    @Test
+    public void assertGetTypeClass() {
+        assertThat(new SQLParserRuleBuilder().getTypeClass().toString(), is(SQLParserRuleConfiguration.class.toString()));
+    }
+}