當前位置: 首頁>>代碼示例>>Java>>正文


Java WebClient.setWebConnection方法代碼示例

本文整理匯總了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()));
}
 
開發者ID:langtianya,項目名稱:spring4-understanding,代碼行數:21,代碼來源:DelegatingWebConnectionTests.java

示例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;
}
 
開發者ID:langtianya,項目名稱:spring4-understanding,代碼行數:16,代碼來源:MockMvcWebClientBuilder.java


注:本文中的com.gargoylesoftware.htmlunit.WebClient.setWebConnection方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。