All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.consol.citrus.actions.LoadPropertiesAction Maven / Gradle / Ivy

/*
 * Copyright 2006-2010 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 com.consol.citrus.util.FileUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PropertiesLoaderUtils;

import java.io.IOException;
import java.util.Iterator;
import java.util.Map.Entry;
import java.util.Properties;

/**
 * Action reads property files and creates test variables for every property entry. File
 * resource path can define a {@link org.springframework.core.io.ClassPathResource} or
 * a {@link org.springframework.core.io.FileSystemResource}.
 * 
 * @author Christoph Deppisch
 */
public class LoadPropertiesAction extends AbstractTestAction {

    /** File resource path */
    private String filePath = null;

    /** Logger */
    private static Logger log = LoggerFactory.getLogger(LoadPropertiesAction.class);

    /**
     * Default constructor.
     */
    public LoadPropertiesAction() {
        setName("load");
    }

    @Override
    public void doExecute(TestContext context) {
        Resource resource = FileUtils.getFileResource(filePath, context);

        if (log.isDebugEnabled()) {
            log.debug("Reading property file " + resource.getFilename());
        }

        Properties props;
        try {
            props = PropertiesLoaderUtils.loadProperties(resource);
        } catch (IOException e) {
            throw new CitrusRuntimeException(e);
        }

        for (Iterator> iter = props.entrySet().iterator(); iter.hasNext();) {
            String key = iter.next().getKey().toString();

            if (log.isDebugEnabled()) {
                log.debug("Loading property: " + key + "=" + props.getProperty(key) + " into variables");
            }

            if (log.isDebugEnabled() && context.getVariables().containsKey(key)) {
                log.debug("Overwriting property " + key + " old value:" + context.getVariable(key) 
                        + " new value:" + props.getProperty(key));
            }

            context.setVariable(key, context.replaceDynamicContentInString(props.getProperty(key)));
        }

        log.info("Loaded property file " + resource.getFilename());
    }

    /**
     * File path setter.
     * @param file the file to set
     */
    public LoadPropertiesAction setFilePath(String file) {
        this.filePath = file;
        return this;
    }

    /**
     * Gets the file.
     * @return the file
     */
    public String getFilePath() {
        return filePath;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy