use of io.jenkins.plugins.casc.ConfiguratorException in project configuration-as-code-plugin by jenkinsci.
the class OverrideMergeStrategy method merge.
@Override
public void merge(Node root, Node node, String source) throws ConfiguratorException {
if (root.getNodeId() != node.getNodeId()) {
// means one of those yaml file doesn't conform to JCasC schema
throw new ConfiguratorException(String.format("Found incompatible configuration elements %s %s", source, node.getStartMark()));
}
switch(root.getNodeId()) {
case sequence:
SequenceNode seq = (SequenceNode) root;
SequenceNode seq2 = (SequenceNode) node;
seq.getValue().addAll(seq2.getValue());
return;
case mapping:
MappingNode map = (MappingNode) root;
MappingNode map2 = (MappingNode) node;
// merge common entries
for (int i = 0; i < map2.getValue().size(); ) {
NodeTuple t2 = map2.getValue().get(i);
boolean found = false;
for (NodeTuple tuple : map.getValue()) {
final Node key = tuple.getKeyNode();
final Node key2 = t2.getKeyNode();
if (key.getNodeId() == NodeId.scalar) {
// We dont support merge for more complex cases (yet)
if (((ScalarNode) key).getValue().equals(((ScalarNode) key2).getValue())) {
try {
merge(tuple.getValueNode(), t2.getValueNode(), source);
} catch (ConfiguratorConflictException e) {
map.getValue().set(map.getValue().indexOf(tuple), t2);
}
map2.getValue().remove(i);
found = true;
break;
}
} else {
throw new ConfiguratorException(String.format("Found non-mergeable configuration keys %s %s)", source, node.getEndMark()));
}
}
if (!found) {
++i;
}
}
// .. and add others
map.getValue().addAll(map2.getValue());
return;
default:
throw new ConfiguratorConflictException(String.format("Found conflicting configuration at %s %s", source, node.getStartMark()));
}
}
use of io.jenkins.plugins.casc.ConfiguratorException in project configuration-as-code-plugin by jenkinsci.
the class YamlUtils method merge.
public static Node merge(List<YamlSource> sources, ConfigurationContext context) throws ConfiguratorException {
Node root = null;
MergeStrategy mergeStrategy = MergeStrategyFactory.getMergeStrategyOrDefault(context.getMergeStrategy());
for (YamlSource<?> source : sources) {
try (Reader reader = reader(source)) {
final Node node = read(source, reader, context);
if (root == null) {
root = node;
} else {
if (node != null) {
mergeStrategy.merge(root, node, source.toString());
}
}
} catch (IOException io) {
throw new ConfiguratorException("Failed to read " + source, io);
}
}
return root;
}
use of io.jenkins.plugins.casc.ConfiguratorException in project configuration-as-code-plugin by jenkinsci.
the class YamlUtils method read.
public static Node read(YamlSource source, Reader reader, ConfigurationContext context) throws IOException {
LoaderOptions loaderOptions = new LoaderOptions();
loaderOptions.setMaxAliasesForCollections(context.getYamlMaxAliasesForCollections());
Composer composer = new Composer(new ParserImpl(new StreamReaderWithSource(source, reader)), new Resolver(), loaderOptions);
try {
return composer.getSingleNode();
} catch (YAMLException e) {
if (e.getMessage().startsWith("Number of aliases for non-scalar nodes exceeds the specified max")) {
throw new ConfiguratorException(String.format("%s%nYou can increase the maximum by setting an environment variable or property%n ENV: %s=\"100\"%n PROPERTY: -D%s=\"100\"", e.getMessage(), ConfigurationContext.CASC_YAML_MAX_ALIASES_ENV, ConfigurationContext.CASC_YAML_MAX_ALIASES_PROPERTY));
}
throw e;
}
}
use of io.jenkins.plugins.casc.ConfiguratorException in project configuration-as-code-plugin by jenkinsci.
the class DataBoundConfiguratorTest method shouldThrowConfiguratorException.
@Test
public void shouldThrowConfiguratorException() {
Mapping config = new Mapping();
config.put("foo", "foo");
config.put("bar", "abcd");
config.put("qix", "99");
ConfiguratorRegistry registry = ConfiguratorRegistry.get();
try {
registry.lookupOrFail(Foo.class).configure(config, new ConfigurationContext(registry));
fail("above action is excepted to throw ConfiguratorException!");
} catch (ConfiguratorException e) {
assertThat(e.getMessage(), is("foo: Failed to construct instance of class io.jenkins.plugins.casc.impl.configurators.DataBoundConfiguratorTest$Foo.\n" + " Constructor: public io.jenkins.plugins.casc.impl.configurators.DataBoundConfiguratorTest$Foo(java.lang.String,boolean,int).\n" + " Arguments: [java.lang.String, java.lang.Boolean, java.lang.Integer].\n" + " Expected Parameters: foo java.lang.String, bar boolean, qix int"));
}
}
Aggregations