X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=mod2%2Fhelm-generator%2Fhelmchartgenerator-core%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fdcaegen2%2Fplatform%2Fhelmchartgenerator%2Fvalidation%2FChartTemplateStructureValidator.java;h=07b97c9b9e99a6374407e142e39b243e937ae7b5;hb=a494a322554924f6f9c3d6cc79240f54d3a8da0b;hp=796ee918891ee9093525b8cf2ba11f66e9ad9aea;hpb=0d1b8727a44b0add010b79e495b799e538057d20;p=dcaegen2%2Fplatform.git diff --git a/mod2/helm-generator/helmchartgenerator-core/src/main/java/org/onap/dcaegen2/platform/helmchartgenerator/validation/ChartTemplateStructureValidator.java b/mod2/helm-generator/helmchartgenerator-core/src/main/java/org/onap/dcaegen2/platform/helmchartgenerator/validation/ChartTemplateStructureValidator.java index 796ee91..07b97c9 100644 --- a/mod2/helm-generator/helmchartgenerator-core/src/main/java/org/onap/dcaegen2/platform/helmchartgenerator/validation/ChartTemplateStructureValidator.java +++ b/mod2/helm-generator/helmchartgenerator-core/src/main/java/org/onap/dcaegen2/platform/helmchartgenerator/validation/ChartTemplateStructureValidator.java @@ -18,43 +18,9 @@ package org.onap.dcaegen2.platform.helmchartgenerator.validation; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; - /** - * A class to validate structure of the base helm directory + * An interface to validate structure of the base helm directory */ -public class ChartTemplateStructureValidator { - - /** - * validates base helm chart directory and throws error if the structure is not proper. - * @param chartTemplateLocation base helm chart dir location - */ - public static void validateChartTemplateStructure(String chartTemplateLocation) { - checkBaseDirectory(chartTemplateLocation); - } - - private static void checkBaseDirectory(String chartTemplateLocation) { - Path base = Paths.get(chartTemplateLocation, "base"); - Path charts = Paths.get(chartTemplateLocation, "base/charts"); - Path templates = Paths.get(chartTemplateLocation, "base/templates"); - Path chart = Paths.get(chartTemplateLocation, "base/Chart.yaml"); - Path values = Paths.get(chartTemplateLocation, "base/values.yaml"); - if(!Files.exists(base)){ - throw new RuntimeException("base directory not found in chart template location"); - } - if(!Files.exists(charts)){ - throw new RuntimeException("charts directory not found in base directory"); - } - if(!Files.exists(templates)){ - throw new RuntimeException("templates directory not found in base directory"); - } - if(!Files.exists(chart)){ - throw new RuntimeException("chart.yaml not found in base directory"); - } - if(!Files.exists(values)){ - throw new RuntimeException("values.yaml not found in base directory"); - } - } +public interface ChartTemplateStructureValidator { + void validateChartTemplateStructure(String chartTemplateLocation); }