@WebMvcTest 测试类中的 UnsatisfiedDependencyException

Tal*_*gat 3 java junit spring-test spring-boot spring-rest

将 @Service 添加到控制器后,我的单元测试失败。该项目是 Spring-boot v 2.0.1.RELEASE。我花了很多时间试图找到答案,但没有运气。在我添加 @Service 注释之前测试工作正常,我的服务类中有一个存储库。

堆栈跟踪:

2018-04-24 12:57:12.487 WARN 940 --- [main] oswcsGenericWebApplicationContext:在上下文初始化期间遇到异常 - 取消刷新尝试:org.springframework.beans.factory.UnsatisfiedDependencyException:创建名为“UnsatisfiedController”的 bean 时出错:通过字段“服务”表达的依赖性;嵌套异常是 org.springframework.beans.factory.NoSuchBeanDefinitionException:没有可用的“uk.co.vw.lead.service.ContactUsService”类型的合格 bean:预计至少有 1 个 bean 有资格作为自动装配候选。依赖注解:{@org.springframework.beans.factory.annotation.Autowired(required=true)}

控制器:

@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);
}
Run Code Online (Sandbox Code Playgroud)

服务:

@Service
public class ContactUsServiceImpl implements ContactUsService {

@Autowired
private FleetRepository repository;

@Override
public void createForm(ContactUsDTO formDTO) {
    ContactUsForm form = populateContactUsForm(formDTO);
    repository.save(form);
}
Run Code Online (Sandbox Code Playgroud)

}

测试类:

@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());
}
Run Code Online (Sandbox Code Playgroud)

}

请帮忙,因为我不知道发生了什么。

dav*_*xxx 8

带有注释@WebMvcTest的测试类是 关注 Spring MVC 组件:控制器的测试。

因此无法自动装配单元测试中声明的服务字段:

@Autowired
private ContactUsService service;
Run Code Online (Sandbox Code Playgroud)

所以你也应该嘲笑这个依赖:

@MockBean
private ContactUsService service;
Run Code Online (Sandbox Code Playgroud)

另请注意,由于FleetController 对 没有任何直接依赖FleetRepository,因此不需要模拟此 bean:

@MockBean
private FleetRepository repository;
Run Code Online (Sandbox Code Playgroud)

更糟糕的是,它在上下文中添加了一个可能在测试期间产生副作用的模拟。
您只需要模拟被测控制器的直接依赖项。


作为替代方案,如果您只想模拟一些 bean 而不是所有不是控制器的 bean,请不要使用@WebMvcTestand 而不是使用@SpringBootTest它将加载整个上下文。
然后在测试类中声明要模拟的类@MockBean