From ba5794406301cd22d53a7125a161b48a33b017c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E6=99=93=E5=8F=8C=20Li=20Xiao=20Shuang?= <644968328@qq.com> Date: Thu, 10 Nov 2022 15:11:42 +0800 Subject: [PATCH] Add unit tests to TeantInfoMapperByMySql class (#9532) --- .../mysql/TenantInfoMapperByMySqlTest.java | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 plugin/datasource/src/test/java/com/alibaba/nacos/plugin/datasource/impl/mysql/TenantInfoMapperByMySqlTest.java diff --git a/plugin/datasource/src/test/java/com/alibaba/nacos/plugin/datasource/impl/mysql/TenantInfoMapperByMySqlTest.java b/plugin/datasource/src/test/java/com/alibaba/nacos/plugin/datasource/impl/mysql/TenantInfoMapperByMySqlTest.java new file mode 100644 index 000000000..566545931 --- /dev/null +++ b/plugin/datasource/src/test/java/com/alibaba/nacos/plugin/datasource/impl/mysql/TenantInfoMapperByMySqlTest.java @@ -0,0 +1,45 @@ +/* + * Copyright 1999-2022 Alibaba Group Holding Ltd. + * + * Licensed 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 com.alibaba.nacos.plugin.datasource.impl.mysql; + +import com.alibaba.nacos.plugin.datasource.constants.DataSourceConstant; +import com.alibaba.nacos.plugin.datasource.constants.TableConstant; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class TenantInfoMapperByMySqlTest { + + private TenantInfoMapperByMySql tenantInfoMapperByMySql; + + @Before + public void setUp() throws Exception { + tenantInfoMapperByMySql = new TenantInfoMapperByMySql(); + } + + @Test + public void testGetTableName() { + String tableName = tenantInfoMapperByMySql.getTableName(); + Assert.assertEquals(tableName, TableConstant.TENANT_INFO); + } + + @Test + public void testGetDataSource() { + String dataSource = tenantInfoMapperByMySql.getDataSource(); + Assert.assertEquals(dataSource, DataSourceConstant.MYSQL); + } +} \ No newline at end of file