本文整理匯總了Java中com.gargoylesoftware.htmlunit.HttpWebConnection類的典型用法代碼示例。如果您正苦於以下問題:Java HttpWebConnection類的具體用法?Java HttpWebConnection怎麽用?Java HttpWebConnection使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
HttpWebConnection類屬於com.gargoylesoftware.htmlunit包,在下文中一共展示了HttpWebConnection類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: verifyExampleInClassLevelJavadoc
import com.gargoylesoftware.htmlunit.HttpWebConnection; //導入依賴的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()));
}