本文整理汇总了Java中com.gargoylesoftware.htmlunit.WebClient.setWebConnection方法的典型用法代码示例。如果您正苦于以下问题:Java WebClient.setWebConnection方法的具体用法?Java WebClient.setWebConnection怎么用?Java WebClient.setWebConnection使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.gargoylesoftware.htmlunit.WebClient
的用法示例。
在下文中一共展示了WebClient.setWebConnection方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: verifyExampleInClassLevelJavadoc
import com.gargoylesoftware.htmlunit.WebClient; //导入方法依赖的package包/类
@Test
public void verifyExampleInClassLevelJavadoc() throws Exception {
Assume.group(TestGroup.PERFORMANCE);
WebClient webClient = new WebClient();
MockMvc mockMvc = MockMvcBuilders.standaloneSetup(TestController.class).build();
MockMvcWebConnection mockConnection = new MockMvcWebConnection(mockMvc);
mockConnection.setWebClient(webClient);
WebRequestMatcher cdnMatcher = new UrlRegexRequestMatcher(".*?//code.jquery.com/.*");
WebConnection httpConnection = new HttpWebConnection(webClient);
WebConnection webConnection = new DelegatingWebConnection(mockConnection, new DelegateWebConnection(cdnMatcher, httpConnection));
webClient.setWebConnection(webConnection);
Page page = webClient.getPage("http://code.jquery.com/jquery-1.11.0.min.js");
assertThat(page.getWebResponse().getStatusCode(), equalTo(200));
assertThat(page.getWebResponse().getContentAsString(), not(isEmptyString()));
}
示例2: getPageWhenUrlIsRelativeAndNoPortWillUseLocalhost8080
import com.gargoylesoftware.htmlunit.WebClient; //导入方法依赖的package包/类
@Test
public void getPageWhenUrlIsRelativeAndNoPortWillUseLocalhost8080() throws Exception {
MockEnvironment environment = new MockEnvironment();
WebClient client = new LocalHostWebClient(environment);
WebConnection connection = mockConnection();
client.setWebConnection(connection);
client.getPage("/test");
verify(connection).getResponse(this.requestCaptor.capture());
assertThat(this.requestCaptor.getValue().getUrl())
.isEqualTo(new URL("http://localhost:8080/test"));
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:12,代码来源:LocalHostWebClientTests.java
示例3: getPageWhenUrlIsRelativeAndHasPortWillUseLocalhostPort
import com.gargoylesoftware.htmlunit.WebClient; //导入方法依赖的package包/类
@Test
public void getPageWhenUrlIsRelativeAndHasPortWillUseLocalhostPort()
throws Exception {
MockEnvironment environment = new MockEnvironment();
environment.setProperty("local.server.port", "8181");
WebClient client = new LocalHostWebClient(environment);
WebConnection connection = mockConnection();
client.setWebConnection(connection);
client.getPage("/test");
verify(connection).getResponse(this.requestCaptor.capture());
assertThat(this.requestCaptor.getValue().getUrl())
.isEqualTo(new URL("http://localhost:8181/test"));
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:14,代码来源:LocalHostWebClientTests.java
示例4: withDelegate
import com.gargoylesoftware.htmlunit.WebClient; //导入方法依赖的package包/类
/**
* Supply the {@code WebClient} that the client {@linkplain #build built}
* by this builder should delegate to when processing
* non-{@linkplain WebRequestMatcher matching} requests.
* @param webClient the {@code WebClient} to delegate to for requests
* that do not match; never {@code null}
* @return this builder for further customization
* @see #build()
*/
public MockMvcWebClientBuilder withDelegate(WebClient webClient) {
Assert.notNull(webClient, "WebClient must not be null");
webClient.setWebConnection(createConnection(webClient.getWebConnection()));
this.webClient = webClient;
return this;
}