gpt4 book ai didi

java - 如何测试更新方法?

转载 作者:行者123 更新时间:2023-12-05 03:31:45 24 4
gpt4 key购买 nike

我是单元测试的新手,在我的 Java (Spring Boot) 应用程序中使用 JUnit。我有时需要测试更新方法,但是当我在网上搜索时,没有合适的例子或建议。那么,您能否向我说明如何测试以下更新方法?我认为这可能需要与测试 void 不同的方法。我还认为在测试时首先模拟记录然后更新其字段然后更新。最后再次检索记录并比较更新后的属性。但我认为可能有比这种没有经验的方法更合适的方法。

public PriceDTO update(UUID priceUuid, PriceRequest request) {
Price price = priceRepository
.findByUuid(priceUuid)
.orElseThrow(() -> new EntityNotFoundException(PRICE));

mapRequestToEntity(request, price);
Price updated = priceRepository.saveAndFlush(price);

return new PriceDTO(updated);
}

private void mapRequestToEntity(PriceRequest request, Price entity) {
entity.setPriceAmount(request.getPriceAmount());
// set other props
}

最佳答案

您需要按照以下几行做一些事情:

public class ServiceTest {

@Mock
private PriceRepository priceRepository;

(...)

@Test
public void shouldUpdatePrice() throws Exception {
// Arrange
UUID priceUuid = // build the Price UUID
PriceRequest priceUpdateRequest = // build the Price update request
Price originalPrice = // build the original Price
doReturn(originalPrice).when(this.priceRepository).findByUuid(isA(UUID.class));
doAnswer(AdditionalAnswers.returnsFirstArg()).when(this.priceRepository).saveAndFlush(isA(Price.class));

// Act
PriceDTO updatedPrice = this.service.update(priceUuid, priceUpdateRequest);

// Assert
// here you need to assert that updatedPrice is as you expect according to originalPrice and priceUpdateRequest
}
}

关于java - 如何测试更新方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70606351/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com