com.consol.citrus.actions.LoadPropertiesAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of citrus-base Show documentation
Show all versions of citrus-base Show documentation
Citrus base and default implementation
/*
* 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 java.util.LinkedHashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Properties;
import com.consol.citrus.AbstractTestActionBuilder;
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;
/**
* 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 final String filePath;
/** Logger */
private static final Logger LOG = LoggerFactory.getLogger(LoadPropertiesAction.class);
/**
* Default constructor.
*/
public LoadPropertiesAction(Builder builder) {
super("load", builder);
this.filePath = builder.filePath;
}
@Override
public void doExecute(TestContext context) {
Resource resource = FileUtils.getFileResource(filePath, context);
if (LOG.isDebugEnabled()) {
LOG.debug("Reading property file " + resource.getFilename());
}
Properties props = FileUtils.loadAsProperties(resource);
Map unresolved = new LinkedHashMap<>();
for (Entry