1st drop integration with BluePrintCatalogService
authorSteve Alphonse Siani <alphonse.steve.siani.djissitchi@ibm.com>
Fri, 28 Dec 2018 19:58:27 +0000 (14:58 -0500)
committerSteve Alphonse Siani <alphonse.steve.siani.djissitchi@ibm.com>
Fri, 4 Jan 2019 15:54:21 +0000 (10:54 -0500)
Change-Id: I0824dcaf0a36e4616c12f3ac53530e6863bee290
Issue-ID: CCSDK-418
Signed-off-by: Steve Alphonse Siani <alphonse.steve.siani.djissitchi@ibm.com>
ms/blueprintsprocessor/functions/python-executor/src/test/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/functions/python/executor/utils/PythonExecutorUtilsTest.kt
ms/blueprintsprocessor/modules/inbounds/selfservice-api/src/main/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/selfservice/api/BluePrintCatalogServiceImpl.kt [changed mode: 0644->0755]
ms/blueprintsprocessor/modules/inbounds/selfservice-api/src/test/kotlin/org/onap/ccsdk/apps/blueprintsprocessor/selfservice/api/mock/SelfServiceApiMocks.kt [changed mode: 0644->0755]

index 6197c4b..431c6b8 100644 (file)
@@ -38,7 +38,7 @@ class PythonExecutorUtilsTest {
 
         val content = JacksonUtils.getContent("./../../../../components/scripts/python/ccsdk_blueprints/sample_blueprint_component.py")
 
-        val abstractComponentFunction = PythonExecutorUtils.getPythonComponent("/home/brindasanth/onap/apps/components/scripts/python/ccsdk_blueprints", pythonPath, content,
+        val abstractComponentFunction = PythonExecutorUtils.getPythonComponent("./../../../../components/scripts/python/ccsdk_blueprints", pythonPath, content,
                 "SampleBlueprintComponent", properties)
 
         assertNotNull(abstractComponentFunction, "failed to get python component")
old mode 100644 (file)
new mode 100755 (executable)
index f72ddbb..484972a
@@ -24,7 +24,7 @@ import java.io.File
 @Service
 class BluePrintCatalogServiceImpl(private val bluePrintCoreConfiguration: BluePrintCoreConfiguration) : BluePrintCatalogService {
 
-    override fun uploadToDataBase(file: String): String {
+    override fun uploadToDataBase(file: String, validate : Boolean): String {
         TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
     }
 
@@ -38,4 +38,8 @@ class BluePrintCatalogServiceImpl(private val bluePrintCoreConfiguration: BluePr
                 .plus(name).plus(File.separator).plus(version)
 
     }
+
+    override fun downloadFromDataBase(uuid: String, path: String): String {
+        TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
+    }
 }
\ No newline at end of file
old mode 100644 (file)
new mode 100755 (executable)
index ea699f1..656d92f
@@ -39,7 +39,7 @@ class MockBlueprintDGExecutionService : BlueprintDGExecutionService {
 @Service
 class MockBluePrintCatalogService : BluePrintCatalogService {
 
-    override fun uploadToDataBase(file: String): String {
+    override fun uploadToDataBase(file: String, validate : Boolean): String {
         TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
     }
 
@@ -52,4 +52,8 @@ class MockBluePrintCatalogService : BluePrintCatalogService {
         assertNotNull(version, "failed to get blueprint version")
         return "./../../../../../components/model-catalog/blueprint-model/starter-blueprint/baseconfiguration"
     }
+
+    override fun downloadFromDataBase(uuid: String, path: String): String {
+        TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
+    }
 }
\ No newline at end of file