-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Unit test for ExpressionSegmentBinder #28883
Closed
Gowrishankar04
wants to merge
2
commits into
apache:master
from
Gowrishankar04:feature/expressionSegmentBinder_tests
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
126 changes: 126 additions & 0 deletions
126
...rg/apache/shardingsphere/infra/binder/segment/expression/ExpressionSegmentBinderTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
/* | ||
* 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.binder.segment.expression; | ||
|
||
import org.apache.shardingsphere.infra.binder.enums.SegmentType; | ||
import org.apache.shardingsphere.infra.binder.statement.SQLStatementBinderContext; | ||
import org.apache.shardingsphere.infra.metadata.ShardingSphereMetaData; | ||
import org.apache.shardingsphere.sql.parser.sql.common.segment.dml.column.ColumnSegment; | ||
import org.apache.shardingsphere.sql.parser.sql.common.segment.dml.expr.BinaryOperationExpression; | ||
import org.apache.shardingsphere.sql.parser.sql.common.segment.dml.expr.NotExpression; | ||
import org.apache.shardingsphere.sql.parser.sql.common.segment.dml.expr.ExistsSubqueryExpression; | ||
import org.apache.shardingsphere.sql.parser.sql.common.segment.dml.expr.ExpressionSegment; | ||
import org.apache.shardingsphere.sql.parser.sql.common.segment.dml.expr.FunctionSegment; | ||
import org.apache.shardingsphere.sql.parser.sql.common.segment.dml.expr.InExpression; | ||
import org.apache.shardingsphere.sql.parser.sql.common.segment.dml.expr.subquery.SubqueryExpressionSegment; | ||
import org.apache.shardingsphere.sql.parser.sql.common.segment.dml.expr.subquery.SubquerySegment; | ||
import org.apache.shardingsphere.sql.parser.sql.common.segment.dml.item.ProjectionsSegment; | ||
import org.apache.shardingsphere.sql.parser.sql.common.value.identifier.IdentifierValue; | ||
import org.apache.shardingsphere.sql.parser.sql.dialect.statement.mysql.dml.MySQLSelectStatement; | ||
import org.apache.shardingsphere.test.fixture.database.MockedDatabaseType; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.Collections; | ||
|
||
import static org.hamcrest.CoreMatchers.is; | ||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
class ExpressionSegmentBinderTest { | ||
|
||
@Test | ||
void assertBindWithBinaryOperationExpression() { | ||
BinaryOperationExpression binaryOperationExpression = new BinaryOperationExpression(0, 0, null, null, "+", "text"); | ||
SQLStatementBinderContext statementBinderContext = new SQLStatementBinderContext(new ShardingSphereMetaData(), "db", new MockedDatabaseType(), Collections.emptyList()); | ||
ExpressionSegment actual = ExpressionSegmentBinder.bind(binaryOperationExpression, SegmentType.INSERT_COLUMNS, statementBinderContext, Collections.emptyMap(), Collections.emptyMap()); | ||
assertTrue(actual instanceof BinaryOperationExpression); | ||
assertThat(binaryOperationExpression.getLeft(), is(((BinaryOperationExpression) actual).getLeft())); | ||
assertThat(binaryOperationExpression.getOperator(), is(((BinaryOperationExpression) actual).getOperator())); | ||
assertThat(binaryOperationExpression.getRight(), is(((BinaryOperationExpression) actual).getRight())); | ||
} | ||
|
||
@Test | ||
void assertBindWithExistsSubqueryExpression() { | ||
MySQLSelectStatement mySQLSelectStatement = new MySQLSelectStatement(); | ||
mySQLSelectStatement.setProjections(new ProjectionsSegment(0, 0)); | ||
ExistsSubqueryExpression existsSubqueryExpression = new ExistsSubqueryExpression(0, 0, new SubquerySegment(0, 0, mySQLSelectStatement, "test")); | ||
SQLStatementBinderContext statementBinderContext = new SQLStatementBinderContext(new ShardingSphereMetaData(), "db", new MockedDatabaseType(), Collections.emptyList()); | ||
ExpressionSegment actual = ExpressionSegmentBinder.bind(existsSubqueryExpression, SegmentType.INSERT_COLUMNS, statementBinderContext, Collections.emptyMap(), Collections.emptyMap()); | ||
assertTrue(actual instanceof ExistsSubqueryExpression); | ||
assertThat(existsSubqueryExpression.getSubquery().getClass(), is(((ExistsSubqueryExpression) actual).getSubquery().getClass())); | ||
} | ||
|
||
@Test | ||
void assertBindWithSubqueryExpressionSegment() { | ||
MySQLSelectStatement mySQLSelectStatement = new MySQLSelectStatement(); | ||
mySQLSelectStatement.setProjections(new ProjectionsSegment(0, 0)); | ||
SubqueryExpressionSegment subqueryExpressionSegment = new SubqueryExpressionSegment(new SubquerySegment(0, 0, mySQLSelectStatement, "test")); | ||
SQLStatementBinderContext statementBinderContext = new SQLStatementBinderContext(new ShardingSphereMetaData(), "db", new MockedDatabaseType(), Collections.emptyList()); | ||
ExpressionSegment actual = ExpressionSegmentBinder.bind(subqueryExpressionSegment, SegmentType.INSERT_COLUMNS, statementBinderContext, Collections.emptyMap(), Collections.emptyMap()); | ||
assertTrue(actual instanceof SubqueryExpressionSegment); | ||
assertThat(subqueryExpressionSegment.getSubquery().getClass(), is(((SubqueryExpressionSegment) actual).getSubquery().getClass())); | ||
} | ||
|
||
@Test | ||
void assertBindWithInExpression() { | ||
Collection<String> variables = new ArrayList<>(); | ||
variables.add("t_order"); | ||
MySQLSelectStatement mySQLSelectStatement = new MySQLSelectStatement(); | ||
mySQLSelectStatement.setProjections(new ProjectionsSegment(0, 0)); | ||
InExpression inExpression = new InExpression(0, 0, new ColumnSegment(0, 0, new IdentifierValue("t_order")), null, true); | ||
SQLStatementBinderContext statementBinderContext = new SQLStatementBinderContext(new ShardingSphereMetaData(), "db", new MockedDatabaseType(), variables); | ||
ExpressionSegment actual = ExpressionSegmentBinder.bind(inExpression, SegmentType.INSERT_COLUMNS, statementBinderContext, Collections.emptyMap(), Collections.emptyMap()); | ||
assertTrue(actual instanceof InExpression); | ||
assertThat(inExpression.getStopIndex(), is(((InExpression) actual).getStopIndex())); | ||
} | ||
|
||
@Test | ||
void assertBindWithNotExpression() { | ||
Collection<String> variables = new ArrayList<>(); | ||
variables.add("t_order"); | ||
NotExpression notExpression = new NotExpression(0, 0, new ColumnSegment(0, 0, new IdentifierValue("t_order")), null); | ||
SQLStatementBinderContext statementBinderContext = new SQLStatementBinderContext(new ShardingSphereMetaData(), "db", new MockedDatabaseType(), variables); | ||
ExpressionSegment actual = ExpressionSegmentBinder.bind(notExpression, SegmentType.INSERT_COLUMNS, statementBinderContext, Collections.emptyMap(), Collections.emptyMap()); | ||
assertTrue(actual instanceof NotExpression); | ||
assertThat(notExpression.getExpression().getClass(), is(((NotExpression) actual).getExpression().getClass())); | ||
} | ||
|
||
@Test | ||
void assertBindWithColumnSegment() { | ||
Collection<String> variables = new ArrayList<>(); | ||
variables.add("t_order"); | ||
ColumnSegment columnSegment = new ColumnSegment(0, 0, new IdentifierValue("t_order")); | ||
SQLStatementBinderContext statementBinderContext = new SQLStatementBinderContext(new ShardingSphereMetaData(), "db", new MockedDatabaseType(), variables); | ||
ExpressionSegment actual = ExpressionSegmentBinder.bind(columnSegment, SegmentType.INSERT_COLUMNS, statementBinderContext, Collections.emptyMap(), Collections.emptyMap()); | ||
assertTrue(actual instanceof ColumnSegment); | ||
assertThat(columnSegment.getIdentifier().getValue(), is(((ColumnSegment) actual).getIdentifier().getValue())); | ||
} | ||
|
||
@Test | ||
void assertBindWithFunctionSegment() { | ||
FunctionSegment functionSegment = new FunctionSegment(0, 0, "SUM(*)", "text"); | ||
SQLStatementBinderContext statementBinderContext = new SQLStatementBinderContext(new ShardingSphereMetaData(), "db", new MockedDatabaseType(), Collections.emptyList()); | ||
ExpressionSegment actual = ExpressionSegmentBinder.bind(functionSegment, SegmentType.INSERT_COLUMNS, statementBinderContext, Collections.emptyMap(), Collections.emptyMap()); | ||
assertTrue(actual instanceof FunctionSegment); | ||
assertEquals(functionSegment.getFunctionName(), ((FunctionSegment) actual).getFunctionName()); | ||
assertThat(functionSegment.getParameters().size(), is(((FunctionSegment) actual).getParameters().size())); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like this logic is wrong, and the segment that passes through bind will be regenerated. Whether you can assert the actual type and instance, the type should be same, and instance is different.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @Gowrishankar04, can you take a look at this recommend?