多模块重构 13:修复各种单元测试的报错
parent
61672e0180
commit
1e2bcf9aca
2
pom.xml
2
pom.xml
|
@ -61,7 +61,7 @@
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>${maven-surefire-plugin.version}</version>
|
<version>${maven-surefire-plugin.version}</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!-- TODO 看看咋放到 bom 里 -->
|
<!-- maven-compiler-plugin 插件,解决 Lombok + MapStruct 组合 -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
|
|
@ -36,3 +36,6 @@ mybatis:
|
||||||
--- #################### 芋道相关配置 ####################
|
--- #################### 芋道相关配置 ####################
|
||||||
|
|
||||||
# 芋道配置项,设置当前项目所有自定义的配置
|
# 芋道配置项,设置当前项目所有自定义的配置
|
||||||
|
yudao:
|
||||||
|
info:
|
||||||
|
base-package: cn.iocoder.yudao.module
|
||||||
|
|
|
@ -103,26 +103,4 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<!-- 设置构建的 jar 包名 -->
|
|
||||||
<finalName>${artifactId}</finalName>
|
|
||||||
<plugins>
|
|
||||||
<!-- 打包 -->
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<fork>true</fork>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<goals>
|
|
||||||
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
@ -105,7 +105,7 @@ CREATE TABLE IF NOT EXISTS "infra_api_access_log" (
|
||||||
) COMMENT 'API 访问日志表';
|
) COMMENT 'API 访问日志表';
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS "infra_api_error_log" (
|
CREATE TABLE IF NOT EXISTS "infra_api_error_log" (
|
||||||
"id" integer not null GENERATED BY DEFAULT AS IDENTITY,
|
"id" bigint not null GENERATED BY DEFAULT AS IDENTITY,
|
||||||
"trace_id" varchar(64) not null,
|
"trace_id" varchar(64) not null,
|
||||||
"user_id" bigint not null default '0',
|
"user_id" bigint not null default '0',
|
||||||
"user_type" tinyint not null default '0',
|
"user_type" tinyint not null default '0',
|
||||||
|
|
|
@ -81,26 +81,4 @@
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<!-- 设置构建的 jar 包名 -->
|
|
||||||
<finalName>${artifactId}</finalName>
|
|
||||||
<plugins>
|
|
||||||
<!-- 打包 -->
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<fork>true</fork>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<goals>
|
|
||||||
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -78,26 +78,4 @@
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<!-- 设置构建的 jar 包名 -->
|
|
||||||
<finalName>${artifactId}</finalName>
|
|
||||||
<plugins>
|
|
||||||
<!-- 打包 -->
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<fork>true</fork>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<goals>
|
|
||||||
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -98,26 +98,4 @@
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<!-- 设置构建的 jar 包名 -->
|
|
||||||
<finalName>${artifactId}</finalName>
|
|
||||||
<plugins>
|
|
||||||
<!-- 打包 -->
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<fork>true</fork>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<goals>
|
|
||||||
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -79,26 +79,4 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<!-- 设置构建的 jar 包名 -->
|
|
||||||
<finalName>${artifactId}</finalName>
|
|
||||||
<plugins>
|
|
||||||
<!-- 打包 -->
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<fork>true</fork>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<goals>
|
|
||||||
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -5,8 +5,6 @@ import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
|
|
||||||
import java.util.Date;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 字典类型 DO
|
* 字典类型 DO
|
||||||
*
|
*
|
||||||
|
@ -46,25 +44,5 @@ public class TestDemoDO extends BaseDO {
|
||||||
* 备注
|
* 备注
|
||||||
*/
|
*/
|
||||||
private String remark;
|
private String remark;
|
||||||
/**
|
|
||||||
* 创建者
|
|
||||||
*/
|
|
||||||
private String creator;
|
|
||||||
/**
|
|
||||||
* 创建时间
|
|
||||||
*/
|
|
||||||
private Date createTime;
|
|
||||||
/**
|
|
||||||
* 更新者
|
|
||||||
*/
|
|
||||||
private String updater;
|
|
||||||
/**
|
|
||||||
* 更新时间
|
|
||||||
*/
|
|
||||||
private Date updateTime;
|
|
||||||
/**
|
|
||||||
* 是否删除
|
|
||||||
*/
|
|
||||||
private Boolean deleted;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package cn.iocoder.yudao.module.tool.service.codegen.inner;
|
package cn.iocoder.yudao.module.tool.service.codegen.inner;
|
||||||
|
|
||||||
import cn.hutool.core.map.MapUtil;
|
import cn.hutool.core.map.MapUtil;
|
||||||
|
import cn.hutool.core.util.ReflectUtil;
|
||||||
import cn.hutool.core.util.StrUtil;
|
import cn.hutool.core.util.StrUtil;
|
||||||
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
|
||||||
import cn.iocoder.yudao.framework.tenant.core.db.TenantBaseDO;
|
import cn.iocoder.yudao.framework.tenant.core.db.TenantBaseDO;
|
||||||
import cn.iocoder.yudao.module.tool.convert.codegen.CodegenConvert;
|
import cn.iocoder.yudao.module.tool.convert.codegen.CodegenConvert;
|
||||||
import cn.iocoder.yudao.module.tool.dal.dataobject.codegen.CodegenColumnDO;
|
import cn.iocoder.yudao.module.tool.dal.dataobject.codegen.CodegenColumnDO;
|
||||||
|
@ -96,7 +96,7 @@ public class CodegenBuilder {
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
static {
|
static {
|
||||||
Arrays.stream(TenantBaseDO.class.getDeclaredFields()).forEach(field -> BASE_DO_FIELDS.add(field.getName()));
|
Arrays.stream(ReflectUtil.getFields(TenantBaseDO.class)).forEach(field -> BASE_DO_FIELDS.add(field.getName()));
|
||||||
// 处理 OPERATION 相关的字段
|
// 处理 OPERATION 相关的字段
|
||||||
CREATE_OPERATION_EXCLUDE_COLUMN.addAll(BASE_DO_FIELDS);
|
CREATE_OPERATION_EXCLUDE_COLUMN.addAll(BASE_DO_FIELDS);
|
||||||
UPDATE_OPERATION_EXCLUDE_COLUMN.addAll(BASE_DO_FIELDS);
|
UPDATE_OPERATION_EXCLUDE_COLUMN.addAll(BASE_DO_FIELDS);
|
||||||
|
|
|
@ -1,34 +1,34 @@
|
||||||
package cn.iocoder.yudao.module.tool.service.test;
|
package cn.iocoder.yudao.module.tool.service.test;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
||||||
import org.springframework.boot.test.mock.mockito.MockBean;
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
|
import cn.iocoder.yudao.framework.common.util.date.DateUtils;
|
||||||
import javax.annotation.Resource;
|
import cn.iocoder.yudao.module.tool.controller.admin.test.vo.TestDemoCreateReqVO;
|
||||||
|
import cn.iocoder.yudao.module.tool.controller.admin.test.vo.TestDemoExportReqVO;
|
||||||
import cn.iocoder.yudao.module.tool.test.BaseDbUnitTest;
|
import cn.iocoder.yudao.module.tool.controller.admin.test.vo.TestDemoPageReqVO;
|
||||||
import cn.iocoder.yudao.module.tool.controller.admin.test.vo.*;
|
import cn.iocoder.yudao.module.tool.controller.admin.test.vo.TestDemoUpdateReqVO;
|
||||||
import cn.iocoder.yudao.module.tool.dal.dataobject.test.TestDemoDO;
|
import cn.iocoder.yudao.module.tool.dal.dataobject.test.TestDemoDO;
|
||||||
import cn.iocoder.yudao.module.tool.dal.mysql.test.TestDemoMapper;
|
import cn.iocoder.yudao.module.tool.dal.mysql.test.TestDemoMapper;
|
||||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
import cn.iocoder.yudao.module.tool.test.BaseDbUnitTest;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.springframework.context.annotation.Import;
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
import org.springframework.context.annotation.Import;
|
import java.util.List;
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
import static cn.hutool.core.util.RandomUtil.*;
|
import static cn.iocoder.yudao.framework.common.util.object.ObjectUtils.cloneIgnoreId;
|
||||||
import static cn.iocoder.yudao.module.tool.enums.ErrorCodeConstants.*;
|
import static cn.iocoder.yudao.framework.test.core.util.AssertUtils.assertPojoEquals;
|
||||||
import static cn.iocoder.yudao.framework.test.core.util.AssertUtils.*;
|
import static cn.iocoder.yudao.framework.test.core.util.AssertUtils.assertServiceException;
|
||||||
import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.*;
|
import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.randomLongId;
|
||||||
import static cn.iocoder.yudao.framework.common.util.object.ObjectUtils.*;
|
import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.randomPojo;
|
||||||
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.*;
|
import static cn.iocoder.yudao.module.tool.enums.ErrorCodeConstants.TEST_DEMO_NOT_EXISTS;
|
||||||
import static org.junit.jupiter.api.Assertions.*;
|
import static org.junit.jupiter.api.Assertions.*;
|
||||||
import static org.mockito.Mockito.*;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link TestDemoServiceImpl} 的单元测试类
|
* {@link TestDemoServiceImpl} 的单元测试类
|
||||||
*
|
*
|
||||||
* @author 芋道源码
|
* @author 芋道源码
|
||||||
*/
|
*/
|
||||||
@Import(TestDemoServiceImpl.class)
|
@Import(TestDemoServiceImpl.class)
|
||||||
public class TestDemoServiceImplTest extends BaseDbUnitTest {
|
public class TestDemoServiceImplTest extends BaseDbUnitTest {
|
||||||
|
|
||||||
|
@ -88,8 +88,8 @@ public class TestDemoServiceImplTest extends BaseDbUnitTest {
|
||||||
|
|
||||||
// 调用
|
// 调用
|
||||||
testDemoService.deleteTestDemo(id);
|
testDemoService.deleteTestDemo(id);
|
||||||
// 校验数据不存在了
|
// 校验数据不存在了
|
||||||
assertNull(testDemoMapper.selectById(id));
|
assertNull(testDemoMapper.selectById(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@ -101,87 +101,87 @@ public class TestDemoServiceImplTest extends BaseDbUnitTest {
|
||||||
assertServiceException(() -> testDemoService.deleteTestDemo(id), TEST_DEMO_NOT_EXISTS);
|
assertServiceException(() -> testDemoService.deleteTestDemo(id), TEST_DEMO_NOT_EXISTS);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test // TODO 请修改 null 为需要的值
|
@Test
|
||||||
public void testGetTestDemoPage() {
|
public void testGetTestDemoPage() {
|
||||||
// mock 数据
|
// mock 数据
|
||||||
TestDemoDO dbTestDemo = randomPojo(TestDemoDO.class, o -> { // 等会查询到
|
TestDemoDO dbTestDemo = randomPojo(TestDemoDO.class, o -> { // 等会查询到
|
||||||
o.setName(null);
|
o.setName("芋道源码");
|
||||||
o.setStatus(null);
|
o.setStatus(CommonStatusEnum.ENABLE.getStatus());
|
||||||
o.setType(null);
|
o.setType(1);
|
||||||
o.setCategory(null);
|
o.setCategory(2);
|
||||||
o.setRemark(null);
|
o.setRemark("哈哈哈");
|
||||||
o.setCreateTime(null);
|
o.setCreateTime(DateUtils.buildTime(2021, 11, 11));
|
||||||
});
|
});
|
||||||
testDemoMapper.insert(dbTestDemo);
|
testDemoMapper.insert(dbTestDemo);
|
||||||
// 测试 name 不匹配
|
// 测试 name 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setName(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setName("不匹配")));
|
||||||
// 测试 status 不匹配
|
// 测试 status 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setStatus(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setStatus(CommonStatusEnum.DISABLE.getStatus())));
|
||||||
// 测试 type 不匹配
|
// 测试 type 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setType(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setType(2)));
|
||||||
// 测试 category 不匹配
|
// 测试 category 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setCategory(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setCategory(1)));
|
||||||
// 测试 remark 不匹配
|
// 测试 remark 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setRemark(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setRemark("呵呵呵")));
|
||||||
// 测试 createTime 不匹配
|
// 测试 createTime 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setCreateTime(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setCreateTime(DateUtils.buildTime(2021, 12, 12))));
|
||||||
// 准备参数
|
// 准备参数
|
||||||
TestDemoPageReqVO reqVO = new TestDemoPageReqVO();
|
TestDemoPageReqVO reqVO = new TestDemoPageReqVO();
|
||||||
reqVO.setName(null);
|
reqVO.setName("芋道");
|
||||||
reqVO.setStatus(null);
|
reqVO.setStatus(CommonStatusEnum.ENABLE.getStatus());
|
||||||
reqVO.setType(null);
|
reqVO.setType(1);
|
||||||
reqVO.setCategory(null);
|
reqVO.setCategory(2);
|
||||||
reqVO.setRemark(null);
|
reqVO.setRemark("哈哈哈");
|
||||||
reqVO.setBeginCreateTime(null);
|
reqVO.setBeginCreateTime(DateUtils.buildTime(2021, 11, 10));
|
||||||
reqVO.setEndCreateTime(null);
|
reqVO.setEndCreateTime(DateUtils.buildTime(2021, 11, 12));
|
||||||
|
|
||||||
// 调用
|
// 调用
|
||||||
PageResult<TestDemoDO> pageResult = testDemoService.getTestDemoPage(reqVO);
|
PageResult<TestDemoDO> pageResult = testDemoService.getTestDemoPage(reqVO);
|
||||||
// 断言
|
// 断言
|
||||||
assertEquals(1, pageResult.getTotal());
|
assertEquals(1, pageResult.getTotal());
|
||||||
assertEquals(1, pageResult.getList().size());
|
assertEquals(1, pageResult.getList().size());
|
||||||
assertPojoEquals(dbTestDemo, pageResult.getList().get(0));
|
assertPojoEquals(dbTestDemo, pageResult.getList().get(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test // TODO 请修改 null 为需要的值
|
@Test
|
||||||
public void testGetTestDemoList() {
|
public void testGetTestDemoList() {
|
||||||
// mock 数据
|
// mock 数据
|
||||||
TestDemoDO dbTestDemo = randomPojo(TestDemoDO.class, o -> { // 等会查询到
|
TestDemoDO dbTestDemo = randomPojo(TestDemoDO.class, o -> { // 等会查询到
|
||||||
o.setName(null);
|
o.setName("芋道源码");
|
||||||
o.setStatus(null);
|
o.setStatus(CommonStatusEnum.ENABLE.getStatus());
|
||||||
o.setType(null);
|
o.setType(1);
|
||||||
o.setCategory(null);
|
o.setCategory(2);
|
||||||
o.setRemark(null);
|
o.setRemark("哈哈哈");
|
||||||
o.setCreateTime(null);
|
o.setCreateTime(DateUtils.buildTime(2021, 11, 11));
|
||||||
});
|
});
|
||||||
testDemoMapper.insert(dbTestDemo);
|
testDemoMapper.insert(dbTestDemo);
|
||||||
// 测试 name 不匹配
|
// 测试 name 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setName(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setName("不匹配")));
|
||||||
// 测试 status 不匹配
|
// 测试 status 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setStatus(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setStatus(CommonStatusEnum.DISABLE.getStatus())));
|
||||||
// 测试 type 不匹配
|
// 测试 type 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setType(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setType(2)));
|
||||||
// 测试 category 不匹配
|
// 测试 category 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setCategory(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setCategory(1)));
|
||||||
// 测试 remark 不匹配
|
// 测试 remark 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setRemark(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setRemark("呵呵呵")));
|
||||||
// 测试 createTime 不匹配
|
// 测试 createTime 不匹配
|
||||||
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setCreateTime(null)));
|
testDemoMapper.insert(cloneIgnoreId(dbTestDemo, o -> o.setCreateTime(DateUtils.buildTime(2021, 12, 12))));
|
||||||
// 准备参数
|
// 准备参数
|
||||||
TestDemoExportReqVO reqVO = new TestDemoExportReqVO();
|
TestDemoExportReqVO reqVO = new TestDemoExportReqVO();
|
||||||
reqVO.setName(null);
|
reqVO.setName("芋道");
|
||||||
reqVO.setStatus(null);
|
reqVO.setStatus(CommonStatusEnum.ENABLE.getStatus());
|
||||||
reqVO.setType(null);
|
reqVO.setType(1);
|
||||||
reqVO.setCategory(null);
|
reqVO.setCategory(2);
|
||||||
reqVO.setRemark(null);
|
reqVO.setRemark("哈哈哈");
|
||||||
reqVO.setBeginCreateTime(null);
|
reqVO.setBeginCreateTime(DateUtils.buildTime(2021, 11, 10));
|
||||||
reqVO.setEndCreateTime(null);
|
reqVO.setEndCreateTime(DateUtils.buildTime(2021, 11, 12));
|
||||||
|
|
||||||
// 调用
|
// 调用
|
||||||
List<TestDemoDO> list = testDemoService.getTestDemoList(reqVO);
|
List<TestDemoDO> list = testDemoService.getTestDemoList(reqVO);
|
||||||
// 断言
|
// 断言
|
||||||
assertEquals(1, list.size());
|
assertEquals(1, list.size());
|
||||||
assertPojoEquals(dbTestDemo, list.get(0));
|
assertPojoEquals(dbTestDemo, list.get(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue