Refactor test blueprint catalog
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / netconf-executor / src / test / kotlin / org / onap / ccsdk / apps / blueprintsprocessor / functions / netconf / executor / ComponentNetconfExecutorTest.kt
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.apps.blueprintsprocessor.functions.netconf.executor
18
19 import com.fasterxml.jackson.databind.JsonNode
20 import com.fasterxml.jackson.databind.node.JsonNodeFactory
21 import org.junit.Test
22 import org.junit.runner.RunWith
23 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.ActionIdentifiers
24 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.CommonHeader
25 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.ExecutionServiceInput
26 import org.onap.ccsdk.apps.blueprintsprocessor.functions.python.executor.PythonExecutorProperty
27 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants
28 import org.onap.ccsdk.apps.controllerblueprints.core.asJsonNode
29 import org.onap.ccsdk.apps.controllerblueprints.core.putJsonElement
30 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintMetadataUtils
31 import org.springframework.beans.factory.annotation.Autowired
32 import org.springframework.test.context.ContextConfiguration
33 import org.springframework.test.context.TestPropertySource
34 import org.springframework.test.context.junit4.SpringRunner
35
36 @RunWith(SpringRunner::class)
37 @ContextConfiguration(classes = [NetconfExecutorConfiguration::class, PythonExecutorProperty::class])
38 @TestPropertySource(properties =
39 ["blueprints.processor.functions.python.executor.modulePaths=./../../../../components/scripts/python/ccsdk_blueprints",
40     "blueprints.processor.functions.python.executor.executionPath=./../../../../components/scripts/python/ccsdk_blueprints"])
41 class ComponentNetconfExecutorTest {
42
43     @Autowired
44     lateinit var componentNetconfExecutor: ComponentNetconfExecutor
45
46     @Test
47     fun testComponentNetconfExecutor() {
48
49         val executionServiceInput = ExecutionServiceInput()
50         executionServiceInput.payload = JsonNodeFactory.instance.objectNode()
51
52         val commonHeader = CommonHeader()
53         commonHeader.requestId = "1234"
54         executionServiceInput.commonHeader = commonHeader
55
56         val actionIdentifiers = ActionIdentifiers()
57         actionIdentifiers.blueprintName = "baseconfiguration"
58         actionIdentifiers.blueprintVersion = "1.0.0"
59         actionIdentifiers.actionName = "activate"
60         executionServiceInput.actionIdentifiers = actionIdentifiers
61
62
63         val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime(commonHeader.requestId,
64                 "./../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
65
66         componentNetconfExecutor.bluePrintRuntimeService = bluePrintRuntimeService
67
68
69         val stepMetaData: MutableMap<String, JsonNode> = hashMapOf()
70         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_NODE_TEMPLATE, "activate-jython")
71         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_INTERFACE, "JythonExecutorComponent")
72         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_OPERATION, "process")
73         // Set Step Inputs in Blueprint Runtime Service
74         bluePrintRuntimeService.put("activate-jython-step-inputs", stepMetaData.asJsonNode())
75
76         componentNetconfExecutor.bluePrintRuntimeService = bluePrintRuntimeService
77         componentNetconfExecutor.stepName = "activate-jython"
78
79         componentNetconfExecutor.apply(executionServiceInput)
80
81     }
82 }
83