Spring错误Junit throws错误exception is invalid for this method

mo49yndu  于 2024-01-06  发布在  Spring
关注(0)|答案(1)|浏览(178)

我正在尝试为resttemplate.getForEntity()方法编写一个单元测试,并尝试覆盖Exception.class catch块。
下面是相同的代码:

  1. import com.google.gson.Gson;
  2. import org.slf4j.Logger;
  3. import org.slf4j.LoggerFactory;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.beans.factory.annotation.Value;
  6. import org.springframework.http.HttpHeaders;
  7. import org.springframework.http.HttpStatus;
  8. import org.springframework.http.ResponseEntity;
  9. import org.springframework.retry.annotation.Backoff;
  10. import org.springframework.retry.annotation.EnableRetry;
  11. import org.springframework.retry.annotation.Recover;
  12. import org.springframework.retry.annotation.Retryable;
  13. import org.springframework.stereotype.Service;
  14. import lombok.extern.slf4j.Slf4j;
  15. import org.springframework.web.client.RestTemplate;
  16. @Service
  17. @Slf4j
  18. public class ProductService {
  19. private String productInfoBaseUrl = "http://localhost";
  20. @Value("${service.product.metadata}")
  21. private String productInfoPathProductMetadata;
  22. private static final Logger logger = LoggerFactory.getLogger(ProductService.class);
  23. @Autowired
  24. RestTemplate restTemplate;
  25. @Retryable(retryFor = {RuntimeException.class}, maxAttempts = 3, backoff = @Backoff(delay = 10000))
  26. public ProductResponse getProductMetadata(String sku, HandlerResult handlerResult) {
  27. HttpHeaders headers = new HttpHeaders();
  28. headers.add(HttpHeaders.CONTENT_TYPE, "application/json");
  29. String errorMsg;
  30. String endpoint = getProductFetchMetadataEndpoint();
  31. ResponseEntity<String> response;
  32. try {
  33. response = restTemplate.getForEntity(endpoint, String.class);
  34. } catch (RuntimeException ex) {
  35. errorMsg = "getProductMetadata threw exception: " + ex.getMessage();
  36. HandlerResult.updateStatus(handlerResult, errorMsg, false);
  37. throw ex;
  38. }
  39. catch (Exception ex) {
  40. errorMsg = "getProductMetadata threw exception: " + ex.getMessage();
  41. log.info(errorMsg);
  42. HandlerResult.updateStatus(handlerResult, errorMsg, false);
  43. return null;
  44. }
  45. ProductResponse metadataResponse;
  46. Gson gson = new Gson();
  47. try {
  48. metadataResponse = gson.fromJson(response.getBody(), ProductResponse.class);
  49. } catch (Exception e) {
  50. errorMsg = String.format("Exception ProductResponse converting %s to map", response.getBody());
  51. log.info(errorMsg);
  52. HandlerResult.updateStatus(handlerResult, errorMsg, false);
  53. return null;
  54. }
  55. return metadataResponse;
  56. }
  57. private String getProductFetchMetadataEndpoint() {
  58. return productInfoBaseUrl + "/" + productInfoPathProductMetadata + "/";
  59. }
  60. }

字符串
以下是单元测试代码:

  1. @ExtendWith(MockitoExtension.class)
  2. public class ProductServiceTest {
  3. @InjectMocks
  4. ProductService productService;
  5. //@Mock
  6. @Spy
  7. RestTemplate restTemplate;
  8. @Test
  9. public void testGetProductMetadataException() throws Exception {
  10. Mockito.doThrow(RestClientException.class).when(restTemplate).getForEntity(any(), any());
  11. ProductMetadataResponse result = productService.getProductMetadata("NX35100", null);
  12. Assertions.assertNull(result);
  13. }
  14. }


我运行上面的单元测试得到下面的错误:

  1. org.mockito.exceptions.base.MockitoException:
  2. Checked exception is invalid for this method!
  3. Invalid: java.lang.Exception
  4. at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:419)


有人能告诉我我错过了什么吗?

cnjp1d6j

cnjp1d6j1#

我认为这里有两个问题:
1.您应该使用@Mock而不是@Spy,因为@Spy只会监视实际的示例,并且在调用方法时仍然会触发实际的方法。在您的用例中,您希望在调用getForEntity方法时抛出异常。
1.你应该使用when(xxx).thenThrow(yyy),而不是doThrow(yyy).when(xxx).getForEntity(...)。后者是为void返回类型设计的。并且getForEntity不是void方法。

相关问题