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 4d05c6d  Add test case for DataSourcePoolMetaDataFactory (#14994)
4d05c6d is described below

commit 4d05c6d1df5aa6e99b5f025a6e86c0db68c247c6
Author: liguoping <[email protected]>
AuthorDate: Sun Jan 23 01:41:55 2022 +0800

    Add test case for DataSourcePoolMetaDataFactory (#14994)
    
    * Add test case for DataSourcePoolMetaDataFactory
    
    * update
---
 .../DataSourcePoolMetaDataFactoryTest.java         | 41 ++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git 
a/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/datasource/pool/metadata/DataSourcePoolMetaDataFactoryTest.java
 
b/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/datasource/pool/metadata/DataSourcePoolMetaDataFactoryTest.java
new file mode 100644
index 0000000..9e689ce
--- /dev/null
+++ 
b/shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/datasource/pool/metadata/DataSourcePoolMetaDataFactoryTest.java
@@ -0,0 +1,41 @@
+/*
+ * 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.datasource.pool.metadata;
+
+import com.zaxxer.hikari.HikariDataSource;
+import 
org.apache.shardingsphere.infra.datasource.pool.metadata.impl.DefaultDataSourcePoolMetaData;
+import 
org.apache.shardingsphere.infra.datasource.pool.metadata.impl.HikariDataSourcePoolMetaData;
+import org.junit.Test;
+
+import static org.hamcrest.CoreMatchers.instanceOf;
+import static org.junit.Assert.assertThat;
+
+public final class DataSourcePoolMetaDataFactoryTest {
+    
+    @Test
+    public void assertDefaultInstance() {
+        DataSourcePoolMetaData defaultDataSourcePoolMetaData = 
DataSourcePoolMetaDataFactory.newInstance("");
+        assertThat(defaultDataSourcePoolMetaData, 
instanceOf(DefaultDataSourcePoolMetaData.class));
+    }
+    
+    @Test
+    public void assertHikariInstance() {
+        DataSourcePoolMetaData hikariDataSourcePoolMetaData = 
DataSourcePoolMetaDataFactory.newInstance(HikariDataSource.class.getCanonicalName());
+        assertThat(hikariDataSourcePoolMetaData, 
instanceOf(HikariDataSourcePoolMetaData.class));
+    }
+}

Reply via email to