2 * Copyright © 2017-2018 AT&T Intellectual Property.
3 * Modifications Copyright © 2019 IBM.
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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 package org.onap.ccsdk.cds.blueprintsprocessor.services.workflow
20 import kotlinx.coroutines.runBlocking
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
37 @RunWith(SpringRunner::class)
38 @ContextConfiguration(classes = [WorkflowServiceConfiguration::class, ComponentExecuteNodeExecutor::class])
39 class BlueprintServiceLogicTest {
42 lateinit var applicationContext: ApplicationContext
45 lateinit var dgWorkflowExecutionService: DGWorkflowExecutionService
48 fun testExecuteGraphWithSingleComponent() {
50 val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
51 "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
53 val executionServiceInput = JacksonReactorUtils
54 .readValueFromClassPathFile("execution-input/resource-assignment-input.json", ExecutionServiceInput::class.java)!!
56 // Assign Workflow inputs Mock
57 val input = executionServiceInput.payload.get("resource-assignment-request")
58 bluePrintRuntimeService.assignWorkflowInputs("resource-assignment", input)
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")
71 fun testExecuteGraphWithMultipleComponents() {
73 val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
74 "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
76 val executionServiceInput = JacksonReactorUtils
77 .readValueFromClassPathFile("execution-input/assign-activate-input.json", ExecutionServiceInput::class.java)!!
79 // Assign Workflow inputs Mock
80 val input = executionServiceInput.payload.get("assign-activate-request")
81 bluePrintRuntimeService.assignWorkflowInputs("assign-activate", input)
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")
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")
102 fun testProtoTypeFunction() {
103 val stepName1 = "step1"
104 val stepName2 = "step2"
105 val proto1 = applicationContext.getBean(PrototypeComponentFunction::class.java)
106 proto1.stepName = stepName1
108 val proto2 = applicationContext.getBean(PrototypeComponentFunction::class.java)
109 proto2.stepName = stepName2
111 assertEquals(stepName1, proto1.stepName, " Failed to match the step1 name")
112 assertEquals(stepName2, proto2.stepName, " Failed to match the step2 name")