我将@Service添加到控制器后,我的单元测试失败了。 该项目是Spring-boot v 2.0.1.RELEASE。我花了很多时间试图找到答案,但没有运气。在我添加@Service注释之前,测试工作正常,我的服务类中有一个存储库。
堆栈追踪:
2018-04-24 12:57:12.487警告940 --- [主要] o.s.w.c.s.GenericWebApplicationContext:遇到异常 在上下文初始化期间 - 取消刷新尝试: org.springframework.beans.factory.UnsatisfiedDependencyException: 创建名为'fleetController'的bean时出错:不满意 通过“服务”字段表达的依赖性;嵌套异常是 org.springframework.beans.factory.NoSuchBeanDefinitionException:没有 'uk.co.vw.lead.service.ContactUsService'类型的限定bean 可用:预计至少有1个符合autowire资格的bean 候选人。依赖注释: {@ org.springframework.beans.factory.annotation.Autowired(所需=真)}
控制器:
@Slf4j
@RestController
@RequestMapping(value = VERSION, consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
public class FleetController {
public static final String VERSION = "1.0";
@Autowired
private ContactUsService service;
@InitBinder
public void initBinder(final WebDataBinder webDataBinder) {
webDataBinder.registerCustomEditor(NatureOfEnquiryEnum.class, new NatureOfEnquiryEnumConverter());
webDataBinder.registerCustomEditor(FleetSizeEnum.class, new FleetSizeEnumConverter());
}
@PostMapping(value = "/fleet/contact-us")
public ResponseEntity contactUs(@Valid ContactUsDTO formDTO) {
service.createForm(formDTO);
return new ResponseEntity(HttpStatus.NO_CONTENT);
}
@PostMapping(value = "/fleet/request-demo")
public ResponseEntity requestDemo(@Valid RequestDemoDTO demoDTO) {
return new ResponseEntity(HttpStatus.NO_CONTENT);
}
服务:
@Service
public class ContactUsServiceImpl implements ContactUsService {
@Autowired
private FleetRepository repository;
@Override
public void createForm(ContactUsDTO formDTO) {
ContactUsForm form = populateContactUsForm(formDTO);
repository.save(form);
}
}
测试类:
@RunWith(JUnitPlatform.class)
@WebMvcTest(FleetController.class)
@ExtendWith(SpringExtension.class)
public class FleetControllerTest {
private final String CONTACT_US_URL = "/fleet/contact-us";
@Autowired
private MockMvc mockMvc;
@MockBean
private FleetRepository repository;
@Autowired
private ContactUsService service;
@Test
public void contactUsSuccessTest() throws Exception {
this.mockMvc.perform( post("/" + VERSION + CONTACT_US_URL)
.contentType(MediaType.APPLICATION_FORM_URLENCODED_VALUE)
.param("firstname", "John")
.param("lastname", "Doe")
.param("company", "Skynet")
.param("emailAddress", "john.connor@sky.net")
.param("telephone", "020 8759 4294")
.param("natureOfEnquiry", "new")
.param("comments", "some comments")
.param("recaptchaResponse", "success"))
.andExpect(status().isNoContent());
}
@Test
public void contactUsMissingRequiredFieldsTest() throws Exception {
this.mockMvc.perform( post("/1.0/fleet/contact-us")
.contentType(MediaType.APPLICATION_FORM_URLENCODED_VALUE))
.andExpect(status().isBadRequest());
}
}
请帮忙,因为我不知道发生了什么。
答案 0 :(得分:4)
使用@WebMvcTest
注释的测试分类是在Spring MVC组件上仅 的测试:控制器。
因此,您的单元测试中声明的服务字段无法自动装配:
@Autowired
private ContactUsService service;
所以你应该模仿这种依赖:
@MockBean
private ContactUsService service;
另请注意,由于FleetController
与FleetRepository
没有任何直接依赖关系,因此不需要模拟此bean:
@MockBean
private FleetRepository repository;
更糟糕的是,它在上下文中添加了一个模拟,可能会在测试期间产生副作用 您必须仅模拟受测控制器的直接依赖关系。
作为替代方案,如果您只想模拟一些bean而不是所有不是控制器的bean,请不要使用@WebMvcTest
而不是使用@SpringBootTest
来加载整个上下文。
然后在测试类中声明要使用@MockBean
模拟的类。