当前位置: 首页 > news >正文

佛山建站公司哪家好张家港优化网站seo

佛山建站公司哪家好,张家港优化网站seo,网站建设茂名,做投诉网站赚钱吗WebClient引用其Java文档是Spring Framework的 非阻塞#xff0c;反应式客户端执行HTTP请求#xff0c;通过底层HTTP客户端库#xff08;如Reactor Netty#xff09;公开流利的#xff0c;反应式API 。 在我当前的项目中#xff0c;我广泛使用WebClient进行服务到服务… WebClient引用其Java文档是Spring Framework的 非阻塞反应式客户端执行HTTP请求通过底层HTTP客户端库如Reactor Netty公开流利的反应式API 。 在我当前的项目中我广泛使用WebClient进行服务到服务的调用并发现它是一个了不起的API并且我喜欢使用Fluent接口。 考虑一个返回“城市”列表的远程服务。 使用WebClient的代码如下所示 ... import org.springframework.http.MediaType import org.springframework.web.reactive.function.client.WebClient import org.springframework.web.reactive.function.client.bodyToFlux import org.springframework.web.util.UriComponentsBuilder import reactor.core.publisher.Flux import java.net.URI CitiesClient( class CitiesClient( private val webClientBuilder: WebClient.Builder, private val citiesBaseUrl: String ) { fun getCities(): FluxCity { val buildUri: URI UriComponentsBuilder .fromUriString(citiesBaseUrl) .path( /cities ) .build() .encode() .toUri() val webClient: WebClient this .webClientBuilder.build() return webClient.get() .uri(buildUri) .accept(MediaType.APPLICATION_JSON) .exchange() .flatMapMany { clientResponse - clientResponse.bodyToFluxCity() } } } 但是很难测试使用WebClient的客户端。 在本文中我将介绍使用WebClient和干净的解决方案测试客户端的挑战。 模拟WebClient的挑战 要对“ CitiesClient”类进行有效的单元测试将需要模拟WebClient以及流利的接口链中的每个方法调用包括 val mockWebClientBuilder: WebClient.Builder mock() val mockWebClient: WebClient mock() whenever(mockWebClientBuilder.build()).thenReturn(mockWebClient) val mockRequestSpec: WebClient.RequestBodyUriSpec mock() whenever(mockWebClient.get()).thenReturn(mockRequestSpec) val mockRequestBodySpec: WebClient.RequestBodySpec mock() whenever(mockRequestSpec.uri(anyURI())).thenReturn(mockRequestBodySpec) whenever(mockRequestBodySpec.accept(any())).thenReturn(mockRequestBodySpec) val citiesJson: String this .javaClass.getResource( /sample-cities.json ).readText() val clientResponse: ClientResponse ClientResponse .create(HttpStatus.OK) .header( Content-Type , application/json ) .body(citiesJson).build() whenever(mockRequestBodySpec.exchange()).thenReturn(Mono.just(clientResponse)) val citiesClient CitiesClient(mockWebClientBuilder, http://somebaseurl ) val cities: FluxCity citiesClient.getCities() 这使得测试非常不稳定因为调用顺序的任何更改都将导致需要记录新的模拟。 使用真实端点进行测试 一种行之有效的方法是启动行为类似于客户端目标的真实服务器。 okhttp库和WireMock中的两个模拟服务器运行得很好它们是模拟服务器。 Wiremock的示例如下所示 import com.github.tomakehurst.wiremock.WireMockServer import com.github.tomakehurst.wiremock.client.WireMock import com.github.tomakehurst.wiremock.core.WireMockConfiguration import org.bk.samples.model.City import org.junit.jupiter.api.AfterAll import org.junit.jupiter.api.BeforeAll import org.junit.jupiter.api.Test import org.springframework.http.HttpStatus import org.springframework.web.reactive.function.client.WebClient import reactor.core.publisher.Flux import reactor.test.StepVerifier WiremockWebClientTest { class WiremockWebClientTest { Test fun testARemoteCall() { val citiesJson this .javaClass.getResource( /sample-cities.json ).readText() WIREMOCK_SERVER.stubFor(WireMock.get(WireMock.urlMatching( /cities )) .withHeader( Accept , WireMock.equalTo( application/json )) .willReturn(WireMock.aResponse() .withStatus(HttpStatus.OK.value()) .withHeader( Content-Type , application/json ) .withBody(citiesJson))) val citiesClient CitiesClient(WebClient.builder(), http://localhost: ${WIREMOCK_SERVER.port()} ) val cities: FluxCity citiesClient.getCities()         StepVerifier .create(cities) .expectNext(City(1L, Portland , USA , 1_600_000L)) .expectNext(City(2L, Seattle , USA , 3_200_000L)) .expectNext(City(3L, SFO , USA , 6_400_000L)) .expectComplete() .verify() } companion object { private val WIREMOCK_SERVER WireMockServer(WireMockConfiguration.wireMockConfig().dynamicPort()) BeforeAll JvmStatic fun beforeAll() { WIREMOCK_SERVER.start() } AfterAll JvmStatic fun afterAll() { WIREMOCK_SERVER.stop() } } } 在这里服务器是通过随机端口启动的然后注入行为然后针对该服务器测试客户端并进行验证。 这种方法有效并且在模拟此行为时不会与WebClient的内部混淆但是从技术上讲这是一个集成测试并且比纯单元测试执行起来要慢。 通过使远程呼叫短路来进行单元测试 我最近使用的一种方法是使用ExchangeFunction短路远程调用。 ExchangeFunction代表进行远程调用的实际机制可以用一种以测试期望的方式响应的方式代替ExchangeFunction import org.junit.jupiter.api.Test import org.springframework.http.HttpStatus import org.springframework.web.reactive.function.client.ClientResponse import org.springframework.web.reactive.function.client.ExchangeFunction import org.springframework.web.reactive.function.client.WebClient import reactor.core.publisher.Flux import reactor.core.publisher.Mono import reactor.test.StepVerifier CitiesWebClientTest { class CitiesWebClientTest { Test fun testCleanResponse() { val citiesJson: String this .javaClass.getResource( /sample-cities.json ).readText() val clientResponse: ClientResponse ClientResponse .create(HttpStatus.OK) .header( Content-Type , application/json ) .body(citiesJson).build() val shortCircuitingExchangeFunction ExchangeFunction { Mono.just(clientResponse) } val webClientBuilder: WebClient.Builder WebClient.builder().exchangeFunction(shortCircuitingExchangeFunction) val citiesClient CitiesClient(webClientBuilder, http://somebaseurl ) val cities: FluxCity citiesClient.getCities() StepVerifier .create(cities) .expectNext(City(1L, Portland , USA , 1_600_000L)) .expectNext(City(2L, Seattle , USA , 3_200_000L)) .expectNext(City(3L, SFO , USA , 6_400_000L)) .expectComplete() .verify() } } WebClient注入了ExchangeFunction该函数仅返回具有远程服务器预期行为的响应。 这使整个远程呼叫短路并允许对客户端进行全面测试。 这种方法取决于对WebClient内部的一点了解。 虽然这是一个不错的妥协但是它的运行速度比使用WireMock进行的测试要快得多。 但是这种方法不是原始的我已经基于用于测试WebClient本身的一些测试来建立此测试例如 此处的 结论 我个人更喜欢最后一种方法它使我能够为使用WebClient进行远程调用的客户端编写相当全面的单元测试。 我的项目具有完整的工作样本 在这里 。 翻译自: https://www.javacodegeeks.com/2019/09/unit-test-springs-webclient.html
http://wiki.neutronadmin.com/news/70135/

相关文章:

  • 查询网站的外链深入解析wordpress...
  • 江西省建设工程安全质量监督管理局网站wp 企业网站模板
  • 湛江低价网站建设wordpress安装插件出现api
  • phpcms 多语言网站石柱网站制作
  • 网站开发编写籍贯代码wordpress怎么二次开
  • 网站的内容管理怎样建移动网站
  • 网站开发的论文题目黑龙江建设网官方
  • 做二维码推送网站wordpress登录原理
  • 大连营销型网站建设怎么对自己的网页进行修改
  • 重庆家政公司网站建设营销网站有四大要素构成
  • 平阴县建设工程网站做网站需要哪些成本
  • 如何挖掘和布局网站关键词网站建设续费合同
  • 做移动网站点击软件网站 需求
  • 网站开发前期方案静态网站如何建设
  • 国外html5网站企业app商城开发网站建设
  • 招聘门户网站有哪些wordpress固定链接设置
  • 电子商务网站建设题wordpress搭建电子商城
  • 公司网站想维护服务器一线城市做网站工资有多少钱
  • 付费主题怎么永久使用搜索引擎优化特点
  • 章丘网站建设哪家好帝国做网站
  • 网文网站网站建设兼职平台
  • 做印刷网站公司沈阳网站建设开发设计公司
  • 计算机网络技术网站建设方向it外包公司可以进吗
  • 微网站如何做推广申请域名做网站
  • 怎样可以做网站手机oa办公系统下载
  • 有关建设网站的英语文献4.4.12 wordpress
  • 学校二级学院网站建设建筑行业最新资讯
  • 网站内链工作做足做网站比较好的数字
  • 1做网站的公司openwrt 网站开发
  • 网站如何做线上和线下推广天元建设集团有限公司管理工资发放