Springboot集成测试运行时错误- ClassCastException

2wnc66cl  于 2023-04-10  发布在  Spring
关注(0)|答案(1)|浏览(208)

我有一个控制器,我正在编写测试。一切似乎都编译得很好,但后来我得到了一个运行时错误,说下面的话。我不记得我把我的DTO转换为字符串的任何地方。堆栈跟踪显示,这个“ResultActions response = mockMvc.perform(post(“/app/API/agency/signup”).contentType(MediaType.APPLICATION_JSON).content(mapper.writeValueAsString(agency))”是有问题的一行,但我不确定原因。

  1. Request processing failed; nested exception is java.lang.ClassCastException: class com.zshift.io.dto.records.AgencyDTORecord cannot be cast to class java.lang.String (com.zshift.io.dto.records.AgencyDTORecord is in unnamed module of loader 'app'; java.lang.String is in module java.base of loader 'bootstrap')
  2. org.springframework.web.util.NestedServletException
  3. at com.zshift.io.tests.agency.AgencyIntegrationTest.testAgencySignup(AgencyIntegrationTest.java:77)
  4. Caused by: java.lang.ClassCastException: class com.zshift.io.dto.records.AgencyDTORecord cannot be cast to class java.lang.String (com.zshift.io.dto.records.AgencyDTORecord is in unnamed module of loader 'app'; java.lang.String is in module java.base of loader 'bootstrap')
  5. at com.zshift.io.tests.agency.AgencyIntegrationTest.testAgencySignup(AgencyIntegrationTest.java:77)

控制器看起来像这样。

  1. @PostMapping(path = "/signup", produces = { MediaType.APPLICATION_JSON }, consumes = { MediaType.APPLICATION_JSON })
  2. public ResponseEntity addAgency(@RequestBody AgencyDTORecord record) throws AlreadyExistsException {
  3. return new ResponseEntity<>(service.saveAgency(record), HttpStatus.CREATED);
  4. }

我的DTO类看起来像这样

  1. @Getter
  2. @Setter
  3. @NoArgsConstructor
  4. @AllArgsConstructor
  5. @Data
  6. @Entity
  7. public class AgencyDTORecord {
  8. private String agencyAbout;
  9. private String agencyAddress;
  10. private String agencyEmail;
  11. private String agencyLocation;
  12. private String agencyName;
  13. private String agencyPhone;
  14. private String agencyLatitude;
  15. private String agencyLongitude;
  16. private String agencySecret;
  17. private String agencyPostCode;
  18. private Long agencyID;
  19. private String agencyRoleName;
  20. private String agencyStaffName;
  21. private String agencyStaff;
  22. }

这是我的测试课

  1. @WebMvcTest(controllers = AgencyController.class)
  2. @AutoConfigureMockMvc(addFilters = false)
  3. @ExtendWith(MockitoExtension.class)
  4. public class AgencyIntegrationTest {
  5. @Autowired
  6. private MockMvc mockMvc;
  7. @MockBean
  8. private AgencyService service;
  9. @Autowired
  10. private ObjectMapper mapper;
  11. private AgencyDTORecord agency;
  12. @BeforeEach
  13. public void init()
  14. {
  15. agency = new AgencyDTORecord();
  16. agency.setAgencyAbout("For testing");
  17. agency.setAgencyAddress("test address");
  18. agency.setAgencyEmail("agency@test.com");
  19. agency.setAgencyLatitude("1000");
  20. agency.setAgencyLongitude("2000");
  21. agency.setAgencyName("The Test Agency");
  22. agency.setAgencyPhone("3000");
  23. agency.setAgencyPostCode("CT92LA");
  24. agency.setAgencyRoleName("Admin");
  25. agency.setAgencySecret("1234");
  26. agency.setAgencyStaff("Alao");
  27. agency.setAgencyID(Long.parseLong("0"));
  28. agency.setAgencyStaffName("Alao Akala");
  29. }
  30. @Test
  31. public void testAgencySignup() throws Exception {
  32. given(service.saveAgency(any())).will(invocation -> invocation.getArgument(0));
  33. ResultActions response = mockMvc.perform(post("/app/api/agency/signup")
  34. .contentType(MediaType.APPLICATION_JSON)
  35. .content(mapper.writeValueAsString(agency))
  36. );
  37. response.andExpect(status().isCreated())
  38. .andExpect(jsonPath("$.agencyName", is(agency.getAgencyName())))
  39. .andExpect(jsonPath("$.agencyPhone", is(agency.getAgencyPhone())));
  40. }
iyzzxitl

iyzzxitl1#

我修复了它。我使用Gson将代理DTO转换为JSON,然后将其作为内容对象传递。

相关问题