2 * Copyright © 2019 IBM, Bell Canada.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.onap.ccsdk.cds.blueprintsprocessor.services.execution.scripts
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
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 {
36 lateinit var blueprintPythonHost: BlueprintPythonHost
39 lateinit var pythonExecutorProperty: PythonExecutorProperty
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)
48 blueprintPythonHost = BlueprintPythonHost(BluePrintPython(pythonExecutorProperty.executionPath, pythonPath, arrayListOf()))
52 fun testGetPythonComponent() {
53 val content = JacksonUtils.getContent("./src/test/resources/PythonTestScript.py")
55 val pythonClassName = "PythonTestScript"
56 val dependencies: MutableMap<String, Any> = hashMapOf()
58 val pythonObject = blueprintPythonHost.getPythonComponent(content, pythonClassName, dependencies)
60 assertNotNull(pythonObject, "failed to get python object")