/** * Copyright 2014 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package test.com.xceptance.xlt.common; import java.io.IOException; import com.gargoylesoftware.htmlunit.MockWebConnection; import com.gargoylesoftware.htmlunit.WebRequest; import com.gargoylesoftware.htmlunit.WebResponse; import com.xceptance.xlt.engine.XltWebClient; /** * Mocked web connection which provides the same functionalities as its HtmlUnit counterpart. * <p> * The only difference is the post-processing of responses performed by the {@link XltWebClient}. * </p> */ public class XltMockWebConnection extends MockWebConnection { /** * XLT web client. */ private final XltWebClient webClient; /** * Constructor. * * @param client * XLT web client to use */ public XltMockWebConnection(final XltWebClient client) { webClient = client; } /** * {@inheritDoc} */ @Override public WebResponse getResponse(final WebRequest settings) throws IOException { return webClient.processResponse(super.getResponse(settings)); } }