All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.rosetta.jsonparsingtests.model.validation.DocumentValidator Maven / Gradle / Ivy
package com.rosetta.jsonparsingtests.model.validation;
import com.google.common.collect.Lists;
import com.rosetta.jsonparsingtests.model.Document;
import com.rosetta.model.lib.expression.ComparisonResult;
import com.rosetta.model.lib.path.RosettaPath;
import com.rosetta.model.lib.validation.ValidationResult;
import com.rosetta.model.lib.validation.ValidationResult.ValidationType;
import com.rosetta.model.lib.validation.Validator;
import java.util.List;
import static com.google.common.base.Strings.isNullOrEmpty;
import static com.rosetta.model.lib.expression.ExpressionOperators.checkCardinality;
import static com.rosetta.model.lib.validation.ValidationResult.failure;
import static com.rosetta.model.lib.validation.ValidationResult.success;
import static java.util.stream.Collectors.joining;
import static java.util.stream.Collectors.toList;
public class DocumentValidator implements Validator {
private List getComparisonResults(Document o) {
return Lists.newArrayList(
checkCardinality("id", (String) o.getId() != null ? 1 : 0, 1, 1),
checkCardinality("year", (String) o.getYear() != null ? 1 : 0, 1, 1),
checkCardinality("documentType", (String) o.getDocumentType() != null ? 1 : 0, 1, 1),
checkCardinality("governingLaw", (String) o.getGoverningLaw() != null ? 1 : 0, 1, 1),
checkCardinality("publisher", (String) o.getPublisher() != null ? 1 : 0, 1, 1)
);
}
@Override
public ValidationResult validate(RosettaPath path, Document o) {
String error = getComparisonResults(o)
.stream()
.filter(res -> !res.get())
.map(res -> res.getError())
.collect(joining("; "));
if (!isNullOrEmpty(error)) {
return failure("Document", ValidationType.CARDINALITY, "Document", path, "", error);
}
return success("Document", ValidationType.CARDINALITY, "Document", path, "");
}
@Override
public List> getValidationResults(RosettaPath path, Document o) {
return getComparisonResults(o)
.stream()
.map(res -> {
if (!isNullOrEmpty(res.getError())) {
return failure("Document", ValidationType.CARDINALITY, "Document", path, "", res.getError());
}
return success("Document", ValidationType.CARDINALITY, "Document", path, "");
})
.collect(toList());
}
}