com.consol.citrus.variable.MessageHeaderVariableExtractor 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.variable;
import com.consol.citrus.context.TestContext;
import com.consol.citrus.exceptions.UnknownElementException;
import com.consol.citrus.message.Message;
import org.springframework.util.CollectionUtils;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
/**
* Variable extractor reading message headers and saves them to new test variables.
*
* @author Christoph Deppisch
*/
public class MessageHeaderVariableExtractor implements VariableExtractor {
/** Map holding header names and target variable names */
private Map headerMappings = new HashMap();
/**
* Reads header information and saves new test variables.
*/
public void extractVariables(Message message, TestContext context) {
if (CollectionUtils.isEmpty(headerMappings)) { return; }
for (Entry entry : headerMappings.entrySet()) {
String headerElementName = entry.getKey();
String targetVariableName = entry.getValue();
if (message.getHeader(headerElementName) == null) {
throw new UnknownElementException("Could not find header element " + headerElementName + " in received header");
}
context.setVariable(targetVariableName, message.getHeader(headerElementName).toString());
}
}
/**
* Set the header mappings.
* @param headerMappings the headerMappings to set
*/
public void setHeaderMappings(Map headerMappings) {
this.headerMappings = headerMappings;
}
/**
* Gets the headerMappings.
* @return the headerMappings
*/
public Map getHeaderMappings() {
return headerMappings;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy