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
21 import org.junit.Before
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
39 @RunWith(SpringRunner::class)
40 @ContextConfiguration(classes = [WorkflowServiceConfiguration::class, ComponentExecuteNodeExecutor::class])
41 class BlueprintServiceLogicTest {
44 lateinit var applicationContext: ApplicationContext
47 lateinit var dgWorkflowExecutionService: DGWorkflowExecutionService
51 BluePrintDependencyService.inject(applicationContext)
55 fun testExecuteGraphWithSingleComponent() {
57 val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
58 "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
60 val executionServiceInput = JacksonReactorUtils
61 .readValueFromClassPathFile("execution-input/resource-assignment-input.json", ExecutionServiceInput::class.java)!!
63 // Assign Workflow inputs Mock
64 val input = executionServiceInput.payload.get("resource-assignment-request")
65 bluePrintRuntimeService.assignWorkflowInputs("resource-assignment", input)
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")
78 fun testExecuteGraphWithMultipleComponents() {
80 val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
81 "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
83 val executionServiceInput = JacksonReactorUtils
84 .readValueFromClassPathFile("execution-input/assign-activate-input.json", ExecutionServiceInput::class.java)!!
86 // Assign Workflow inputs Mock
87 val input = executionServiceInput.payload.get("assign-activate-request")
88 bluePrintRuntimeService.assignWorkflowInputs("assign-activate", input)
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")
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")
109 fun testProtoTypeFunction() {
110 val stepName1 = "step1"
111 val stepName2 = "step2"
112 val proto1 = applicationContext.getBean(PrototypeComponentFunction::class.java)
113 proto1.stepName = stepName1
115 val proto2 = applicationContext.getBean(PrototypeComponentFunction::class.java)
116 proto2.stepName = stepName2
118 assertEquals(stepName1, proto1.stepName, " Failed to match the step1 name")
119 assertEquals(stepName2, proto2.stepName, " Failed to match the step2 name")