You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by pa...@apache.org on 2021/01/11 04:41:07 UTC

[shardingsphere] branch master updated: test the CalciteLogicSchemeFactory.class (#8967)

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

panjuan 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 e6a66a7  test the CalciteLogicSchemeFactory.class (#8967)
e6a66a7 is described below

commit e6a66a7d60b7b0d2e557f81acbd651f8ca1e089c
Author: lmhmhl <12...@qq.com>
AuthorDate: Mon Jan 11 12:40:27 2021 +0800

    test the CalciteLogicSchemeFactory.class (#8967)
    
    * test the CalciteLogicSchemeFactory.class
    
    * test the CalciteLogicSchemeFactory.class
    
    Co-authored-by: lmh <lm...@163.com>
---
 .../schema/CalciteLogicSchemaFactoryTest.java      | 47 ++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/shardingsphere-infra/shardingsphere-infra-optimize/src/test/java/org/apache/shardingsphere/infra/optimize/schema/CalciteLogicSchemaFactoryTest.java b/shardingsphere-infra/shardingsphere-infra-optimize/src/test/java/org/apache/shardingsphere/infra/optimize/schema/CalciteLogicSchemaFactoryTest.java
new file mode 100644
index 0000000..60d9540
--- /dev/null
+++ b/shardingsphere-infra/shardingsphere-infra-optimize/src/test/java/org/apache/shardingsphere/infra/optimize/schema/CalciteLogicSchemaFactoryTest.java
@@ -0,0 +1,47 @@
+/*
+ * 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.optimize.schema;
+
+import org.apache.commons.collections4.map.LinkedMap;
+import org.apache.shardingsphere.infra.executor.sql.context.ExecutionContext;
+import org.apache.shardingsphere.infra.executor.sql.execute.engine.driver.jdbc.JDBCExecutor;
+import org.apache.shardingsphere.infra.metadata.ShardingSphereMetaData;
+import org.apache.shardingsphere.infra.optimize.schema.row.CalciteRowExecutor;
+import org.junit.Test;
+
+import java.util.Collections;
+import java.util.Map;
+
+import static org.junit.Assert.assertNotNull;
+import static org.mockito.Mockito.RETURNS_DEEP_STUBS;
+import static org.mockito.Mockito.mock;
+
+public final class CalciteLogicSchemaFactoryTest {
+
+    @Test
+    public void assertCreate() {
+        Map<String, ShardingSphereMetaData> metaDataMap = new LinkedMap<>();
+        metaDataMap.put("logic_db", mock(ShardingSphereMetaData.class, RETURNS_DEEP_STUBS));
+        CalciteLogicSchemaFactory calciteLogicSchemaFactory = new CalciteLogicSchemaFactory(metaDataMap);
+        JDBCExecutor jdbcExecutor = mock(JDBCExecutor.class);
+        ExecutionContext executionContext = mock(ExecutionContext.class);
+        CalciteRowExecutor calciteRowExecutor = new CalciteRowExecutor(Collections.EMPTY_LIST, 0, null, jdbcExecutor, executionContext, null);
+        CalciteLogicSchema logicDbExist = calciteLogicSchemaFactory.create("logic_db", calciteRowExecutor);
+        assertNotNull(logicDbExist);
+    }
+}