|
@@ -1,5 +1,7 @@
|
|
|
package cn.iocoder.yudao.module.infra.service.db;
|
|
|
|
|
|
+import cn.hutool.core.util.ReflectUtil;
|
|
|
+import cn.iocoder.yudao.framework.mybatis.core.type.EncryptTypeHandler;
|
|
|
import cn.iocoder.yudao.framework.mybatis.core.util.JdbcUtils;
|
|
|
import cn.iocoder.yudao.framework.test.core.ut.BaseDbUnitTest;
|
|
|
import cn.iocoder.yudao.module.infra.controller.admin.db.vo.DataSourceConfigCreateReqVO;
|
|
@@ -8,8 +10,10 @@ import cn.iocoder.yudao.module.infra.dal.dataobject.db.DataSourceConfigDO;
|
|
|
import cn.iocoder.yudao.module.infra.dal.mysql.db.DataSourceConfigMapper;
|
|
|
import com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties;
|
|
|
import org.jasypt.encryption.StringEncryptor;
|
|
|
+import org.junit.jupiter.api.BeforeEach;
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
import org.mockito.MockedStatic;
|
|
|
+import org.mockito.stubbing.Answer;
|
|
|
import org.springframework.boot.test.mock.mockito.MockBean;
|
|
|
import org.springframework.context.annotation.Import;
|
|
|
|
|
@@ -21,7 +25,10 @@ import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.randomLongId
|
|
|
import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.randomPojo;
|
|
|
import static cn.iocoder.yudao.module.infra.enums.ErrorCodeConstants.DATA_SOURCE_CONFIG_NOT_EXISTS;
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
-import static org.mockito.Mockito.*;
|
|
|
+import static org.mockito.ArgumentMatchers.anyString;
|
|
|
+import static org.mockito.ArgumentMatchers.eq;
|
|
|
+import static org.mockito.Mockito.mockStatic;
|
|
|
+import static org.mockito.Mockito.when;
|
|
|
|
|
|
/**
|
|
|
* {@link DataSourceConfigServiceImpl} 的单元测试类
|
|
@@ -43,13 +50,20 @@ public class DataSourceConfigServiceImplTest extends BaseDbUnitTest {
|
|
|
@MockBean
|
|
|
private DynamicDataSourceProperties dynamicDataSourceProperties;
|
|
|
|
|
|
+ @BeforeEach
|
|
|
+ public void setUp() {
|
|
|
+ // mock 一个空实现的 StringEncryptor,避免 EncryptTypeHandler 报错
|
|
|
+ ReflectUtil.setFieldValue(EncryptTypeHandler.class, "encryptor", stringEncryptor);
|
|
|
+ when(stringEncryptor.encrypt(anyString())).then((Answer<String>) invocation -> invocation.getArgument(0));
|
|
|
+ when(stringEncryptor.decrypt(anyString())).then((Answer<String>) invocation -> invocation.getArgument(0));
|
|
|
+ }
|
|
|
+
|
|
|
@Test
|
|
|
public void testCreateDataSourceConfig_success() {
|
|
|
try (MockedStatic<JdbcUtils> databaseUtilsMock = mockStatic(JdbcUtils.class)) {
|
|
|
// 准备参数
|
|
|
DataSourceConfigCreateReqVO reqVO = randomPojo(DataSourceConfigCreateReqVO.class);
|
|
|
// mock 方法
|
|
|
- when(stringEncryptor.encrypt(eq(reqVO.getPassword()))).thenReturn("123456");
|
|
|
databaseUtilsMock.when(() -> JdbcUtils.isConnectionOK(eq(reqVO.getUrl()),
|
|
|
eq(reqVO.getUsername()), eq(reqVO.getPassword()))).thenReturn(true);
|
|
|
|
|
@@ -59,8 +73,7 @@ public class DataSourceConfigServiceImplTest extends BaseDbUnitTest {
|
|
|
assertNotNull(dataSourceConfigId);
|
|
|
// 校验记录的属性是否正确
|
|
|
DataSourceConfigDO dataSourceConfig = dataSourceConfigMapper.selectById(dataSourceConfigId);
|
|
|
- assertPojoEquals(reqVO, dataSourceConfig, "password");
|
|
|
- assertEquals("123456", dataSourceConfig.getPassword());
|
|
|
+ assertPojoEquals(reqVO, dataSourceConfig);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -75,7 +88,7 @@ public class DataSourceConfigServiceImplTest extends BaseDbUnitTest {
|
|
|
o.setId(dbDataSourceConfig.getId()); // 设置更新的 ID
|
|
|
});
|
|
|
// mock 方法
|
|
|
- when(stringEncryptor.encrypt(eq(reqVO.getPassword()))).thenReturn("123456");
|
|
|
+// when(stringEncryptor.encrypt(eq(reqVO.getPassword()))).thenReturn("123456");
|
|
|
databaseUtilsMock.when(() -> JdbcUtils.isConnectionOK(eq(reqVO.getUrl()),
|
|
|
eq(reqVO.getUsername()), eq(reqVO.getPassword()))).thenReturn(true);
|
|
|
|
|
@@ -83,8 +96,7 @@ public class DataSourceConfigServiceImplTest extends BaseDbUnitTest {
|
|
|
dataSourceConfigService.updateDataSourceConfig(reqVO);
|
|
|
// 校验是否更新正确
|
|
|
DataSourceConfigDO dataSourceConfig = dataSourceConfigMapper.selectById(reqVO.getId()); // 获取最新的
|
|
|
- assertPojoEquals(reqVO, dataSourceConfig, "password");
|
|
|
- assertEquals("123456", dataSourceConfig.getPassword());
|
|
|
+ assertPojoEquals(reqVO, dataSourceConfig);
|
|
|
}
|
|
|
}
|
|
|
|