05f6a2db6acfba314c09114aca93e1bebc6d939a
[ccsdk/cds.git] /
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 org.junit.Test
21 import org.junit.runner.RunWith
22 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.ActionIdentifiers
23 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.CommonHeader
24 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.ExecutionServiceInput
25 import org.onap.ccsdk.apps.blueprintsprocessor.functions.python.executor.PythonExecutorProperty
26 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants
27 import org.onap.ccsdk.apps.controllerblueprints.core.asJsonNode
28 import org.onap.ccsdk.apps.controllerblueprints.core.putJsonElement
29 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintMetadataUtils
30 import org.springframework.beans.factory.annotation.Autowired
31 import org.springframework.test.context.ContextConfiguration
32 import org.springframework.test.context.TestPropertySource
33 import org.springframework.test.context.junit4.SpringRunner
34
35 @RunWith(SpringRunner::class)
36 @ContextConfiguration(classes = [NetconfExecutorConfiguration::class, PythonExecutorProperty::class])
37 @TestPropertySource(properties =
38 ["blueprints.processor.functions.python.executor.modulePaths=./../../../../components/scripts/python/ccsdk_blueprints",
39     "blueprints.processor.functions.python.executor.executionPath=./../../../../components/scripts/python/ccsdk_blueprints"])
40 class ComponentNetconfExecutorTest {
41
42     @Autowired
43     lateinit var componentNetconfExecutor: ComponentNetconfExecutor
44
45     @Test
46     fun testComponentNetconfExecutor() {
47
48         val executionServiceInput = ExecutionServiceInput()
49         val commonHeader = CommonHeader()
50         commonHeader.requestId = "1234"
51         executionServiceInput.commonHeader = commonHeader
52
53         val actionIdentifiers = ActionIdentifiers()
54         actionIdentifiers.blueprintName = "baseconfiguration"
55         actionIdentifiers.blueprintVersion = "1.0.0"
56         actionIdentifiers.actionName = "activate"
57         executionServiceInput.actionIdentifiers = actionIdentifiers
58
59
60         val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime(commonHeader.requestId,
61                 "./../../../../components/model-catalog/blueprint-model/starter-blueprint/baseconfiguration")
62
63         componentNetconfExecutor.bluePrintRuntimeService = bluePrintRuntimeService
64
65
66         val stepMetaData: MutableMap<String, JsonNode> = hashMapOf()
67         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_NODE_TEMPLATE, "activate-jython")
68         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_INTERFACE, "JythonExecutorComponent")
69         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_OPERATION, "process")
70         // Set Step Inputs in Blueprint Runtime Service
71         bluePrintRuntimeService.put("activate-jython-step-inputs", stepMetaData.asJsonNode())
72
73         componentNetconfExecutor.bluePrintRuntimeService = bluePrintRuntimeService
74         componentNetconfExecutor.stepName = "activate-jython"
75
76         componentNetconfExecutor.apply(executionServiceInput)
77
78     }
79 }
80