Removed redundant Jython interpreter instantiation test 63/90963/2
authorEliezio Oliveira <eliezio.oliveira@est.tech>
Thu, 6 Jun 2019 14:23:28 +0000 (15:23 +0100)
committerEliezio Oliveira <eliezio.oliveira@est.tech>
Mon, 8 Jul 2019 10:27:20 +0000 (11:27 +0100)
Change-Id: I5f446dcff85d0c2b0395e32bbbdcbb7b8ebe9708
Issue-ID: CCSDK-1454
Signed-off-by: Eliezio Oliveira <eliezio.oliveira@est.tech>
ms/blueprintsprocessor/modules/services/execution-service/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/services/execution/scripts/BlueprintPythonInterpreterProxyTest.kt [deleted file]

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 (file)
index 12ef973..0000000
+++ /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<String> = 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