3c3efa252ee1058fe7efc5cdb53f71f165cf9fc5
[ccsdk/cds.git] /
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.cds.blueprintsprocessor.services.execution.scripts
17
18 import org.junit.Test
19
20 import org.junit.runner.RunWith
21 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
22 import org.springframework.beans.factory.annotation.Autowired
23 import org.springframework.test.context.ContextConfiguration
24 import org.springframework.test.context.TestPropertySource
25 import org.springframework.test.context.junit4.SpringRunner
26 import kotlin.test.assertNotNull
27 import kotlin.test.BeforeTest
28
29 @RunWith(SpringRunner::class)
30 @ContextConfiguration(classes = [BluePrintPython::class, PythonExecutorProperty::class, String::class])
31 @TestPropertySource(properties =
32 ["blueprints.processor.functions.python.executor.modulePaths=./../../../../../components/scripts/python/ccsdk_blueprints",
33     "blueprints.processor.functions.python.executor.executionPath=./../../../../../components/scripts/python/ccsdk_blueprints"])
34 class BlueprintPythonHostTest {
35
36     lateinit var blueprintPythonHost: BlueprintPythonHost
37
38     @Autowired
39     lateinit var pythonExecutorProperty: PythonExecutorProperty
40
41     @BeforeTest
42     fun init() {
43         val blueprintBasePath = "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration"
44         val pythonPath: MutableList<String> = arrayListOf()
45         pythonPath.add(blueprintBasePath)
46         pythonPath.addAll(pythonExecutorProperty.modulePaths)
47
48         blueprintPythonHost = BlueprintPythonHost(BluePrintPython(pythonExecutorProperty.executionPath, pythonPath, arrayListOf()))
49     }
50
51     @Test
52     fun testGetPythonComponent() {
53         val content = JacksonUtils.getContent("./src/test/resources/PythonTestScript.py")
54
55         val pythonClassName = "PythonTestScript"
56         val dependencies: MutableMap<String, Any> = hashMapOf()
57
58         val pythonObject = blueprintPythonHost.getPythonComponent(content, pythonClassName, dependencies)
59
60         assertNotNull(pythonObject, "failed to get python object")
61     }
62 }