From 89e3a96553b1607fa7ab3ee9dd69150be3a75a81 Mon Sep 17 00:00:00 2001 From: Maciej Malewski Date: Mon, 13 Jul 2020 12:22:05 +0200 Subject: Fix validation process Rule must check if files defined in a manifest file are available in a csar artifact. Code created by Bogumil Zebek. Issue-ID: VNFSDK-583 Signed-off-by: Maciej Malewski Change-Id: I890a67bb8f62af306825f2c7d150baffac385671 --- .../cvc/csar/cc/sol004/VTPValidateCSARR01123.java | 69 ++++++++++++++++++---- 1 file changed, 59 insertions(+), 10 deletions(-) (limited to 'csarvalidation/src/main/java/org/onap/cvc/csar/cc') diff --git a/csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol004/VTPValidateCSARR01123.java b/csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol004/VTPValidateCSARR01123.java index 69563b0..a7c5737 100644 --- a/csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol004/VTPValidateCSARR01123.java +++ b/csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol004/VTPValidateCSARR01123.java @@ -26,6 +26,7 @@ import org.onap.cvc.csar.parser.SourcesParser; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; +import java.util.ArrayList; import java.util.List; import java.util.function.Predicate; import java.util.stream.Collectors; @@ -46,30 +47,78 @@ public class VTPValidateCSARR01123 extends VTPValidateCSARBase { CSARErrorNotAllFilesLocatedInCSARWhereListedInManifest(List fileInCsarThatAreNotLocatedInManifest) { super("Source", CSARArchive.TOSCA_METADATA); - this.setCode("0x1000"); - this.message = "files: " + this.setCode("0x1001"); + this.message = "file(s): [" + String.join(", ", fileInCsarThatAreNotLocatedInManifest) - + " are located in CSAR, but are not located in Manifest as Source"; + + "] available in CSAR, but cannot be found in Manifest as Source"; + } + } + + public static class CSARErrorNotAllFilesLocatedInManifestWhereListedInCsar extends CSARErrorEntryMissing { + CSARErrorNotAllFilesLocatedInManifestWhereListedInCsar(List fileInCsarThatAreNotLocatedInManifest) { + super("Source", + CSARArchive.TOSCA_METADATA); + this.setCode("0x1002"); + this.message = "file(s): [" + + String.join(", ", fileInCsarThatAreNotLocatedInManifest) + + "] defined in Manifest as Source, but cannot be found in CSAR"; } } @Override protected void validateCSAR(CSARArchive csar) throws Exception { + verifyThatProviderDataAreDefined(csar); + verifyPackageFileStructure(csar); + } + + private void verifyPackageFileStructure(CSARArchive csar) throws IOException { + Path rootFolder = getRootFolder(csar); + List filesInCsar = getAllFilesInDirectory(rootFolder); + List sourcesInManifest = getAllFilesFromManifestSources(csar.getManifest()); + + if (areAllFilesDefinedInManifest(filesInCsar, sourcesInManifest)) { + verifyThatAllFilesFromCsarAreDefinedInManifest(filesInCsar, sourcesInManifest); + verifyThatAllFilesDefinedInManifestAreAvailableInCsar(sourcesInManifest, filesInCsar); + } + } + + private void verifyThatProviderDataAreDefined(CSARArchive csar) { if (csar.getVendorName() == null || csar.getVersion() == null) { errors.add(new CSARErrorEntryVNFProviderDetailsNotFound()); } - Path rootFolder = csar.getWorkspace().getPathToCsarFolder() - .orElseThrow(() -> new IOException("Couldn't find CSAR root catalog")); - List filesInCsar = getAllFilesInDirectory(rootFolder); - List sourcesInManifest = getAllFilesFromManifestSources(csar.getManifest()); + } - if (filesInCsar.size() != sourcesInManifest.size() || !sourcesInManifest.containsAll(filesInCsar)) { - filesInCsar.removeAll(sourcesInManifest); - errors.add(new VTPValidateCSARR01123.CSARErrorNotAllFilesLocatedInCSARWhereListedInManifest(filesInCsar)); + private Path getRootFolder(CSARArchive csar) throws IOException { + return csar.getWorkspace().getPathToCsarFolder() + .orElseThrow(() -> new IOException("Couldn't find CSAR root catalog")); + } + + + private void verifyThatAllFilesDefinedInManifestAreAvailableInCsar(List sourcesInManifest, List filesInCsar) { + if(!filesInCsar.containsAll(sourcesInManifest)){ + List sourcesNotAvailableInCsarFile = fetchElementsNotAvailableAtSecondList(sourcesInManifest, filesInCsar); + errors.add(new CSARErrorNotAllFilesLocatedInManifestWhereListedInCsar(sourcesNotAvailableInCsarFile)); } } + private void verifyThatAllFilesFromCsarAreDefinedInManifest(List filesInCsar, List sourcesInManifest) { + if(!sourcesInManifest.containsAll(filesInCsar) ){ + List filesNotDefinedInManifestFile = fetchElementsNotAvailableAtSecondList(filesInCsar, sourcesInManifest); + errors.add(new CSARErrorNotAllFilesLocatedInCSARWhereListedInManifest(filesNotDefinedInManifestFile)); + } + } + + private List fetchElementsNotAvailableAtSecondList(List firstList, List secondList) { + List copyOfFirstList = new ArrayList<>(firstList); + copyOfFirstList.removeAll(secondList); + return copyOfFirstList; + } + + private boolean areAllFilesDefinedInManifest(List filesInCsar, List sourcesInManifest) { + return filesInCsar.size() != sourcesInManifest.size(); + } + private List getAllFilesFromManifestSources(CSARArchive.Manifest manifest) { return manifest.getSources() .stream() -- cgit 1.2.3-korg