Package org.htmlunit.util
Class FalsifyingWebConnection
java.lang.Object
org.htmlunit.util.WebConnectionWrapper
org.htmlunit.util.FalsifyingWebConnection
- All Implemented Interfaces:
AutoCloseable
,WebConnection
Extension of
WebConnectionWrapper
providing facility methods to deliver something other than
what the wrapped connection would deliver.-
Constructor Summary
ConstructorsConstructorDescriptionFalsifyingWebConnection
(WebClient webClient) Constructs an instance and places itself as connection of the WebClient.FalsifyingWebConnection
(WebConnection webConnection) Constructs a WebConnection object wrapping provided WebConnection. -
Method Summary
Modifier and TypeMethodDescriptionprotected WebResponse
createWebResponse
(WebRequest wr, String content, String contentType) Creates a faked WebResponse for the request with the provided content.protected WebResponse
createWebResponse
(WebRequest wr, String content, String contentType, int responseCode, String responseMessage) Creates a faked WebResponse for the request with the provided content.protected WebResponse
deliverFromAlternateUrl
(WebRequest webRequest, URL url) Delivers the content for an alternate URL as if it comes from the requested URL.protected WebResponse
replaceContent
(WebResponse wr, String newContent) Builds a WebResponse with new content, preserving all other information.Methods inherited from class org.htmlunit.util.WebConnectionWrapper
close, getResponse, getWrappedWebConnection
-
Constructor Details
-
FalsifyingWebConnection
Constructs a WebConnection object wrapping provided WebConnection.- Parameters:
webConnection
- the webConnection that does the real work- Throws:
IllegalArgumentException
- if the connection isnull
-
FalsifyingWebConnection
Constructs an instance and places itself as connection of the WebClient.- Parameters:
webClient
- the WebClient which WebConnection should be wrapped- Throws:
IllegalArgumentException
- if the WebClient isnull
-
-
Method Details
-
deliverFromAlternateUrl
Delivers the content for an alternate URL as if it comes from the requested URL.- Parameters:
webRequest
- the original web requesturl
- the URL from which the content should be retrieved- Returns:
- the response
- Throws:
IOException
- if a problem occurred
-
replaceContent
Builds a WebResponse with new content, preserving all other information.- Parameters:
wr
- the web response to adaptnewContent
- the new content to place in the response- Returns:
- a web response with the new content
- Throws:
IOException
- if an encoding problem occurred
-
createWebResponse
protected WebResponse createWebResponse(WebRequest wr, String content, String contentType) throws IOException Creates a faked WebResponse for the request with the provided content.- Parameters:
wr
- the web request for which a response should be createdcontent
- the content to place in the responsecontentType
- the content type of the response- Returns:
- a web response with the provided content
- Throws:
IOException
- if an encoding problem occurred
-
createWebResponse
protected WebResponse createWebResponse(WebRequest wr, String content, String contentType, int responseCode, String responseMessage) throws IOException Creates a faked WebResponse for the request with the provided content.- Parameters:
wr
- the web request for which a response should be createdcontent
- the content to place in the responsecontentType
- the content type of the responseresponseCode
- the HTTP code for the responseresponseMessage
- the HTTP message for the response- Returns:
- a web response with the provided content
- Throws:
IOException
- if an encoding problem occurred
-