org.citrusframework.variable.dictionary.AbstractDataDictionary 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
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.variable.dictionary;
import org.citrusframework.context.TestContext;
import org.citrusframework.message.AbstractMessageProcessor;
import org.citrusframework.spi.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Properties;
import static org.citrusframework.spi.PropertiesLoader.loadProperties;
/**
* Abstract data dictionary implementation provides global scope handling.
* @author Christoph Deppisch
*/
public abstract class AbstractDataDictionary extends AbstractMessageProcessor implements DataDictionary {
/** Logger */
private static final Logger logger = 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) {
logger.debug("Reading data dictionary mapping: {}", mappingFile.getLocation());
Properties properties = loadProperties(mappingFile);
for (Map.Entry