Search in sources :

Example 1 with LongIdentity

use of com.stardata.starshop2.sharedcontext.domain.LongIdentity in project starshop by beautautumn.

the class StarshopAuthDecryptingTests method should_get_mobile_phone_correctly_given_exists_userid_and_correct_encrypted_data_iv_by_domain_service.

// 1.1. 正常的已有用户、加密数据encryptedData、iv,成功解密手机号,并更新用户对象手机号
@Test
@Transactional
@Rollback(true)
void should_get_mobile_phone_correctly_given_exists_userid_and_correct_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 = "NkSHcnyy8jJZwvsTBpb8Kw7jKIdYz1UnVqJ9Gf2NGFAn3DEeObh7W2Vh5hlgvs5zvtfNsV/IW+oHxEtzN4DY1E/tsGWnhiZYN+pYQun/8gNPrUNsjlR8saZIYoTGNcKpchNp+QEPzP/JFtGqIH+Etpk11RVRWepNJdYNzG3aNLUVmYQRqgCom7kYRrbM7g7GDu/jnqzvMn65ps48GawfQA==";
    String iv = "S2r8F/Gr0aUEs7BoerD5ZQ==";
    // 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");
}
Also used : MobileNumber(com.stardata.starshop2.sharedcontext.domain.MobileNumber) SessionUser(com.stardata.starshop2.sharedcontext.pl.SessionUser) User(com.stardata.starshop2.authcontext.domain.user.User) 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 LongIdentity

use of com.stardata.starshop2.sharedcontext.domain.LongIdentity 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 3 with LongIdentity

use of com.stardata.starshop2.sharedcontext.domain.LongIdentity 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 4 with LongIdentity

use of com.stardata.starshop2.sharedcontext.domain.LongIdentity in project starshop by beautautumn.

the class OrderAppService method delete.

public OrderDeletedResponse delete(Long orderIdLong) {
    LongIdentity orderId = LongIdentity.from(orderIdLong);
    Order order = managingService.setInvisible(orderId);
    return OrderDeletedResponse.from(order);
}
Also used : WxPrepayOrder(com.stardata.starshop2.ordercontext.command.domain.order.WxPrepayOrder) Order(com.stardata.starshop2.ordercontext.command.domain.order.Order) LongIdentity(com.stardata.starshop2.sharedcontext.domain.LongIdentity)

Example 5 with LongIdentity

use of com.stardata.starshop2.sharedcontext.domain.LongIdentity in project starshop by beautautumn.

the class OrderAppService method confirmReceived.

public OrderConfirmedResponse confirmReceived(Long orderIdLong) {
    LongIdentity orderId = LongIdentity.from(orderIdLong);
    Order order = managingService.closeOrder(orderId);
    OrderClosedEvent orderEvent = new OrderClosedEvent(order);
    orderEventPublisher.publish(orderEvent);
    return OrderConfirmedResponse.from(order);
}
Also used : WxPrepayOrder(com.stardata.starshop2.ordercontext.command.domain.order.WxPrepayOrder) Order(com.stardata.starshop2.ordercontext.command.domain.order.Order) LongIdentity(com.stardata.starshop2.sharedcontext.domain.LongIdentity)

Aggregations

LongIdentity (com.stardata.starshop2.sharedcontext.domain.LongIdentity)11 WxPrepayOrder (com.stardata.starshop2.ordercontext.command.domain.order.WxPrepayOrder)6 Order (com.stardata.starshop2.ordercontext.command.domain.order.Order)5 MobileNumber (com.stardata.starshop2.sharedcontext.domain.MobileNumber)5 User (com.stardata.starshop2.authcontext.domain.user.User)4 WxAuthInfo (com.stardata.starshop2.authcontext.domain.user.WxAuthInfo)3 Product (com.stardata.starshop2.productcontext.command.domain.product.Product)3 ApplicationValidationException (com.stardata.starshop2.sharedcontext.exception.ApplicationValidationException)3 SessionUser (com.stardata.starshop2.sharedcontext.pl.SessionUser)3 Transactional (jakarta.transaction.Transactional)3 Test (org.junit.jupiter.api.Test)3 SpringBootTest (org.springframework.boot.test.context.SpringBootTest)3 Rollback (org.springframework.test.annotation.Rollback)3 ShoppingCart (com.stardata.starshop2.ordercontext.command.domain.shoppingcart.ShoppingCart)1 ProductSettlement (com.stardata.starshop2.productcontext.command.domain.product.ProductSettlement)1 Shop (com.stardata.starshop2.shopcontext.domain.Shop)1