org.citrusframework.xml.actions.XmlTestActionBuilder Maven / Gradle / Ivy
The newest version!
/*
* 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.xml.actions;
import java.util.Optional;
import org.citrusframework.TestActionBuilder;
import org.citrusframework.exceptions.CitrusRuntimeException;
import org.citrusframework.spi.ResourcePathTypeResolver;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @author Christoph Deppisch
*/
public interface XmlTestActionBuilder {
/** Logger */
Logger logger = LoggerFactory.getLogger(XmlTestActionBuilder.class);
/** Endpoint builder resource lookup path */
String RESOURCE_PATH = "META-INF/citrus/xml/builder";
/** Default Citrus test action builders from classpath resource properties */
ResourcePathTypeResolver TYPE_RESOLVER = new ResourcePathTypeResolver(RESOURCE_PATH);
/**
* Resolves test action builder from resource path lookup with given resource name. Scans classpath for test action builder meta information
* with given name and returns instance of the builder. Returns optional instead of throwing exception when no test action builder
* could be found.
*
* Given builder name is a combination of resource file name and type property separated by '.' character.
* @param builder
* @return
*/
static Optional> lookup(String builder) {
return lookup(builder, null);
}
/**
* Resolves test action builder from resource path lookup with given resource name. Scans classpath for test action builder meta information
* with given name and returns instance of the builder. Returns optional instead of throwing exception when no test action builder
* could be found.
*
* Given builder name is a combination of resource file name and type property separated by '.' character.
* @param name
* @param namespace
* @return
*/
static Optional> lookup(String name, String namespace) {
try {
TestActionBuilder> builder = TYPE_RESOLVER.resolve(name);
if (namespace != null && !namespace.equals(TYPE_RESOLVER.resolveProperty(name, "ns"))) {
throw new CitrusRuntimeException(String.format("Namespace mismatch for given action builder '%s/%s'", RESOURCE_PATH, name));
}
return Optional.of(builder);
} catch (CitrusRuntimeException e) {
if (logger.isDebugEnabled()) {
logger.debug(String.format("Failed to resolve test action builder from resource '%s/%s'", RESOURCE_PATH, name), e);
} else {
logger.warn(String.format("Failed to resolve test action builder from resource '%s/%s'", RESOURCE_PATH, name));
}
}
return Optional.empty();
}
}