12fd9c7c4cd8a8da8390683475cbd3e52375a636
[ccsdk/cds.git] /
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.cds.blueprintsprocessor.services.workflow
19
20 import kotlinx.coroutines.runBlocking
21 import org.junit.Before
22 import org.junit.Test
23 import org.junit.runner.RunWith
24 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
25 import org.onap.ccsdk.cds.blueprintsprocessor.services.workflow.executor.ComponentExecuteNodeExecutor
26 import org.onap.ccsdk.cds.blueprintsprocessor.services.workflow.mock.PrototypeComponentFunction
27 import org.onap.ccsdk.cds.blueprintsprocessor.services.workflow.mock.SingletonComponentFunction
28 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
29 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintDependencyService
30 import org.onap.ccsdk.cds.controllerblueprints.core.utils.BluePrintMetadataUtils
31 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonReactorUtils
32 import org.springframework.beans.factory.annotation.Autowired
33 import org.springframework.context.ApplicationContext
34 import org.springframework.test.context.ContextConfiguration
35 import org.springframework.test.context.junit4.SpringRunner
36 import kotlin.test.assertEquals
37 import kotlin.test.assertNotNull
38
39 @RunWith(SpringRunner::class)
40 @ContextConfiguration(classes = [WorkflowServiceConfiguration::class, ComponentExecuteNodeExecutor::class])
41 class BlueprintServiceLogicTest {
42
43     @Autowired
44     lateinit var applicationContext: ApplicationContext
45
46     @Autowired
47     lateinit var dgWorkflowExecutionService: DGWorkflowExecutionService
48
49     @Before
50     fun init() {
51         BluePrintDependencyService.inject(applicationContext)
52     }
53
54     @Test
55     fun testExecuteGraphWithSingleComponent() {
56         runBlocking {
57             val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
58                     "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
59
60             val executionServiceInput = JacksonReactorUtils
61                     .readValueFromClassPathFile("execution-input/resource-assignment-input.json", ExecutionServiceInput::class.java)!!
62
63             // Assign Workflow inputs Mock
64             val input = executionServiceInput.payload.get("resource-assignment-request")
65             bluePrintRuntimeService.assignWorkflowInputs("resource-assignment", input)
66
67             val executionServiceOutput = dgWorkflowExecutionService
68                     .executeBluePrintWorkflow(bluePrintRuntimeService, executionServiceInput, mutableMapOf())
69             assertNotNull(executionServiceOutput, "failed to get response")
70             assertEquals(BluePrintConstants.STATUS_SUCCESS, executionServiceOutput.status.message,
71                     "failed to get successful response")
72         }
73
74
75     }
76
77     @Test
78     fun testExecuteGraphWithMultipleComponents() {
79         runBlocking {
80             val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
81                     "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
82
83             val executionServiceInput = JacksonReactorUtils
84                     .readValueFromClassPathFile("execution-input/assign-activate-input.json", ExecutionServiceInput::class.java)!!
85
86             // Assign Workflow inputs Mock
87             val input = executionServiceInput.payload.get("assign-activate-request")
88             bluePrintRuntimeService.assignWorkflowInputs("assign-activate", input)
89
90
91             val executionServiceOutput = dgWorkflowExecutionService
92                     .executeBluePrintWorkflow(bluePrintRuntimeService, executionServiceInput, mutableMapOf())
93             assertNotNull(executionServiceOutput, "failed to get response")
94             assertEquals(BluePrintConstants.STATUS_SUCCESS, executionServiceOutput.status.message,
95                     "failed to get successful response")
96         }
97
98     }
99
100     @Test
101     fun testSingleton() {
102         val singleton1 = applicationContext.getBean(SingletonComponentFunction::class.java)
103         singleton1.stepName = "step1"
104         val singleton2 = applicationContext.getBean(SingletonComponentFunction::class.java)
105         assertEquals(singleton1.stepName, singleton2.stepName, " failed to get singleton data")
106     }
107
108     @Test
109     fun testProtoTypeFunction() {
110         val stepName1 = "step1"
111         val stepName2 = "step2"
112         val proto1 = applicationContext.getBean(PrototypeComponentFunction::class.java)
113         proto1.stepName = stepName1
114
115         val proto2 = applicationContext.getBean(PrototypeComponentFunction::class.java)
116         proto2.stepName = stepName2
117
118         assertEquals(stepName1, proto1.stepName, " Failed to match the step1 name")
119         assertEquals(stepName2, proto2.stepName, " Failed to match the step2 name")
120     }
121
122 }