You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2020/08/18 08:25:50 UTC

[shardingsphere] branch master updated: add testcase for InsertValue (#6859)

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 8d084cd  add testcase for InsertValue (#6859)
8d084cd is described below

commit 8d084cd30911d9a80ce1a6c241e28048043f4aea
Author: herozeng <10...@qq.com>
AuthorDate: Tue Aug 18 16:25:31 2020 +0800

    add testcase for InsertValue (#6859)
    
    * add testcase for InsertValue
    
    * fix checkstyle build issue
    
    * fix checkstyle for InsertValue
    
    * follow the unit test code of conduct
    
    * add copyright for InsertValueTest (#6859)
    
    Co-authored-by: za-zengweidong <za...@zhongan.io>
---
 .../sql/token/pojo/generic/InsertValueTest.java    | 68 ++++++++++++++++++++++
 1 file changed, 68 insertions(+)

diff --git a/shardingsphere-infra/shardingsphere-infra-rewrite/shardingsphere-infra-rewrite-engine/src/test/java/org/apache/shardingsphere/infra/rewrite/sql/token/pojo/generic/InsertValueTest.java b/shardingsphere-infra/shardingsphere-infra-rewrite/shardingsphere-infra-rewrite-engine/src/test/java/org/apache/shardingsphere/infra/rewrite/sql/token/pojo/generic/InsertValueTest.java
new file mode 100644
index 0000000..13b6bbd
--- /dev/null
+++ b/shardingsphere-infra/shardingsphere-infra-rewrite/shardingsphere-infra-rewrite-engine/src/test/java/org/apache/shardingsphere/infra/rewrite/sql/token/pojo/generic/InsertValueTest.java
@@ -0,0 +1,68 @@
+/*
+ * 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.infra.rewrite.sql.token.pojo.generic;
+
+import org.apache.shardingsphere.sql.parser.sql.segment.dml.expr.ExpressionSegment;
+import org.apache.shardingsphere.sql.parser.sql.segment.dml.expr.complex.ComplexExpressionSegment;
+import org.apache.shardingsphere.sql.parser.sql.segment.dml.expr.simple.LiteralExpressionSegment;
+import org.apache.shardingsphere.sql.parser.sql.segment.dml.expr.simple.ParameterMarkerExpressionSegment;
+import org.junit.Test;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import static org.hamcrest.CoreMatchers.is;
+import static org.junit.Assert.assertThat;
+
+public class InsertValueTest {
+
+    @Test
+    public void assertToString() {
+        List<ExpressionSegment> expressionSegmentList = new ArrayList<>();
+
+        ParameterMarkerExpressionSegment parameterMarkerExpressionSegment =
+                new ParameterMarkerExpressionSegment(1, 1, 1);
+        LiteralExpressionSegment literalExpressionSegment
+                = new LiteralExpressionSegment(2, 2, "literals");
+        ComplexExpressionSegment complexExpressionSegment = new ComplexExpressionSegment() {
+            @Override
+            public String getText() {
+                return "complexExpressionSegment";
+            }
+
+            @Override
+            public int getStartIndex() {
+                return 3;
+            }
+
+            @Override
+            public int getStopIndex() {
+                return 3;
+            }
+        };
+
+        expressionSegmentList.add(parameterMarkerExpressionSegment);
+        expressionSegmentList.add(literalExpressionSegment);
+        expressionSegmentList.add(complexExpressionSegment);
+
+        InsertValue insertValue = new InsertValue(expressionSegmentList);
+        String actualToString = insertValue.toString();
+        String expectedToString = "(?, 'literals', complexExpressionSegment)";
+        assertThat(actualToString, is(expectedToString));
+    }
+}