Merge "Add Imperative workflow execution service."
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / services / workflow-service / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / services / workflow / NodeTemplateExecutionServiceTest.kt
1 /*
2  * Copyright © 2019 IBM, Bell Canada.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.ccsdk.cds.blueprintsprocessor.services.workflow
17
18 import io.mockk.every
19 import io.mockk.mockkObject
20 import io.mockk.unmockkAll
21 import kotlinx.coroutines.runBlocking
22 import org.junit.After
23 import org.junit.Before
24 import org.junit.Test
25 import org.junit.runner.RunWith
26 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
27 import org.onap.ccsdk.cds.blueprintsprocessor.services.workflow.mock.MockComponentFunction
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.JacksonUtils
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])
39
40 class NodeTemplateExecutionServiceTest {
41     @Before
42     fun init() {
43         mockkObject(BluePrintDependencyService)
44         every { BluePrintDependencyService.applicationContext.getBean(any()) } returns MockComponentFunction()
45     }
46
47     @After
48     fun afterTests() {
49         unmockkAll()
50     }
51
52     @Test
53     fun testExecuteNodeTemplate() {
54         runBlocking {
55             val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
56                     "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
57
58             val executionServiceInput = JacksonUtils.readValueFromClassPathFile("execution-input/resource-assignment-input.json",
59                     ExecutionServiceInput::class.java)!!
60
61             // Assign Workflow inputs Mock
62             val input = executionServiceInput.payload.get("resource-assignment-request")
63             bluePrintRuntimeService.assignWorkflowInputs("resource-assignment", input)
64
65             val nodeTemplate = "resource-assignment"
66             val nodeTemplateExecutionService = NodeTemplateExecutionService()
67             val executionServiceOutput = nodeTemplateExecutionService
68                     .executeNodeTemplate(bluePrintRuntimeService, nodeTemplate, executionServiceInput)
69
70             assertNotNull(executionServiceOutput, "failed to get response")
71             assertEquals(BluePrintConstants.STATUS_SUCCESS, executionServiceOutput.status.message,
72                     "failed to get successful response")
73         }
74     }
75 }