Multiple fixes & enhancement
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / python-executor / src / test / kotlin / org / onap / ccsdk / apps / blueprintsprocessor / functions / python / executor / ComponentJythonExecutorTest.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.python.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.ExecutionServiceInput
23 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants
24 import org.onap.ccsdk.apps.controllerblueprints.core.asJsonNode
25 import org.onap.ccsdk.apps.controllerblueprints.core.putJsonElement
26 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintMetadataUtils
27 import org.onap.ccsdk.apps.controllerblueprints.core.utils.JacksonUtils
28 import org.springframework.beans.factory.annotation.Autowired
29 import org.springframework.test.context.ContextConfiguration
30 import org.springframework.test.context.TestPropertySource
31 import org.springframework.test.context.junit4.SpringRunner
32
33 @RunWith(SpringRunner::class)
34 @ContextConfiguration(classes = [PythonExecutorConfiguration::class, PythonExecutorProperty::class])
35 @TestPropertySource(properties =
36 ["blueprints.processor.functions.python.executor.modulePaths=./../../../../components/scripts/python/ccsdk_blueprints",
37     "blueprints.processor.functions.python.executor.executionPath=./../../../../components/scripts/python/ccsdk_blueprints"])
38 class ComponentJythonExecutorTest {
39
40     @Autowired
41     lateinit var componentJythonExecutor: ComponentJythonExecutor
42
43     @Test
44     fun testPythonComponentInjection() {
45
46         val executionServiceInput = JacksonUtils.readValueFromClassPathFile("payload/requests/sample-activate-request.json",
47                 ExecutionServiceInput::class.java)!!
48
49         val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
50                 "./../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
51
52         val stepMetaData: MutableMap<String, JsonNode> = hashMapOf()
53         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_NODE_TEMPLATE, "activate-jython")
54         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_INTERFACE, "JythonExecutorComponent")
55         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_OPERATION, "process")
56         bluePrintRuntimeService.put("activate-jython-step-inputs", stepMetaData.asJsonNode())
57
58         componentJythonExecutor.bluePrintRuntimeService = bluePrintRuntimeService
59         componentJythonExecutor.stepName = "activate-jython"
60
61
62         componentJythonExecutor.apply(executionServiceInput)
63
64     }
65 }