使用自定义ErrorAttributes测试Spring Boot应用程序?

时间:2015-03-18 11:33:20

标签: spring rest spring-boot

我正在尝试测试应该使用自定义错误属性的Spring Boot RestController。

    @Bean
public ErrorAttributes errorAttributes() {
    return new DefaultErrorAttributes() {

        @Override
        public Map<String, Object> getErrorAttributes(
                RequestAttributes requestAttributes,
                boolean includeStackTrace) {
            Map<String, Object> errorAttributes = super.getErrorAttributes(requestAttributes, includeStackTrace);
            Throwable error = getError(requestAttributes);
            return errorAttributes;
        }

    };
}

但是当我尝试使用简单测试来测试自定义错误属性时,不会考虑这些属性。下面的测试实际上会触发一个请求,除了使用自定义属性。但无论我怎么做,代码似乎都没有被考虑在内。

class TestSpec extends Specification {

    MockMvc mockMvc

    def setup() {
        mockMvc = MockMvcBuilders.standaloneSetup(new HelloWorldController()).build()
    }

    def "Test simple action"() {
        when:
        def response = mockMvc.perform(post("/hello")
                .contentType(MediaType.APPLICATION_JSON)
                .content('{"sayHelloTo": ""}')
        )

        then:
        response.andExpect(status().isOk())
    }
}

关于我如何测试自定义属性的任何线索?

2 个答案:

答案 0 :(得分:9)

Spring Boot的错误基础架构通过将请求转发到错误控制器来工作。它是使用ErrorAttributes实例的错误控制器。 MockMvc只对测试转发请求提供了相当基本的支持(您可以检查请求是否会被转发,但不能转发该转发的实际结果)。这意味着,使用独立设置或基于Web应用程序上下文的设置调用HellowWorldController的MockMvc测试不会驱动正确的代码路径。

一些选择:

  • 直接对您的自定义ErrorAttributes课程进行单元测试
  • 编写一个基于MockMvc的测试,调用使用自定义BasicErrorController实例配置的Spring Boot ErrorAttributes
  • 编写一个集成测试,使用RestTemplate对您的服务进行实际的HTTP调用

答案 1 :(得分:0)

test class from Spring为您提供了开始自己的测试的好地方!

创建自定义错误属性类的实例,并使用MockHttpServletRequest和WebRequest:

B = [x.replace((p:=x.split("_")[0]),  A[int(p)], 1) for x in B]

对于您的测试方法:

private final DefaultErrorAttributes errorAttributes = new YourCustomErrorAttributes();
private final MockHttpServletRequest request = new MockHttpServletRequest();
private final WebRequest webRequest = new ServletWebRequest(this.request);