org.citrusframework.http.client.HttpEndpointComponent Maven / Gradle / Ivy
/*
* Copyright 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 org.citrusframework.http.client;
import java.util.Map;
import org.citrusframework.context.TestContext;
import org.citrusframework.endpoint.AbstractEndpointComponent;
import org.citrusframework.endpoint.Endpoint;
import org.citrusframework.message.ErrorHandlingStrategy;
import org.springframework.web.bind.annotation.RequestMethod;
/**
* Component creates proper HTTP client endpoint from endpoint uri resource and parameters.
*
* @author Christoph Deppisch
* @since 1.4.1
*/
public class HttpEndpointComponent extends AbstractEndpointComponent {
/**
* Default constructor using the name for this component.
*/
public HttpEndpointComponent() {
this("http");
}
/**
* Default constructor using the name for this component.
*/
public HttpEndpointComponent(String name) {
super(name);
}
@Override
protected Endpoint createEndpoint(String resourcePath, Map parameters, TestContext context) {
HttpClient client = new HttpClient();
client.getEndpointConfiguration().setRequestUrl(getScheme() + resourcePath + getParameterString(parameters, HttpEndpointConfiguration.class));
if (parameters.containsKey("requestMethod")) {
String method = parameters.remove("requestMethod");
client.getEndpointConfiguration().setRequestMethod(RequestMethod.valueOf(method));
}
if (parameters.containsKey("errorHandlingStrategy")) {
String strategy = parameters.remove("errorHandlingStrategy");
client.getEndpointConfiguration().setErrorHandlingStrategy(ErrorHandlingStrategy.fromName(strategy));
}
enrichEndpointConfiguration(client.getEndpointConfiguration(),
getEndpointConfigurationParameters(parameters, HttpEndpointConfiguration.class), context);
return client;
}
/**
* Gets http uri scheme.
* @return
*/
protected String getScheme() {
return "http://";
}
}