WebMvcTest 尝试加载每个应用程序控制器

WebMvcTest attempts to load every application Controller

当我尝试实现 WebMvcTest 时,它会尝试实例化每个应用程序控制器,而不仅仅是 @WebMvcTest 注释中指示的那个。

没有任何运气或成功,我已经阅读了这些文章:

下面是我发现相关的代码部分

@SpringBootApplication
public class Application {
  public static void main(String[] args) {
    SpringApplication.run(Application.class, args);
  }
}
@RestController
@RequestMapping("/api/complaints/{id}/comments")
public class CommentController {

  @PostMapping
  public CommentJson comment(@PathVariable String id, @RequestBody CommentCommand command) {
    throw new UnsupportedOperationException("Method not implemented yet");
  }
}
@WebMvcTest(CommentController.class)
class CommentControllerTest extends AbstractTest {

  @Autowired
  MockMvc mockMvc;
  // ...
}

当我 运行 测试失败并出现以下错误时:

Parameter 0 of constructor in com.company.package.controller.ComplaintController required a bean of type 'com.company.package.service.Complaints' that could not be found.
@RestController
@RequestMapping("/api/complaints")
@RequiredArgsConstructor
@ControllerAdvice()
public class ComplaintController {
  private final Complaints complaints;

  // ... other controller methods

  @ExceptionHandler(ComplaintNotFoundException.class)
  public ResponseEntity<Void> handleComplaintNotFoundException() {
    return ResponseEntity.notFound().build();
  }
}
@ExtendWith(MockitoExtension.class)
public abstract class AbstractTest {
  private final Faker faker = new Faker();

  protected final Faker faker() {
    return faker;
  }

  // ... other utility methods
}

我发现进行 Web Mvc 测试的唯一方法 运行 是模拟每个控制器对所有 @WebMvcTest 的每个依赖项,这非常乏味。
我在这里遗漏了什么吗?

在仔细查看您的 ComplaintController 时,您将其注释为 @ControllerAdvice

@WebMvcTest 的 Javadoc 对作为测试的 Spring 上下文一部分的相关 MVC bean 进行了以下说明:

/**
 * Annotation that can be used for a Spring MVC test that focuses <strong>only</strong> on
 * Spring MVC components.
 * <p>
 * Using this annotation will disable full auto-configuration and instead apply only
 * configuration relevant to MVC tests (i.e. {@code @Controller},
 * {@code @ControllerAdvice}, {@code @JsonComponent},
 * {@code Converter}/{@code GenericConverter}, {@code Filter}, {@code WebMvcConfigurer}
 * and {@code HandlerMethodArgumentResolver} beans but not {@code @Component},
 * {@code @Service} or {@code @Repository} beans).
 * ...
 */

所以任何 @ControllerAdvice 都是这个 MVC 上下文的一部分,因此这是预期的行为。

要解决此问题,您可以将异常处理从 ComplaintController 中提取到专用的 class 中,该 class 确实依赖于任何其他 Spring Bean,并且可以在不模拟任何东西的情况下进行实例化。

PS:all 这个词在您的问题标题中具有误导性WebMvcTest 试图加载每个应用程序控制器