0e85680895a33f8e1a221713932b8b05a92cf17c
[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.apps.blueprintsprocessor.functions.python.executor
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 = [BlueprintPythonService::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 BlueprintPythonServiceTest {
36
37     @Autowired
38     private lateinit var blueprintPythonService: BlueprintPythonService
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("./../../../../components/scripts/python/ccsdk_blueprints/sample_blueprint_component.py")
48
49         val abstractComponentFunction = blueprintPythonService.jythonInstance<AbstractComponentFunction>(bluePrintContext, "SampleBlueprintComponent", content, dependencies)
50
51         assertNotNull(abstractComponentFunction, "failed to get python component")
52
53         abstractComponentFunction.process(ExecutionServiceInput())
54
55     }
56 }