This is an automated email from the ASF dual-hosted git repository.
tuichenchuxin 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 ad2cdcb0e44 #28513 add unit tests for where segment binder (#30852)
ad2cdcb0e44 is described below
commit ad2cdcb0e44ae12d36dd9581a232ff891790e8a9
Author: Harsh Vinod Sawarkar <[email protected]>
AuthorDate: Fri Apr 12 14:58:09 2024 +0530
#28513 add unit tests for where segment binder (#30852)
* Added unit test for WhereSegmentBinder class methods
* Added unit test for WhereSegmentBinder class methods
---
.../segment/where/WhereSegmentBinderTest.java | 45 ++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git
a/infra/binder/src/test/java/org/apache/shardingsphere/infra/binder/segment/where/WhereSegmentBinderTest.java
b/infra/binder/src/test/java/org/apache/shardingsphere/infra/binder/segment/where/WhereSegmentBinderTest.java
new file mode 100644
index 00000000000..1cd5d93a9a3
--- /dev/null
+++
b/infra/binder/src/test/java/org/apache/shardingsphere/infra/binder/segment/where/WhereSegmentBinderTest.java
@@ -0,0 +1,45 @@
+/*
+ * 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.where;
+
+import
org.apache.shardingsphere.infra.binder.segment.from.TableSegmentBinderContext;
+import
org.apache.shardingsphere.infra.binder.statement.SQLStatementBinderContext;
+import
org.apache.shardingsphere.sql.parser.sql.common.segment.dml.expr.ExpressionSegment;
+import
org.apache.shardingsphere.sql.parser.sql.common.segment.dml.predicate.WhereSegment;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Test;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import static org.mockito.Mockito.mock;
+
+class WhereSegmentBinderTest {
+
+ @Test
+ void assertBind() {
+ SQLStatementBinderContext sqlStatementBinderContext =
mock(SQLStatementBinderContext.class);
+ WhereSegment expectedWhereSegment = new WhereSegment(1, 2,
mock(ExpressionSegment.class));
+ Map<String, TableSegmentBinderContext> tableBinderContexts = new
HashMap<>();
+ Map<String, TableSegmentBinderContext> outerTableBinderContexts = new
HashMap<>();
+ WhereSegment actualWhereSegment =
WhereSegmentBinder.bind(expectedWhereSegment, sqlStatementBinderContext,
tableBinderContexts, outerTableBinderContexts);
+ Assertions.assertEquals(expectedWhereSegment.getStopIndex(),
actualWhereSegment.getStopIndex());
+ Assertions.assertEquals(expectedWhereSegment.getStartIndex(),
actualWhereSegment.getStartIndex());
+ Assertions.assertEquals(expectedWhereSegment.getExpr(),
actualWhereSegment.getExpr());
+ }
+}