com.galenframework.support.LayoutValidationException Maven / Gradle / Ivy
/*******************************************************************************
* Copyright 2015 Ivan Shubin http://galenframework.com
*
* 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.galenframework.support;
import com.galenframework.reports.model.LayoutReport;
import com.galenframework.speclang2.pagespec.SectionFilter;
import com.galenframework.validation.ValidationResult;
import java.util.List;
public class LayoutValidationException extends RuntimeException {
private static final String ERROR_INDENTATION = " ";
private final LayoutReport layoutReport;
public LayoutValidationException(String specPath, LayoutReport layoutReport, SectionFilter sectionFilter) {
super(createMessage(specPath, layoutReport, sectionFilter));
this.layoutReport = layoutReport;
}
public LayoutReport getLayoutReport() {
return layoutReport;
}
public static String createMessage(String specPath, LayoutReport layoutReport, SectionFilter sectionFilter) {
try {
StringBuilder messageBuilder = new StringBuilder()
.append(specPath);
if (sectionFilter != null) {
if (sectionFilter.getIncludedTags() != null && !sectionFilter.getIncludedTags().isEmpty()) {
messageBuilder.append(", tags: ").append(sectionFilter.getIncludedTags()).append("\n");
}
if (sectionFilter.getExcludedTags() != null && !sectionFilter.getExcludedTags().isEmpty()) {
messageBuilder.append(", excludedTags: ").append(sectionFilter.getExcludedTags()).append("\n");
}
}
messageBuilder.append(collectAllErrors(layoutReport.getValidationErrorResults()));
return messageBuilder.toString();
} catch (Exception ex) {
return specPath;
}
}
private static StringBuilder collectAllErrors(List validationErrorResults) {
return collectAllErrors(validationErrorResults, ERROR_INDENTATION);
}
private static StringBuilder collectAllErrors(List validationErrorResults, String indentation) {
StringBuilder builder = new StringBuilder();
if (validationErrorResults != null) {
String childIndentation = indentation + ERROR_INDENTATION;
for (ValidationResult validationResult : validationErrorResults) {
for (String errorMessage : validationResult.getError().getMessages()) {
builder.append(indentation)
.append("- ")
.append(errorMessage);
if (validationResult.getSpec() != null && validationResult.getSpec().getPlace() != null) {
builder.append(" (").append(validationResult.getSpec().getPlace().toPrettyString()).append(")");
}
builder.append("\n");
}
builder.append(collectAllErrors(validationResult.getChildValidationResults(), childIndentation));
}
}
return builder;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy