[update]user server模块新增测试,修改部分接口规范问题
parent
5193de7c56
commit
f4a5a139b5
@ -1,4 +1,4 @@
|
|||||||
package cn.iocoder.yudao.coreservice.modules.infra.controller.file.vo;
|
package cn.iocoder.yudao.adminserver.modules.infra.controller.file.vo;
|
||||||
|
|
||||||
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
||||||
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModel;
|
||||||
@ -0,0 +1,24 @@
|
|||||||
|
package cn.iocoder.yudao.adminserver.modules.infra.dal.mysql.file;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.adminserver.modules.infra.controller.file.vo.InfFilePageReqVO;
|
||||||
|
import cn.iocoder.yudao.coreservice.modules.infra.dal.dataobject.file.InfFileDO;
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.query.QueryWrapperX;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* admin 文件操作 Mapper
|
||||||
|
*
|
||||||
|
* @author 芋道源码
|
||||||
|
*/
|
||||||
|
@Mapper
|
||||||
|
public interface InfFileMapper extends BaseMapperX<InfFileDO> {
|
||||||
|
default PageResult<InfFileDO> selectPage(InfFilePageReqVO reqVO) {
|
||||||
|
return selectPage(reqVO, new QueryWrapperX<InfFileDO>()
|
||||||
|
.likeIfPresent("id", reqVO.getId())
|
||||||
|
.likeIfPresent("type", reqVO.getType())
|
||||||
|
.betweenIfPresent("create_time", reqVO.getBeginCreateTime(), reqVO.getEndCreateTime())
|
||||||
|
.orderByDesc("create_time"));
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,107 @@
|
|||||||
|
package cn.iocoder.yudao.userserver.modules.member.service;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.coreservice.modules.infra.service.file.InfFileCoreService;
|
||||||
|
import cn.iocoder.yudao.coreservice.modules.member.dal.dataobject.user.MbrUserDO;
|
||||||
|
import cn.iocoder.yudao.coreservice.modules.system.dal.dataobject.user.SysUserDO;
|
||||||
|
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
||||||
|
import cn.iocoder.yudao.framework.common.util.collection.ArrayUtils;
|
||||||
|
import cn.iocoder.yudao.userserver.BaseDbUnitTest;
|
||||||
|
import cn.iocoder.yudao.userserver.modules.member.controller.user.vo.MbrUserInfoRespVO;
|
||||||
|
import cn.iocoder.yudao.userserver.modules.member.dal.mysql.user.MbrUserMapper;
|
||||||
|
import cn.iocoder.yudao.userserver.modules.member.service.user.impl.MbrUserServiceImpl;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.springframework.boot.test.mock.mockito.MockBean;
|
||||||
|
import org.springframework.context.annotation.Import;
|
||||||
|
import org.springframework.http.MediaType;
|
||||||
|
import org.springframework.mock.web.MockMultipartFile;
|
||||||
|
import org.springframework.security.crypto.password.PasswordEncoder;
|
||||||
|
import org.springframework.util.Assert;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import java.io.*;
|
||||||
|
import java.util.function.Consumer;
|
||||||
|
|
||||||
|
import static cn.hutool.core.util.RandomUtil.randomBytes;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
import static cn.hutool.core.util.RandomUtil.randomEle;
|
||||||
|
import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.randomPojo;
|
||||||
|
import static cn.iocoder.yudao.framework.test.core.util.RandomUtils.randomString;
|
||||||
|
import static org.mockito.Mockito.*;
|
||||||
|
/**
|
||||||
|
* {@link MbrUserServiceImpl} 的单元测试类
|
||||||
|
*
|
||||||
|
* @author 宋天
|
||||||
|
*/
|
||||||
|
@Import(MbrUserServiceImpl.class)
|
||||||
|
public class MbrUserServiceImplTest extends BaseDbUnitTest {
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private MbrUserServiceImpl mbrUserService;
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private MbrUserMapper userMapper;
|
||||||
|
|
||||||
|
@MockBean
|
||||||
|
private InfFileCoreService fileCoreService;
|
||||||
|
|
||||||
|
@MockBean
|
||||||
|
private PasswordEncoder passwordEncoder;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testUpdateNickName_success(){
|
||||||
|
// mock 数据
|
||||||
|
MbrUserDO userDO = randomMbrUserDO();
|
||||||
|
userMapper.insert(userDO);
|
||||||
|
|
||||||
|
// 随机昵称
|
||||||
|
String newNickName = randomString();
|
||||||
|
|
||||||
|
// 调用接口修改昵称
|
||||||
|
mbrUserService.updateNickname(userDO.getId(),newNickName);
|
||||||
|
// 查询新修改后的昵称
|
||||||
|
String nickname = mbrUserService.getUser(userDO.getId()).getNickname();
|
||||||
|
// 断言
|
||||||
|
assertEquals(newNickName,nickname);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetUserInfo_success(){
|
||||||
|
// mock 数据
|
||||||
|
MbrUserDO userDO = randomMbrUserDO();
|
||||||
|
userMapper.insert(userDO);
|
||||||
|
|
||||||
|
// 查询用户昵称与头像
|
||||||
|
MbrUserInfoRespVO userInfo = mbrUserService.getUserInfo(userDO.getId());
|
||||||
|
System.out.println(userInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testUpdateAvatar_success(){
|
||||||
|
// mock 数据
|
||||||
|
MbrUserDO dbUser = randomMbrUserDO();
|
||||||
|
userMapper.insert(dbUser);
|
||||||
|
|
||||||
|
// 准备参数
|
||||||
|
Long userId = dbUser.getId();
|
||||||
|
byte[] avatarFileBytes = randomBytes(10);
|
||||||
|
ByteArrayInputStream avatarFile = new ByteArrayInputStream(avatarFileBytes);
|
||||||
|
// mock 方法
|
||||||
|
String avatar = randomString();
|
||||||
|
when(fileCoreService.createFile(anyString(), eq(avatarFileBytes))).thenReturn(avatar);
|
||||||
|
// 调用
|
||||||
|
String str = mbrUserService.updateAvatar(userId, avatarFile);
|
||||||
|
// 断言
|
||||||
|
assertEquals(avatar, str);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========== 随机对象 ==========
|
||||||
|
|
||||||
|
@SafeVarargs
|
||||||
|
private static MbrUserDO randomMbrUserDO(Consumer<MbrUserDO>... consumers) {
|
||||||
|
Consumer<MbrUserDO> consumer = (o) -> {
|
||||||
|
o.setStatus(randomEle(CommonStatusEnum.values()).getStatus()); // 保证 status 的范围
|
||||||
|
};
|
||||||
|
return randomPojo(MbrUserDO.class, ArrayUtils.append(consumer, consumers));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
@ -0,0 +1,4 @@
|
|||||||
|
<configuration>
|
||||||
|
<!-- 引用 Spring Boot 的 logback 基础配置 -->
|
||||||
|
<include resource="org/springframework/boot/logging/logback/defaults.xml" />
|
||||||
|
</configuration>
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
-- mbr 开头的 DB
|
||||||
|
DELETE FROM "mbr_user";
|
||||||
@ -0,0 +1,32 @@
|
|||||||
|
-- mbr 开头的 DB
|
||||||
|
CREATE TABLE IF NOT EXISTS "mbr_user" (
|
||||||
|
"id" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY COMMENT '编号',
|
||||||
|
"nickname" varchar(30) NOT NULL DEFAULT '' COMMENT '用户昵称',
|
||||||
|
"avatar" varchar(255) NOT NULL DEFAULT '' COMMENT '头像',
|
||||||
|
"status" tinyint NOT NULL COMMENT '状态',
|
||||||
|
"mobile" varchar(11) NOT NULL COMMENT '手机号',
|
||||||
|
"password" varchar(100) NOT NULL DEFAULT '' COMMENT '密码',
|
||||||
|
"register_ip" varchar(32) NOT NULL COMMENT '注册 IP',
|
||||||
|
"login_ip" varchar(50) NULL DEFAULT '' COMMENT '最后登录IP',
|
||||||
|
"login_date" datetime NULL DEFAULT NULL COMMENT '最后登录时间',
|
||||||
|
"creator" varchar(64) NULL DEFAULT '' COMMENT '创建者',
|
||||||
|
"create_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||||
|
"updater" varchar(64) NULL DEFAULT '' COMMENT '更新者',
|
||||||
|
"update_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
|
||||||
|
"deleted" bit(1) NOT NULL DEFAULT '0' COMMENT '是否删除',
|
||||||
|
PRIMARY KEY ("id")
|
||||||
|
) COMMENT '会员表';
|
||||||
|
|
||||||
|
-- inf 开头的 DB
|
||||||
|
CREATE TABLE IF NOT EXISTS "inf_file" (
|
||||||
|
"id" varchar(188) NOT NULL,
|
||||||
|
"type" varchar(63) DEFAULT NULL,
|
||||||
|
"content" blob NOT NULL,
|
||||||
|
"creator" varchar(64) DEFAULT '',
|
||||||
|
"create_time" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
"updater" varchar(64) DEFAULT '',
|
||||||
|
"update_time" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
"deleted" bit NOT NULL DEFAULT FALSE,
|
||||||
|
PRIMARY KEY ("id")
|
||||||
|
) COMMENT '文件表';
|
||||||
|
|
||||||
Loading…
Reference in New Issue