mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 15:21:53 +08:00
【同步】BOOT 和 CLOUD 的功能
This commit is contained in:
parent
2bbb7f86fe
commit
aa5f482357
@ -209,6 +209,13 @@ public class AdminAuthServiceImplTest extends BaseDbUnitTest {
|
||||
String mobile = randomString();
|
||||
String code = randomString();
|
||||
AuthSmsLoginReqVO reqVO = new AuthSmsLoginReqVO(mobile, code);
|
||||
// mock 方法(验证码)
|
||||
doNothing().when(smsCodeApi).useSmsCode((argThat(smsCodeUseReqDTO -> {
|
||||
assertEquals(mobile, smsCodeUseReqDTO.getMobile());
|
||||
assertEquals(code, smsCodeUseReqDTO.getCode());
|
||||
assertEquals(SmsSceneEnum.ADMIN_MEMBER_LOGIN.getScene(), smsCodeUseReqDTO.getScene());
|
||||
return true;
|
||||
})));
|
||||
// mock 方法(用户信息)
|
||||
AdminUserDO user = randomPojo(AdminUserDO.class, o -> o.setId(1L));
|
||||
when(userService.getUserByMobile(eq(mobile))).thenReturn(user);
|
||||
|
Loading…
Reference in New Issue
Block a user