dengzedong
2024-12-19 85b2001c0ec2f1adc598db3bf47ad457dcca7074
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package com.iailab.module.infra.service.demo;
 
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.mock.mockito.MockBean;
 
import javax.annotation.Resource;
 
import com.iailab.framework.test.core.ut.BaseDbUnitTest;
 
import com.iailab.module.infra.controller.admin.demo.vo.*;
import com.iailab.module.infra.dal.dataobject.demo.InfraCategoryDO;
import com.iailab.module.infra.dal.mysql.demo.InfraCategoryMapper;
import com.iailab.framework.common.pojo.PageResult;
 
import javax.annotation.Resource;
import org.springframework.context.annotation.Import;
import java.util.*;
import java.time.LocalDateTime;
 
import static cn.hutool.core.util.RandomUtil.*;
import static com.iailab.module.infra.enums.ErrorCodeConstants.*;
import static com.iailab.framework.test.core.util.AssertUtils.*;
import static com.iailab.framework.test.core.util.RandomUtils.*;
import static com.iailab.framework.common.util.date.LocalDateTimeUtils.*;
import static com.iailab.framework.common.util.object.ObjectUtils.*;
import static com.iailab.framework.common.util.date.DateUtils.*;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.Mockito.*;
 
/**
 * {@link InfraCategoryServiceImpl} 的单元测试类
 *
 * @author iailab
 */
@Import(InfraCategoryServiceImpl.class)
public class InfraCategoryServiceImplTest extends BaseDbUnitTest {
 
    @Resource
    private InfraCategoryServiceImpl categoryService;
 
    @Resource
    private InfraCategoryMapper categoryMapper;
 
    @Test
    public void testCreateCategory_success() {
        // 准备参数
        InfraCategorySaveReqVO createReqVO = randomPojo(InfraCategorySaveReqVO.class).setId(null);
 
        // 调用
        Long categoryId = categoryService.createCategory(createReqVO);
        // 断言
        assertNotNull(categoryId);
        // 校验记录的属性是否正确
        InfraCategoryDO category = categoryMapper.selectById(categoryId);
        assertPojoEquals(createReqVO, category, "id");
    }
 
    @Test
    public void testUpdateCategory_success() {
        // mock 数据
        InfraCategoryDO dbCategory = randomPojo(InfraCategoryDO.class);
        categoryMapper.insert(dbCategory);// @Sql: 先插入出一条存在的数据
        // 准备参数
        InfraCategorySaveReqVO updateReqVO = randomPojo(InfraCategorySaveReqVO.class, o -> {
            o.setId(dbCategory.getId()); // 设置更新的 ID
        });
 
        // 调用
        categoryService.updateCategory(updateReqVO);
        // 校验是否更新正确
        InfraCategoryDO category = categoryMapper.selectById(updateReqVO.getId()); // 获取最新的
        assertPojoEquals(updateReqVO, category);
    }
 
    @Test
    public void testUpdateCategory_notExists() {
        // 准备参数
        InfraCategorySaveReqVO updateReqVO = randomPojo(InfraCategorySaveReqVO.class);
 
        // 调用, 并断言异常
        assertServiceException(() -> categoryService.updateCategory(updateReqVO), CATEGORY_NOT_EXISTS);
    }
 
    @Test
    public void testDeleteCategory_success() {
        // mock 数据
        InfraCategoryDO dbCategory = randomPojo(InfraCategoryDO.class);
        categoryMapper.insert(dbCategory);// @Sql: 先插入出一条存在的数据
        // 准备参数
        Long id = dbCategory.getId();
 
        // 调用
        categoryService.deleteCategory(id);
       // 校验数据不存在了
       assertNull(categoryMapper.selectById(id));
    }
 
    @Test
    public void testDeleteCategory_notExists() {
        // 准备参数
        Long id = randomLongId();
 
        // 调用, 并断言异常
        assertServiceException(() -> categoryService.deleteCategory(id), CATEGORY_NOT_EXISTS);
    }
 
    @Test
    @Disabled  // TODO 请修改 null 为需要的值,然后删除 @Disabled 注解
    public void testGetCategoryList() {
       // mock 数据
       InfraCategoryDO dbCategory = randomPojo(InfraCategoryDO.class, o -> { // 等会查询到
           o.setName(null);
       });
       categoryMapper.insert(dbCategory);
       // 测试 name 不匹配
       categoryMapper.insert(cloneIgnoreId(dbCategory, o -> o.setName(null)));
       // 准备参数
       InfraCategoryListReqVO reqVO = new InfraCategoryListReqVO();
       reqVO.setName(null);
 
       // 调用
       List<InfraCategoryDO> list = categoryService.getCategoryList(reqVO);
       // 断言
       assertEquals(1, list.size());
       assertPojoEquals(dbCategory, list.get(0));
    }
 
}