Add Topology Template Blueprint Validation.
authorMuthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
Tue, 27 Nov 2018 18:27:43 +0000 (13:27 -0500)
committerBrinda Santh Muthuramalingam <bs2796@att.com>
Fri, 30 Nov 2018 20:56:26 +0000 (20:56 +0000)
Change-Id: If415979740c4c82d7024ea34eecd11185524dab8
Issue-ID: CCSDK-757
Signed-off-by: Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/validation/BluePrintTopologyTemplateValidatorImpl.kt [new file with mode: 0644]

diff --git a/components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/validation/BluePrintTopologyTemplateValidatorImpl.kt b/components/core/src/main/kotlin/org/onap/ccsdk/apps/controllerblueprints/core/validation/BluePrintTopologyTemplateValidatorImpl.kt
new file mode 100644 (file)
index 0000000..7cddf27
--- /dev/null
@@ -0,0 +1,68 @@
+/*
+ * Copyright © 2017-2018 AT&T Intellectual Property.
+ *
+ * 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 org.onap.ccsdk.apps.controllerblueprints.core.validation
+
+import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintException
+import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintValidationError
+import org.onap.ccsdk.apps.controllerblueprints.core.data.NodeTemplate
+import org.onap.ccsdk.apps.controllerblueprints.core.data.PropertyDefinition
+import org.onap.ccsdk.apps.controllerblueprints.core.data.TopologyTemplate
+import org.onap.ccsdk.apps.controllerblueprints.core.data.Workflow
+import org.onap.ccsdk.apps.controllerblueprints.core.interfaces.BluePrintTopologyTemplateValidator
+import org.onap.ccsdk.apps.controllerblueprints.core.interfaces.BluePrintTypeValidatorService
+import org.onap.ccsdk.apps.controllerblueprints.core.service.BluePrintContext
+
+open class BluePrintTopologyTemplateValidatorImpl(private val bluePrintTypeValidatorService: BluePrintTypeValidatorService) : BluePrintTopologyTemplateValidator {
+
+    var bluePrintContext: BluePrintContext? = null
+    var error: BluePrintValidationError? = null
+
+    override fun validate(bluePrintContext: BluePrintContext, error: BluePrintValidationError, name: String, topologyTemplate: TopologyTemplate) {
+        this.bluePrintContext = bluePrintContext
+        // Validate Inputs
+        topologyTemplate.inputs?.let { validateInputs(topologyTemplate.inputs!!) }
+        // Validate Node Templates
+        topologyTemplate.nodeTemplates?.let { validateNodeTemplates(topologyTemplate.nodeTemplates!!) }
+        // Validate Workflow
+        topologyTemplate.workflows?.let { validateWorkflows(topologyTemplate.workflows!!) }
+    }
+
+    @Throws(BluePrintException::class)
+    fun validateInputs(inputs: MutableMap<String, PropertyDefinition>) {
+        bluePrintTypeValidatorService.validatePropertyDefinitions(bluePrintContext!!, error!!, inputs)
+    }
+
+
+    @Throws(BluePrintException::class)
+    fun validateNodeTemplates(nodeTemplates: MutableMap<String, NodeTemplate>) {
+
+        nodeTemplates.forEach { nodeTemplateName, nodeTemplate ->
+            // Validate Single Node Template
+            bluePrintTypeValidatorService.validateNodeTemplate(bluePrintContext!!, error!!, nodeTemplateName, nodeTemplate)
+        }
+    }
+
+    @Throws(BluePrintException::class)
+    open fun validateWorkflows(workflows: MutableMap<String, Workflow>) {
+
+        workflows.forEach { workflowName, workflow ->
+            // Validate Single workflow
+            bluePrintTypeValidatorService.validateWorkflow(bluePrintContext!!, error!!, workflowName, workflow)
+        }
+    }
+
+}
\ No newline at end of file