Search in sources :

Example 1 with ApplicationValidationException

use of com.stardata.starshop2.sharedcontext.exception.ApplicationValidationException in project starshop by beautautumn.

the class StarshopAuthDecryptingTests method should_throw_exception_given_not_exists_user_and_correct_encrypted_data_iv_by_domain_service.

// 1.2. 系统中不存在该用户,解密报业务异常 ApplicationValidationException
@Test
@Transactional
@Rollback(true)
void should_throw_exception_given_not_exists_user_and_correct_encrypted_data_iv_by_domain_service() {
    // given: 正确的加密数据encryptedData、iv,不存在的userId
    String code = "011NXJ000zQ8VN1iJZ000DWjjS2NXJ0e";
    String rawData = "{\"nickName\":\"深清秋\",\"gender\":0,\"language\":\"zh_CN\",\"city\":\"\",\"province\":\"\",\"country\":\"\",\"avatarUrl\":\"https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKq2CRmib1mpu4hOFYtcIHgAmS7DicCEfYkUHoPmPQn74BXH5GerjoMOxIqib7iafNNBw2ZAicBj6gZGUQ/132\"}";
    String signature = "3901b7322c7920ef4a5077eeba54b0d633585eef";
    WxAuthInfo wxAuthInfo = new WxAuthInfo(rawData, signature);
    User requestUser = User.of("深清秋", 1).avatarUrl("https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKq2CRmib1mpu4hOFYtcIHgAmS7DicCEfYkUHoPmPQn74BXH5GerjoMOxIqib7iafNNBw2ZAicBj6gZGUQ/132").country("中国").province("江苏").city("南京").language("zh_CN");
    User user = loginWithTokenService.loginWithToken(code, wxAuthInfo, requestUser);
    userRepository.add(user);
    entityManager.flush();
    LongIdentity userId = LongIdentity.snowflakeId();
    String encryptedData = "NkSHcnyy8jJZwvsTBpb8Kw7jKIdYz1UnVqJ9Gf2NGFAn3DEeObh7W2Vh5hlgvs5zvtfNsV/IW+oHxEtzN4DY1E/tsGWnhiZYN+pYQun/8gNPrUNsjlR8saZIYoTGNcKpchNp+QEPzP/JFtGqIH+Etpk11RVRWepNJdYNzG3aNLUVmYQRqgCom7kYRrbM7g7GDu/jnqzvMn65ps48GawfQA==";
    String iv = "S2r8F/Gr0aUEs7BoerD5ZQ==";
    try {
        // when: 解密手机号
        MobileNumber mobileNumber = mobileNumberDecryptingService.decryptWxMobileNumber(userId, encryptedData, iv);
        // 下面这些不应该被执行到
        userRepository.update(user);
        entityManager.flush();
        User loadedUser = userRepository.instanceOf(userId);
        // then: 判定解密手机号是否正确
        assertNotNull(mobileNumber);
        assertEquals(mobileNumber.value(), "18652012976");
        assertEquals(loadedUser.getMobileNumber().value(), "18652012976");
    } catch (ApplicationValidationException e) {
        assertNotNull(e);
        assertEquals(e.getErrCode(), ApplicationValidationException.INVALID_REQUEST_ENTITY);
    }
}
Also used : MobileNumber(com.stardata.starshop2.sharedcontext.domain.MobileNumber) SessionUser(com.stardata.starshop2.sharedcontext.pl.SessionUser) User(com.stardata.starshop2.authcontext.domain.user.User) ApplicationValidationException(com.stardata.starshop2.sharedcontext.exception.ApplicationValidationException) WxAuthInfo(com.stardata.starshop2.authcontext.domain.user.WxAuthInfo) LongIdentity(com.stardata.starshop2.sharedcontext.domain.LongIdentity) Test(org.junit.jupiter.api.Test) SpringBootTest(org.springframework.boot.test.context.SpringBootTest) Rollback(org.springframework.test.annotation.Rollback) Transactional(jakarta.transaction.Transactional)

Example 2 with ApplicationValidationException

use of com.stardata.starshop2.sharedcontext.exception.ApplicationValidationException in project starshop by beautautumn.

the class StarshopAuthDecryptingTests method should_throw_exception_given_exists_user_and_incorrect_encrypted_data_iv_by_domain_service.

// 1.3. 加密数据encryptedData、iv内容不合格,解密报业务异常 ApplicationValidationException
@Test
@Transactional
@Rollback(true)
void should_throw_exception_given_exists_user_and_incorrect_encrypted_data_iv_by_domain_service() {
    // given: 正常的已有用户,不正确的加密数据encryptedData、iv
    String code = "011NXJ000zQ8VN1iJZ000DWjjS2NXJ0e";
    String rawData = "{\"nickName\":\"深清秋\",\"gender\":0,\"language\":\"zh_CN\",\"city\":\"\",\"province\":\"\",\"country\":\"\",\"avatarUrl\":\"https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKq2CRmib1mpu4hOFYtcIHgAmS7DicCEfYkUHoPmPQn74BXH5GerjoMOxIqib7iafNNBw2ZAicBj6gZGUQ/132\"}";
    String signature = "3901b7322c7920ef4a5077eeba54b0d633585eef";
    WxAuthInfo wxAuthInfo = new WxAuthInfo(rawData, signature);
    User requestUser = User.of("深清秋", 1).avatarUrl("https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKq2CRmib1mpu4hOFYtcIHgAmS7DicCEfYkUHoPmPQn74BXH5GerjoMOxIqib7iafNNBw2ZAicBj6gZGUQ/132").country("中国").province("江苏").city("南京").language("zh_CN");
    User user = loginWithTokenService.loginWithToken(code, wxAuthInfo, requestUser);
    userRepository.add(user);
    entityManager.flush();
    LongIdentity userId = user.getId();
    String encryptedData = "NkSHcnyy88jJZwvsTBpb8Kw7jKIdYz1UnVqJ9Gf2NGFAn3DEeObh7W2Vh5hlgvs5zvtfNsV/IW+oHxEtzN4DY1E/tsGWnhiZYN+pYQun/8gNPrUNsjlR8saZIYoTGNcKpchNp+QEPzP/JFtGqIH+Etpk11RVRWepNJdYNzG3aNLUVmYQRqgCom7kYRrbM7g7GDu/jnqzvMn65ps48GawfQA==";
    String iv = "S2r8F/Gr0aUEs7BoerD5ZQ==";
    try {
        // when: 解密手机号
        MobileNumber mobileNumber = mobileNumberDecryptingService.decryptWxMobileNumber(userId, encryptedData, iv);
        // 下面这些不应该被执行到
        userRepository.update(user);
        entityManager.flush();
        User loadedUser = userRepository.instanceOf(userId);
        // then: 判定解密手机号是否正确
        assertNotNull(mobileNumber);
        assertEquals(mobileNumber.value(), "18652012976");
        assertEquals(loadedUser.getMobileNumber().value(), "18652012976");
    } catch (ApplicationValidationException e) {
        assertNotNull(e);
        assertEquals(e.getErrCode(), ApplicationValidationException.INVALID_REQUEST_DATA);
    }
}
Also used : MobileNumber(com.stardata.starshop2.sharedcontext.domain.MobileNumber) SessionUser(com.stardata.starshop2.sharedcontext.pl.SessionUser) User(com.stardata.starshop2.authcontext.domain.user.User) ApplicationValidationException(com.stardata.starshop2.sharedcontext.exception.ApplicationValidationException) WxAuthInfo(com.stardata.starshop2.authcontext.domain.user.WxAuthInfo) LongIdentity(com.stardata.starshop2.sharedcontext.domain.LongIdentity) Test(org.junit.jupiter.api.Test) SpringBootTest(org.springframework.boot.test.context.SpringBootTest) Rollback(org.springframework.test.annotation.Rollback) Transactional(jakarta.transaction.Transactional)

Example 3 with ApplicationValidationException

use of com.stardata.starshop2.sharedcontext.exception.ApplicationValidationException in project starshop by beautautumn.

the class MobileNumberDecryptingService method decryptWxMobileNumber.

public MobileNumber decryptWxMobileNumber(LongIdentity userId, String encryptedData, String iv) {
    User user = repository.instanceOf(userId);
    if (user == null) {
        throw new ApplicationValidationException(ApplicationValidationException.INVALID_REQUEST_ENTITY, "The user is not exists.");
    }
    MobileNumber mobileNumber = decryptingClient.decryptMobileNumber(user.currentToken(), encryptedData, iv);
    user.updateMobileNumber(mobileNumber);
    repository.update(user);
    return mobileNumber;
}
Also used : MobileNumber(com.stardata.starshop2.sharedcontext.domain.MobileNumber) User(com.stardata.starshop2.authcontext.domain.user.User) ApplicationValidationException(com.stardata.starshop2.sharedcontext.exception.ApplicationValidationException)

Aggregations

User (com.stardata.starshop2.authcontext.domain.user.User)3 MobileNumber (com.stardata.starshop2.sharedcontext.domain.MobileNumber)3 ApplicationValidationException (com.stardata.starshop2.sharedcontext.exception.ApplicationValidationException)3 WxAuthInfo (com.stardata.starshop2.authcontext.domain.user.WxAuthInfo)2 LongIdentity (com.stardata.starshop2.sharedcontext.domain.LongIdentity)2 SessionUser (com.stardata.starshop2.sharedcontext.pl.SessionUser)2 Transactional (jakarta.transaction.Transactional)2 Test (org.junit.jupiter.api.Test)2 SpringBootTest (org.springframework.boot.test.context.SpringBootTest)2 Rollback (org.springframework.test.annotation.Rollback)2