
by.stub.yaml.YamlParser Maven / Gradle / Ivy
/*
HTTP stub server written in Java with embedded Jetty
Copyright (C) 2012 Alexander Zagniotov, Isa Goksu and Eric Mrak
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
package by.stub.yaml;
import by.stub.annotations.CoberturaIgnore;
import by.stub.cli.ANSITerminal;
import by.stub.utils.ConsoleUtils;
import by.stub.utils.StringUtils;
import by.stub.yaml.stubs.StubHttpLifecycle;
import by.stub.yaml.stubs.StubRequest;
import by.stub.yaml.stubs.StubResponse;
import org.yaml.snakeyaml.Yaml;
import parser.yaml.SnakeYaml;
import java.io.File;
import java.io.IOException;
import java.io.Reader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import static by.stub.utils.FileUtils.constructReader;
import static by.stub.utils.FileUtils.uriToFile;
import static by.stub.utils.StringUtils.encodeBase64;
import static by.stub.yaml.stubs.StubAuthorizationTypes.BASIC;
import static by.stub.yaml.stubs.StubAuthorizationTypes.BEARER;
import static by.stub.yaml.stubs.StubAuthorizationTypes.CUSTOM;
import static org.yaml.snakeyaml.DumperOptions.FlowStyle;
@SuppressWarnings("unchecked")
public class YamlParser {
public static final String FAILED_TO_LOAD_FILE_ERR = "Failed to load response content using relative path specified in 'file'. Check that response content exists in relative path specified in 'file'";
private String dataConfigHomeDirectory;
private final static Yaml SNAKE_YAML = SnakeYaml.INSTANCE.getSnakeYaml();
public List parse(final String dataConfigHomeDirectory, final String yaml) throws Exception {
return parse(dataConfigHomeDirectory, constructReader(yaml));
}
@CoberturaIgnore
public List parse(final String dataConfigHomeDirectory, final File yamlFile) throws Exception {
return parse(dataConfigHomeDirectory, constructReader(yamlFile));
}
public List parse(final String dataConfigHomeDirectory, final Reader yamlReader) throws Exception {
final Object loadedYaml = SNAKE_YAML.load(yamlReader);
if (!(loadedYaml instanceof List)) {
throw new IOException("Loaded YAML root node must be an instance of ArrayList, otherwise something went wrong. Check provided YAML");
}
this.dataConfigHomeDirectory = dataConfigHomeDirectory;
final List> loadedYamlData = (List) loadedYaml;
final List httpLifecycles = new LinkedList<>();
for (final Object rawParentNode : loadedYamlData) {
final Map parentNodePropertiesMap = (Map) rawParentNode;
final StubHttpLifecycle stubHttpLifecycle = unmarshallYamlNodeToHttpLifeCycle(parentNodePropertiesMap);
httpLifecycles.add(stubHttpLifecycle);
stubHttpLifecycle.setResourceId(httpLifecycles.size() - 1);
}
return httpLifecycles;
}
private StubHttpLifecycle unmarshallYamlNodeToHttpLifeCycle(final Map parentNodesMap) throws Exception {
final StubHttpLifecycle httpLifecycle = new StubHttpLifecycle();
for (final Map.Entry parentNode : parentNodesMap.entrySet()) {
final Object parentNodeValue = parentNode.getValue();
if (parentNodeValue instanceof Map) {
handleMapNode(httpLifecycle, parentNode);
} else if (parentNodeValue instanceof List) {
handleListNode(httpLifecycle, parentNode);
}
}
httpLifecycle.setHttpLifeCycleAsYaml(marshallNodeMapToYaml(parentNodesMap));
final Map requestMap = new HashMap<>();
requestMap.put(YamlProperties.REQUEST, parentNodesMap.get(YamlProperties.REQUEST));
httpLifecycle.setRequestAsYaml(marshallNodeToYaml(requestMap));
final Map responseMap = new HashMap<>();
responseMap.put(YamlProperties.RESPONSE, parentNodesMap.get(YamlProperties.RESPONSE));
httpLifecycle.setResponseAsYaml(marshallNodeToYaml(responseMap));
return httpLifecycle;
}
private void handleMapNode(final StubHttpLifecycle stubHttpLifecycle, final Map.Entry parentNode) throws Exception {
final Map yamlProperties = (Map) parentNode.getValue();
if (parentNode.getKey().equals(YamlProperties.REQUEST)) {
final StubRequest targetStub = unmarshallYamlMapToTargetStub(yamlProperties, new StubRequestBuilder());
stubHttpLifecycle.setRequest(targetStub);
ConsoleUtils.logUnmarshalledStubRequest(targetStub.getMethod(), targetStub.getUrl());
} else {
final StubResponse targetStub = unmarshallYamlMapToTargetStub(yamlProperties, new StubResponseBuilder());
stubHttpLifecycle.setResponse(targetStub);
}
}
private > T unmarshallYamlMapToTargetStub(final Map yamlProperties, final B stubBuilder) throws Exception {
for (final Map.Entry pair : yamlProperties.entrySet()) {
final Object rawFieldName = pair.getValue();
final String fieldName = pair.getKey();
final Object massagedFieldValue;
if (rawFieldName instanceof List) {
massagedFieldValue = rawFieldName;
} else if (rawFieldName instanceof Map) {
massagedFieldValue = configureAuthorizationHeader(rawFieldName);
} else if (fieldName.toLowerCase().equals(YamlProperties.METHOD)) {
final ArrayList methods = new ArrayList<>(1);
methods.add(StringUtils.objectToString(rawFieldName));
massagedFieldValue = methods;
} else if (isPairKeyEqualsToYamlNodeFile(fieldName)) {
massagedFieldValue = loadFileContentFromFileUrl(rawFieldName);
} else {
massagedFieldValue = StringUtils.objectToString(rawFieldName);
}
stubBuilder.store(fieldName, massagedFieldValue);
}
return stubBuilder.build();
}
private void handleListNode(final StubHttpLifecycle stubHttpLifecycle, final Map.Entry parentNode) throws Exception {
final List yamlProperties = (List) parentNode.getValue();
final List populatedResponseStub = unmarshallYamlListToTargetStub(yamlProperties, new StubResponseBuilder());
stubHttpLifecycle.setResponse(populatedResponseStub);
}
private > List unmarshallYamlListToTargetStub(final List yamlProperties, final B stubBuilder) throws Exception {
final List targetStubList = new LinkedList();
for (final Object arrayListEntry : yamlProperties) {
final Map rawSequenceEntry = (Map) arrayListEntry;
for (final Map.Entry mapEntry : rawSequenceEntry.entrySet()) {
final String rawFieldName = mapEntry.getKey();
Object rawFieldValue = mapEntry.getValue();
if (isPairKeyEqualsToYamlNodeFile(rawFieldName)) {
rawFieldValue = loadFileContentFromFileUrl(rawFieldValue);
}
stubBuilder.store(rawFieldName, rawFieldValue);
}
targetStubList.add(stubBuilder.build());
}
return targetStubList;
}
private boolean isPairKeyEqualsToYamlNodeFile(final String pairKey) {
return pairKey.toLowerCase().equals(YamlProperties.FILE);
}
private Object loadFileContentFromFileUrl(final Object rawPairValue) throws IOException {
final String filePath = StringUtils.objectToString(rawPairValue);
try {
return uriToFile(dataConfigHomeDirectory, filePath);
} catch (final IOException ex) {
ANSITerminal.error(ex.getMessage() + " " + FAILED_TO_LOAD_FILE_ERR);
}
return null;
}
private String marshallNodeMapToYaml(final Map parentNodesMap) {
final ArrayList
© 2015 - 2025 Weber Informatics LLC | Privacy Policy