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