【问题标题】:Why does spring boot test with webflux ignore custom jackson module为什么使用 webflux 进行 spring boot 测试会忽略自定义 jackson 模块
【发布时间】:2018-10-20 01:54:40
【问题描述】:

我正在使用 Spring Boot 2.0.1 和 WebFlux 路由器功能(基于注释!)编写应用程序。对于我的一些数据对象,我编写了扩展StdSerializer 的自定义序列化程序。这些我在 SimpleModule 中注册并将该模块公开为 bean。

当我运行应用程序时,这个设置就像一个魅力。 bean 被实例化,REST 响应使用正确的序列化程序进行序列化。

现在我想编写一个测试来验证路由器功能和它们背后的处理程序是否按预期工作。我想模拟的处理程序背后的服务。但是,在测试中,REST 响应使用默认序列化程序

我创建了一个重现该问题的小型演示项目。完整代码可以在这里找到:http://s000.tinyupload.com/?file_id=82815835861287011625

Gradle 配置加载 Spring Boot 和一些依赖项以支持 WebFlux 和测试。

import io.spring.gradle.dependencymanagement.DependencyManagementPlugin
import org.springframework.boot.gradle.plugin.SpringBootPlugin

buildscript {
    ext {
        springBootVersion = '2.0.1.RELEASE'
    }
    repositories {
        mavenCentral()
        // To allow to pull in milestone releases from Spring
        maven { url 'https://repo.spring.io/milestone' }
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
        classpath("io.spring.gradle:dependency-management-plugin:1.0.5.RELEASE")

    }
}

apply plugin: 'java'
apply plugin: SpringBootPlugin
apply plugin: DependencyManagementPlugin


repositories {
    mavenCentral()

    // To allow to pull in milestone releases from Spring
    maven { url 'https://repo.spring.io/milestone' }
}

dependencyManagement {
    imports {
        mavenBom 'org.springframework.boot:spring-boot-dependencies:2.0.1.RELEASE'
    }
}

dependencies {
    compile 'org.springframework.boot:spring-boot-starter-webflux'

    compile 'org.slf4s:slf4s-api_2.12:1.7.25'

    testCompile 'org.springframework.boot:spring-boot-starter-test'
    testCompile 'org.springframework.boot:spring-boot-starter-json'
    testCompile 'junit:junit:4.12'
    testCompile "org.mockito:mockito-core:2.+"
}

数据对象有两个字段。

package com.example.model;

public class ReverserResult {
    private String originalString;
    private String reversedString;

    // ... constructor, getters
}

自定义序列化程序以与默认序列化程序完全不同的方式呈现数据对象。原来的字段名消失,数据对象的内容被压缩成一个字符串。

@Component
public class ReverserResultSerializer extends StdSerializer<ReverserResult> {
    // ... Constructor ...

    @Override
    public void serialize(ReverserResult value, JsonGenerator gen, SerializerProvider provider) throws IOException {
        gen.writeStartObject();
        gen.writeFieldName("result");
        gen.writeString(value.getOriginalString() + "|" + value.getReversedString());
        gen.writeEndObject();
    }
}

序列化器封装在 Jackson 模块中并作为 bean 公开。在运行实际应用程序时,该 bean 被正确拾取并添加到 ObjectMapper

@Configuration
public class SerializerConfig {
    @Bean
    @Autowired public Module specificSerializers(ReverserResultSerializer reverserResultSerializer) {
        SimpleModule serializerModule = new SimpleModule();
        serializerModule.addSerializer(ReverserResult.class, reverserResultSerializer);

        return serializerModule;
    }
}

我还验证了 bean 确实存在于测试中。所以我可以排除测试期间创建的上下文缺少加载 bean。

@RunWith(SpringRunner.class)
@SpringBootTest
public class ReverserRouteTest {
    @Autowired
    public ReverserRoutes reverserRoutes;

    @MockBean
    public ReverserService mockReverserService;

    @Autowired
    @Qualifier("specificSerializers")
    public Module jacksonModule;

    @Test
    public void testSerializerBeanIsPresent() {
        assertNotNull(jacksonModule);
    }

    @Test
    public void testRouteAcceptsCall() {
        given(mockReverserService.reverse(anyString())).willReturn(new ReverserResult("foo", "bar"));

        WebTestClient client = WebTestClient.bindToRouterFunction(reverserRoutes.createRouterFunction()).build();
        client.get().uri("/reverse/FooBar").exchange().expectStatus().isOk();
    }

    @Test
    public void testRouteReturnsMockedResult() {
        given(mockReverserService.reverse(anyString())).willReturn(new ReverserResult("foo", "bar"));

        WebTestClient client = WebTestClient.bindToRouterFunction(reverserRoutes.createRouterFunction()).build();
        client.get().uri("/reverse/somethingcompletelydifferent")
                .exchange()
                .expectBody().json("{\"result\":\"foo|bar\"}");
    }
}

运行应用时的结果:

GET http://localhost:9090/reverse/FooBar

HTTP/1.1 200 OK
transfer-encoding: chunked
Content-Type: application/json;charset=UTF-8

{
  "result": "FooBar|raBooF"
}

运行测试时的结果:

< 200 OK
< Content-Type: [application/json;charset=UTF-8]

{"originalString":"foo","reversedString":"bar"}

我也尝试创建自己的 ObjectMapper 实例,但也没有使用。我想知道我是否缺少设置(尽管我确实尝试了很多注释......)或者我是否遇到了错误。我在 Google 和 SO 上进行了很多搜索,但到目前为止我找到的解决方案都没有帮助。此外,到目前为止,很少有人使用路由器功能:)。

感谢任何帮助!

更新:我也尝试了 2.0.2.RELEASE 和 2.1.0.BUILD-20180509。结果总是一样的。

【问题讨论】:

    标签: java spring-boot jackson spring-test spring-webflux


    【解决方案1】:

    除了在测试中手动创建 WebTestClient 之外,您还可以利用@AutoConfigureWebTestClient 并按以下方式自动连接它,以便正确考虑您的 Jackson 模块:

    @RunWith(SpringRunner.class)
    @SpringBootTest
    @AutoConfigureWebTestClient
    public class ReverserRouteTest {    
        @MockBean
        public ReverserService mockReverserService;
    
        @Autowired
        @Qualifier("specificSerializers")
        public Module jacksonModule;
    
        @Autowired
        public WebTestClient client;
    
        @Test
        public void testSerializerBeanIsPresent() {
            assertNotNull(jacksonModule);
        }
    
        @Test
        public void testRouteAcceptsCall() {
            given(mockReverserService.reverse(anyString())).willReturn(new ReverserResult("foo", "bar"));
    
            client.get().uri("/reverse/FooBar").exchange().expectStatus().isOk();
        }
    
        @Test
        public void testRouteReturnsMockedResult() {
            given(mockReverserService.reverse(anyString())).willReturn(new ReverserResult("foo", "bar"));
    
            client.get().uri("/reverse/somethingcompletelydifferent")
                    .exchange()
                    .expectBody().json("{\"result\":\"foo|bar\"}");
        }
    }
    

    【讨论】:

    • 完美!这解决了问题!非常感谢!我确实尝试过使用 \@WebFluxTest,但我从未想过将 \@SpringBootTest 和 \@AutoConfigureWebTestClient 结合起来。我已经在 GitHub 上发布了工作代码,以防有人想以它为例:github.com/DerEros/demo-webflux-test-issue/tree/…
    【解决方案2】:

    虽然 Sébastien 提出的解决方案在演示代码中完美运行,但在将其引入主应用程序后我遇到了一些问题。 @SpringBootTest 会引入太多的 bean,这反过来又需要大量的外部配置设置等。并且测试应该只涵盖路由和序列化。

    然而,删除 @SpringBootTest 会让我再次没有自定义序列化。所以我对@AutoConfigure... 注释进行了一些尝试,并找到了一个允许我在模拟/省略其他所有内容的同时测试路由和序列化的集合。

    完整代码可在 GitHub https://github.com/DerEros/demo-webflux-test-issue/tree/with-webfluxtest 上获得。

    相关的变化在这里。希望这对其他人也有帮助。

    @RunWith(SpringRunner.class)
    @WebFluxTest
    @AutoConfigureWebClient
    @Import({SerializerConfig.class, ReverserResultSerializer.class, ReverserRoutes.class, ReverseHandler.class, ReverserConfig.class})
    public class ReverserRouteTest {
        @MockBean
        public ReverserService mockReverserService;
    
        @Autowired
        @Qualifier("specificSerializers")
        public Module jacksonModule;
    
        @Autowired
        public WebTestClient client;
    
        // Tests; no changes here
    }
    

    【讨论】:

      猜你喜欢
      • 2020-05-20
      • 2018-12-06
      • 2022-12-04
      • 2016-03-13
      • 2023-03-15
      • 2021-05-13
      • 2014-07-10
      • 2019-03-15
      • 1970-01-01
      相关资源
      最近更新 更多