com.consol.citrus.actions.AntRunAction Maven / Gradle / Ivy
/*
* Copyright 2006-2012 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 com.consol.citrus.actions;
import com.consol.citrus.context.TestContext;
import com.consol.citrus.exceptions.CitrusRuntimeException;
import org.apache.tools.ant.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.core.io.support.PropertiesLoaderUtils;
import org.springframework.util.StringUtils;
import java.io.IOException;
import java.io.PrintStream;
import java.util.Map.Entry;
import java.util.Properties;
import java.util.Stack;
/**
* Action calls Apache ANT with given build file and runs ANT targets
* as separate build. User can set and overwrite properties for the build.
*
* Build logging output is forwarded to test run logger.
*
* @author Christoph Deppisch
* @since 1.3
*/
public class AntRunAction extends AbstractTestAction {
/** The build.xml file path */
private String buildFilePath;
/** Target to execute */
private String target;
/** Multiple targets to execute as comma separated list */
private String targets;
/** Optional build file properties to set */
private Properties properties = new Properties();
/** Optional build property file path */
private String propertyFilePath;
/** Custom build listener */
private BuildListener buildListener;
/** Logger */
private static Logger log = LoggerFactory.getLogger(AntRunAction.class);
/**
* Default constructor.
*/
public AntRunAction() {
setName("antrun");
}
@Override
public void doExecute(TestContext context) {
Project project = new Project();
project.init();
String buildFileResource = context.replaceDynamicContentInString(buildFilePath);
try {
ProjectHelper.configureProject(project, new PathMatchingResourcePatternResolver().getResource(buildFileResource).getFile());
for (Entry
© 2015 - 2025 Weber Informatics LLC | Privacy Policy