From 8d084cd30911d9a80ce1a6c241e28048043f4aea Mon Sep 17 00:00:00 2001 From: herozeng <1055670399@qq.com> Date: Tue, 18 Aug 2020 16:25:31 +0800 Subject: [PATCH] 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 --- .../token/pojo/generic/InsertValueTest.java | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 shardingsphere-infra/shardingsphere-infra-rewrite/shardingsphere-infra-rewrite-engine/src/test/java/org/apache/shardingsphere/infra/rewrite/sql/token/pojo/generic/InsertValueTest.java 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 0000000000..13b6bbd944 --- /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 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)); + } +} -- GitLab