博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springboot~WebTestClient的使用
阅读量:6261 次
发布时间:2019-06-22

本文共 3558 字,大约阅读时间需要 11 分钟。

在使用springboot进行开发时,单元测试是必要的,当你建立一个spring项目时,它会为我们自己生成一个测试项目,当你的项目开始过程中,测试用例是同时要进行的,我们在进行WEB层的集成测试时,可以使用spring为我们提供的WebTestClient工具,非常方便,提供了基于restful的各种类型和状态!

下面测试用例也是spring在github上开源的,大叔作为总结,把它收录在博客里。

package com.example.webclientdemo;import com.example.webclientdemo.payload.GithubRepo;import com.example.webclientdemo.payload.RepoRequest;import org.assertj.core.api.Assertions;import org.junit.FixMethodOrder;import org.junit.Test;import org.junit.runner.RunWith;import org.junit.runners.MethodSorters;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.http.MediaType;import org.springframework.test.context.junit4.SpringRunner;import org.springframework.test.web.reactive.server.WebTestClient;import reactor.core.publisher.Mono;@RunWith(SpringRunner.class)@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)@FixMethodOrder(MethodSorters.NAME_ASCENDING)public class WebclientDemoApplicationTests {    @Autowired    private WebTestClient webTestClient;    @Test    public void test1CreateGithubRepository() {        RepoRequest repoRequest = new RepoRequest("test-webclient-repository", "Repository created for testing WebClient");        webTestClient.post().uri("/api/repos")                .contentType(MediaType.APPLICATION_JSON_UTF8)                .accept(MediaType.APPLICATION_JSON_UTF8)                .body(Mono.just(repoRequest), RepoRequest.class)                .exchange()                .expectStatus().isOk()                .expectHeader().contentType(MediaType.APPLICATION_JSON_UTF8)                .expectBody()                .jsonPath("$.name").isNotEmpty()                .jsonPath("$.name").isEqualTo("test-webclient-repository");    }    @Test    public void test2GetAllGithubRepositories() {        webTestClient.get().uri("/api/repos")                .accept(MediaType.APPLICATION_JSON_UTF8)                .exchange()                .expectStatus().isOk()                .expectHeader().contentType(MediaType.APPLICATION_JSON_UTF8)                .expectBodyList(GithubRepo.class);    }    @Test    public void test3GetSingleGithubRepository() {        webTestClient.get()                .uri("/api/repos/{repo}", "test-webclient-repository")                .exchange()                .expectStatus().isOk()                .expectBody()                .consumeWith(response ->                        Assertions.assertThat(response.getResponseBody()).isNotNull());    }    @Test    public void test4EditGithubRepository() {        RepoRequest newRepoDetails = new RepoRequest("updated-webclient-repository", "Updated name and description");        webTestClient.patch()                .uri("/api/repos/{repo}", "test-webclient-repository")                .contentType(MediaType.APPLICATION_JSON_UTF8)                .accept(MediaType.APPLICATION_JSON_UTF8)                .body(Mono.just(newRepoDetails), RepoRequest.class)                .exchange()                .expectStatus().isOk()                .expectHeader().contentType(MediaType.APPLICATION_JSON_UTF8)                .expectBody()                .jsonPath("$.name").isEqualTo("updated-webclient-repository");    }    @Test    public void test5DeleteGithubRepository() {        webTestClient.delete()                .uri("/api/repos/{repo}", "updated-webclient-repository")                .exchange()                .expectStatus().isOk();    }}

本例主要用来测试响应式的mongodb控件,其中也有一些坑,我们在reactive-mongodb一节里再说!

转载于:https://www.cnblogs.com/lori/p/8954754.html

你可能感兴趣的文章
css改变背景透明度.html
查看>>
easyui表单校验
查看>>
LeetCode – Refresh – Gray Code
查看>>
ZYN砍树
查看>>
曹冲养猪
查看>>
Color Length UVALive - 5841
查看>>
asp.net连接SQL SERVER 2012的方法
查看>>
Electron开发环境部署
查看>>
MAC下安装MAMP的PHPredis扩展
查看>>
通过函数指针调用函数
查看>>
苹果虚拟机显示卡顿
查看>>
对代码评审的感想(回忆篇)
查看>>
LOJ#6437. 「PKUSC2018」PKUSC
查看>>
[学习笔记]同余
查看>>
报表开发工具中开放的部分图表js接口列表
查看>>
如何实现 Python 中 selnium 模块的换行
查看>>
Scut游戏服务器引擎6.0.5.0发布-支持C#脚本
查看>>
有关FPGA
查看>>
[caffe(二)]Python加载训练caffe模型并进行测试2
查看>>
javasrcipt——正则
查看>>