在使用springboot進(jìn)行開發(fā)時,單元測試是必要的,當(dāng)你建立一個spring項(xiàng)目時,它會為我們自己生成一個測試項(xiàng)目,當(dāng)你的項(xiàng)目開始過程中,測試用例是同時要進(jìn)行的,我們在進(jìn)行WEB層的集成測試時,可以使用spring為我們提供的WebTestClient工具,非常方便,提供了基于restful的各種類型和狀態(tài)!
創(chuàng)新互聯(lián)是一家專業(yè)提供河南企業(yè)網(wǎng)站建設(shè),專注與做網(wǎng)站、成都網(wǎng)站建設(shè)、H5建站、小程序制作等業(yè)務(wù)。10年已為河南眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)的建站公司優(yōu)惠進(jìn)行中。
WebClient是一個響應(yīng)式客戶端,它提供了RestTemplate的替代方法。它公開了一個功能齊全、流暢的API,并依賴于非阻塞I / O,使其能夠比RestTemplate更高效地支持高并發(fā)性。WebClient非常適合流式的傳輸方案,并且依賴于較低級別的HTTP客戶端庫來執(zhí)行請求,是可插拔的。
如果在你系統(tǒng)的類路徑上有Spring WebFlux,就可以選擇使用WebClient來調(diào)用遠(yuǎn)程REST服務(wù)。相比之下RestTemplate,這個客戶端具有更多的函數(shù)感并且完全Reactive響應(yīng)式的。您可以在Spring Framework文檔WebClient的專用 部分中了解有關(guān)該內(nèi)容的更多信息。
WebClient使用與WebFlux服務(wù)器應(yīng)用程序相同的編解碼器,并與服務(wù)器功能Web框架共享公共基本包,一些通用API和基礎(chǔ)結(jié)構(gòu)。API公開了Reactor Flux和Mono類型。默認(rèn)情況下,它使用Reactor Netty作為HTTP客戶端庫,但其他人可以通過自定義ClientHttpConnector插入。
與RestTemplate相比,WebClient是:
下面測試用例也是spring在github上開源的,大叔作為總結(jié),把它收錄在博客里。
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(); } }
本例主要用來測試響應(yīng)式的MongoDB控件,其中也有一些坑,我們在reactive-mongodb一節(jié)里再說!
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。