Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / services / workflow-service / src / test / kotlin / org / onap / ccsdk / apps / blueprintsprocessor / services / workflow / BlueprintServiceLogicTest.kt
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  * Modifications Copyright © 2019 IBM.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 package org.onap.ccsdk.apps.blueprintsprocessor.services.workflow
19
20 import kotlinx.coroutines.runBlocking
21 import org.junit.Test
22 import org.junit.runner.RunWith
23 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.ExecutionServiceInput
24 import org.onap.ccsdk.apps.blueprintsprocessor.services.workflow.executor.ComponentExecuteNodeExecutor
25 import org.onap.ccsdk.apps.blueprintsprocessor.services.workflow.mock.PrototypeComponentFunction
26 import org.onap.ccsdk.apps.blueprintsprocessor.services.workflow.mock.SingletonComponentFunction
27 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintMetadataUtils
28 import org.onap.ccsdk.apps.controllerblueprints.core.utils.JacksonUtils
29 import org.slf4j.LoggerFactory
30 import org.springframework.beans.factory.annotation.Autowired
31 import org.springframework.context.ApplicationContext
32 import org.springframework.test.context.ContextConfiguration
33 import org.springframework.test.context.junit4.SpringRunner
34 import kotlin.test.assertEquals
35
36 @RunWith(SpringRunner::class)
37 @ContextConfiguration(classes = [WorkflowServiceConfiguration::class, ComponentExecuteNodeExecutor::class])
38 class BlueprintServiceLogicTest {
39
40     private val log = LoggerFactory.getLogger(BlueprintServiceLogicTest::class.java)
41
42     @Autowired
43     lateinit var applicationContext: ApplicationContext
44
45     @Autowired
46     lateinit var dgWorkflowExecutionService: DGWorkflowExecutionService
47
48     @Test
49     fun testExecuteGraphWithSingleComponent() {
50
51         val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
52                 "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
53
54         val executionServiceInput = JacksonUtils.readValueFromClassPathFile("execution-input/resource-assignment-input.json", ExecutionServiceInput::class.java)!!
55
56         runBlocking {
57             dgWorkflowExecutionService.executeBluePrintWorkflow(bluePrintRuntimeService, executionServiceInput, mutableMapOf())
58         }
59
60
61     }
62
63     @Test
64     fun testExecuteGraphWithMultipleComponents() {
65
66         val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
67                 "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
68
69         val executionServiceInput = JacksonUtils.readValueFromClassPathFile("execution-input/assign-activate-input.json", ExecutionServiceInput::class.java)!!
70
71         runBlocking {
72             dgWorkflowExecutionService.executeBluePrintWorkflow(bluePrintRuntimeService, executionServiceInput, mutableMapOf())
73         }
74
75     }
76
77     @Test
78     fun testSingleton() {
79         val singleton1 = applicationContext.getBean(SingletonComponentFunction::class.java)
80         singleton1.stepName = "step1"
81         val singleton2 = applicationContext.getBean(SingletonComponentFunction::class.java)
82         assertEquals(singleton1.stepName, singleton2.stepName, " failed to get singleton data")
83     }
84
85     @Test
86     fun testProtoTypeFunction() {
87         val stepName1 = "step1"
88         val stepName2 = "step2"
89         val proto1 = applicationContext.getBean(PrototypeComponentFunction::class.java)
90         proto1.stepName = stepName1
91
92         val proto2 = applicationContext.getBean(PrototypeComponentFunction::class.java)
93         proto2.stepName = stepName2
94
95         assertEquals(stepName1, proto1.stepName, " Failed to match the step1 name")
96         assertEquals(stepName2, proto2.stepName, " Failed to match the step2 name")
97     }
98
99 }