Wiremock 入门教程1 - Spring reactor的简单集成测试

1.为什么使用Wiremock

我们在开发过程中, 有时会碰到需要测试其他系统响应的情况, 例如你开发的系统需要调用某个外部API, 此时, 为了快速开发测试, 我们需要模拟一个外部系统的请求及响应的过程, 那么此时Wiremock 就是一种选择

2.应用场景

场景1.

我们最常见的, 我们有时调用接口时需要获取认证中心提供的token再加入token到我们的请求中, 那么认证授权中心的服务在测试时我们可以用mock server来替代达到测试的效果.

场景2.

我们只对某请求结果二次封装, 内部实则是调用其他接口.

3.示例代码

3.1. maven依赖

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.6.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>demo</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>11</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-webflux</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectreactor</groupId>
            <artifactId>reactor-spring</artifactId>
            <version>1.0.1.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>com.github.tomakehurst</groupId>
            <artifactId>wiremock-jre8</artifactId>
            <version>2.25.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-contract-wiremock</artifactId>
            <version>2.2.2.RELEASE</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

3.2. 配置程服务器地址

也就是于application.yml中, 配置你依赖的API接口提供方

myserver:
  base_url: http://localhost:${wiremock.server.port}/

3.3. 业务代码

3.3.1. Controller

这里控制器本身没有特殊代码, 只是返回类型为reactor 的mono, 由于本例并不侧重reactor, 这里就不做延伸

@Slf4j
@RestController
@AllArgsConstructor
@RequestMapping(path = "/test")
public class DummyController {

    private final DummyService dummyService;

    @GetMapping(path = "/get/{id}")
    public Mono<ResponseEntity<String>> ping(@PathVariable("id") final String id) {
        return dummyService.pingById(id)
                .map(updatedId -> {
                    log.info("get id from remote server: {}", updatedId);
                    return ResponseEntity.ok(updatedId);
                });
    }

    @PostMapping(path = "/post")
    public Mono<ResponseEntity<String>> submit(@RequestBody final String requestBody) {
        return dummyService.pingWithBody(requestBody)
                .map(res -> {
                    log.info("response from remote server: {}", res);
                    return ResponseEntity.ok(res);
                });
    }
}

3.3.2. Service

可以看到这里我们使用了reactor的 WebClient, 我们以这个client 来作为远端API的调用客户端 , 那么在本例中,由于我们使用的服务器是一个wiremock, 那么它将发送请求到mock的服务器获得虚拟的返回

@Slf4j
@Service
@AllArgsConstructor
public class DummyService {

    private final WebClient webClient;

    private static final String REMOTE_GET_PATH = "/remote/get/{id}";
    private static final String REMOTE_POST_PATH = "/remote/post";

    public Mono<String> pingById(String id) {
        log.info("processing id, {}", id);
        return webClient.get()
                .uri(REMOTE_GET_PATH, id)
                .retrieve()
                .bodyToMono(String.class);
    }

    public Mono<String> pingWithBody(String bodyValue) {
        log.info("processing bodyValue, {}", bodyValue);
        return webClient.post()
                .uri(REMOTE_POST_PATH)
                .bodyValue(bodyValue)
                .retrieve()
                .bodyToMono(String.class);
    }
}

3.3.3. Configuration

简单配置类, 获取配置的服务器地址信息

@ConfigurationProperties("myserver")
@Validated
@Data
public class DummyConfiguration {
    @NotNull
    private String baseUrl;
}

3.3.4. webclient 初始化

这里我们为了绑定service中的webclient 到配置的远端地址, 也就是我们定义的wiremock地址, 我们做了一个bean方便使用, 注意这里WebClient.Builder 是一个购置器入参.

@Component
@AllArgsConstructor
@ConfigurationPropertiesScan
public class DummyManager {

    private final DummyConfiguration dummyConfiguration;

    @Bean
    WebClient webClient(WebClient.Builder webClientBuilder) {
        return webClientBuilder
                .baseUrl(dummyConfiguration.getBaseUrl())
                .defaultHeader(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON_VALUE)
                .build();
    }
}

3.3.5. 启动类

@SpringBootApplication
public class DemoApplication {
    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

至此我们的代码就写完了, 那么如何模拟远端服务器的请求及响应呢? 我们接着看测试代码

3.4. 测试

@Slf4j
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, classes = DemoApplication.class)
//将wiremock初始化到spring context
@AutoConfigureWireMock(port = 0)
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class DummyControllerTest {

   //使用WebTestClient作为测试使用的服务端
    private WebTestClient webTestClient;

   //获取端口
    @LocalServerPort
    private int port;

    @BeforeAll
    void setup() {
       //初始化测试端client
        webTestClient = WebTestClient.bindToServer()
                .baseUrl("http://localhost:" + port)
                .responseTimeout(Duration.ofSeconds(10))
                .build();
    }

    @Test
    void testPing() {
       //这里便是wiremock的mock代码, 可以清楚看到, 我们mock 一个get请求, 返回一个123 并带有200
        stubFor(get(urlMatching("/remote/.*"))
                .willReturn(aResponse()
                        .withBody("123")
                        .withStatus(200)));

        //测试我们自己的rest接口
        webTestClient
                .get()
                .uri("/test/get/{id}", 123)
                .exchange()
                .expectStatus().isEqualTo(HttpStatus.OK)
                .expectBody(String.class)
                .consumeWith(stringEntityExchangeResult -> {
                    // 验证
                    Assertions.assertEquals("123", stringEntityExchangeResult.getResponseBody());
                });

    }

    @Test
    void testSubmit() {
        String requestBody = "{\n" +
                "    \"action\":\"post\",\n" +
                "    \"value\":\"wiremock\"\n" +
                "}";

        //mock post 请求
        stubFor(post(urlMatching("/remote/post"))
                .willReturn(aResponse()
                        .withBody(requestBody)
                        .withStatus(200)));

        webTestClient
                .post()
                .uri("/test/post")
                .bodyValue("test")
                .exchange()
                .expectStatus().isEqualTo(HttpStatus.OK)
                .expectBody(String.class)
                .consumeWith(stringEntityExchangeResult -> {
                    Assertions.assertEquals(requestBody, stringEntityExchangeResult.getResponseBody());
                });
    }
}

5. 完整代码

https://github.com/wallisnow/wiremock_spring_reactor

6.结语

wiremock 可以帮助我们快速实现接口调用的测试, 代码量较小, 可以采用于自动化测试. 本例是一个入门案例并使用java代码的形式实现, 其本身也提供json配置的形式. 还有其他一些更深入的使用, 我们可以根据需要在官方文档中获得更多的信息, 例如一些其他常用的stub : http://wiremock.org/docs/stubbing/

7.Refs

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
禁止转载,如需转载请通过简信或评论联系作者。
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,723评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,485评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,998评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,323评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,355评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,079评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,389评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,019评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,519评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,971评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,100评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,738评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,293评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,289评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,517评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,547评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,834评论 2 345