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