From 1af982d83253ba2ebcc00f4471f2246469d20935 Mon Sep 17 00:00:00 2001 From: Eliezio Oliveira Date: Thu, 6 Jun 2019 15:23:28 +0100 Subject: Removed redundant Jython interpreter instantiation test Change-Id: I5f446dcff85d0c2b0395e32bbbdcbb7b8ebe9708 Issue-ID: CCSDK-1454 Signed-off-by: Eliezio Oliveira --- .../scripts/BlueprintPythonInterpreterProxyTest.kt | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 ms/blueprintsprocessor/modules/services/execution-service/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/services/execution/scripts/BlueprintPythonInterpreterProxyTest.kt (limited to 'ms/blueprintsprocessor/modules') diff --git a/ms/blueprintsprocessor/modules/services/execution-service/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/services/execution/scripts/BlueprintPythonInterpreterProxyTest.kt b/ms/blueprintsprocessor/modules/services/execution-service/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/services/execution/scripts/BlueprintPythonInterpreterProxyTest.kt deleted file mode 100644 index 12ef9733a..000000000 --- a/ms/blueprintsprocessor/modules/services/execution-service/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/services/execution/scripts/BlueprintPythonInterpreterProxyTest.kt +++ /dev/null @@ -1,48 +0,0 @@ -package org.onap.ccsdk.cds.blueprintsprocessor.services.execution.scripts - -import org.junit.Test -import org.junit.runner.RunWith -import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils - -import kotlin.test.assertNotNull -import org.springframework.beans.factory.annotation.Autowired -import org.springframework.test.context.ContextConfiguration -import org.springframework.test.context.TestPropertySource -import org.springframework.test.context.junit4.SpringRunner -import kotlin.test.BeforeTest - -@RunWith(SpringRunner::class) -@ContextConfiguration(classes = [BluePrintPython::class, PythonExecutorProperty::class, String::class]) -@TestPropertySource(properties = -["blueprints.processor.functions.python.executor.modulePaths=./../../../../../components/scripts/python/ccsdk_blueprints", - "blueprints.processor.functions.python.executor.executionPath=./../../../../../components/scripts/python/ccsdk_blueprints"]) -class BlueprintPythonInterpreterProxyTest { - - lateinit var blueprintPythonInterpreterProxy: BlueprintPythonInterpreterProxy - - @Autowired - lateinit var pythonExecutorProperty: PythonExecutorProperty - - @BeforeTest - fun init() { - val blueprintBasePath = "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration" - val pythonPath: MutableList = arrayListOf() - pythonPath.add(blueprintBasePath) - pythonPath.addAll(pythonExecutorProperty.modulePaths) - val pythonClassName = "PythonTestScript" - val content = JacksonUtils.getContent("./src/test/resources/PythonTestScript.py") - - val blueprintPython = BluePrintPython(pythonExecutorProperty.executionPath, pythonPath, arrayListOf()) - blueprintPython.content = content - blueprintPython.pythonClassName = pythonClassName - blueprintPython.moduleName = "Unit test - Blueprint Python Script [Class Name = $pythonClassName]" - - blueprintPythonInterpreterProxy = BlueprintPythonInterpreterProxy(blueprintPython) - } - - @Test - fun getPythonInterpreter() { - val pythonObject = blueprintPythonInterpreterProxy.getPythonInstance(hashMapOf()) - assertNotNull(pythonObject, "failed to get python interpreter") - } -} \ No newline at end of file -- cgit 1.2.3-korg