com.consol.citrus.variable.dictionary.AbstractDataDictionary Maven / Gradle / Ivy
/*
* Copyright 2006-2013 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.variable.dictionary;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Properties;
import com.consol.citrus.context.TestContext;
import com.consol.citrus.exceptions.CitrusRuntimeException;
import com.consol.citrus.message.AbstractMessageProcessor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PropertiesLoaderUtils;
/**
* Abstract data dictionary implementation provides global scope handling.
* @author Christoph Deppisch
*/
public abstract class AbstractDataDictionary extends AbstractMessageProcessor implements DataDictionary {
/** Logger */
private static Logger log = LoggerFactory.getLogger(AbstractDataDictionary.class);
/** Data dictionary name */
private String name = getClass().getSimpleName();
/** Scope defines where dictionary should be applied (explicit or global) */
private boolean globalScope = true;
/** Known mappings to this dictionary */
protected Map mappings = new LinkedHashMap<>();
/** mapping file resource */
protected Resource mappingFile;
/** Kind of mapping strategy how to identify dictionary item */
private PathMappingStrategy pathMappingStrategy = PathMappingStrategy.EXACT;
/**
* Convert to original value type if necessary.
* @param value
* @param originalValue
* @param context
* @param
* @return
*/
protected V convertIfNecessary(String value, V originalValue, TestContext context) {
if (originalValue == null) {
return (V) context.replaceDynamicContentInString(value);
}
return context.getTypeConverter().convertIfNecessary(context.replaceDynamicContentInString(value),
(Class) originalValue.getClass());
}
@Override
public void initialize() {
if (mappingFile != null) {
if (log.isDebugEnabled()) {
log.debug("Reading data dictionary mapping " + mappingFile.getFilename());
}
Properties props;
try {
props = PropertiesLoaderUtils.loadProperties(mappingFile);
} catch (IOException e) {
throw new CitrusRuntimeException(e);
}
for (Map.Entry