Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / services / execution-service / src / test / kotlin / org / onap / ccsdk / apps / blueprintsprocessor / services / execution / scripts / BlueprintJythonServiceTest.kt
1 /*
2  * Copyright © 2019 IBM, Bell Canada.
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 package org.onap.ccsdk.apps.blueprintsprocessor.services.execution.scripts
17
18 import org.junit.Test
19 import org.junit.runner.RunWith
20 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.ExecutionServiceInput
21 import org.onap.ccsdk.apps.blueprintsprocessor.services.execution.AbstractComponentFunction
22 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintMetadataUtils
23 import org.onap.ccsdk.apps.controllerblueprints.core.utils.JacksonUtils
24 import org.springframework.beans.factory.annotation.Autowired
25 import org.springframework.test.context.ContextConfiguration
26 import org.springframework.test.context.TestPropertySource
27 import org.springframework.test.context.junit4.SpringRunner
28 import kotlin.test.assertNotNull
29
30 @RunWith(SpringRunner::class)
31 @ContextConfiguration(classes = [BlueprintJythonService::class, PythonExecutorProperty::class])
32 @TestPropertySource(properties =
33 ["blueprints.processor.functions.python.executor.modulePaths=./../../../../../components/scripts/python/ccsdk_blueprints",
34     "blueprints.processor.functions.python.executor.executionPath=./../../../../../components/scripts/python/ccsdk_blueprints"])
35 class BlueprintJythonServiceTest {
36
37     @Autowired
38     private lateinit var blueprintJythonService: BlueprintJythonService
39
40     @Test
41     fun testGetAbstractPythonPlugin() {
42         val bluePrintContext = BluePrintMetadataUtils.getBluePrintContext(
43                 "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
44
45         val dependencies: MutableMap<String, Any> = hashMapOf()
46
47         val content = JacksonUtils.getContent("./../../../../." +
48                 "./components/model-catalog/blueprint-model/test-blueprint/baseconfiguration/Scripts/python/SamplePythonComponentNode.py")
49
50         val abstractComponentFunction = blueprintJythonService.jythonInstance<AbstractComponentFunction>(bluePrintContext, "SamplePythonComponentNode", content, dependencies)
51
52         assertNotNull(abstractComponentFunction, "failed to get python component")
53
54         abstractComponentFunction.process(ExecutionServiceInput())
55
56     }
57 }