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 / 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.core.service.BlueprintClusterService
28 import org.onap.ccsdk.cds.blueprintsprocessor.services.workflow.mock.MockComponentFunction
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.JacksonUtils
33 import org.springframework.boot.test.mock.mockito.MockBean
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
38
39 @RunWith(SpringRunner::class)
40 @ContextConfiguration(classes = [WorkflowServiceConfiguration::class])
41
42 class NodeTemplateExecutionServiceTest {
43
44     @MockBean
45     lateinit var bluePrintClusterService: BlueprintClusterService
46
47     @Before
48     fun init() {
49         mockkObject(BlueprintDependencyService)
50         every { BlueprintDependencyService.applicationContext.getBean(any()) } returns MockComponentFunction()
51     }
52
53     @After
54     fun afterTests() {
55         unmockkAll()
56     }
57
58     @Test
59     fun testExecuteNodeTemplate() {
60         runBlocking {
61             val bluePrintRuntimeService = BlueprintMetadataUtils.getBlueprintRuntime(
62                 "1234",
63                 "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration"
64             )
65
66             val executionServiceInput = JacksonUtils.readValueFromClassPathFile(
67                 "execution-input/resource-assignment-input.json",
68                 ExecutionServiceInput::class.java
69             )!!
70
71             // Assign Workflow inputs Mock
72             val input = executionServiceInput.payload.get("resource-assignment-request")
73             bluePrintRuntimeService.assignWorkflowInputs("resource-assignment", input)
74
75             val nodeTemplate = "resource-assignment"
76             val nodeTemplateExecutionService = NodeTemplateExecutionService(bluePrintClusterService)
77             val executionServiceOutput = nodeTemplateExecutionService
78                 .executeNodeTemplate(bluePrintRuntimeService, nodeTemplate, executionServiceInput)
79
80             assertNotNull(executionServiceOutput, "failed to get response")
81             assertEquals(
82                 BlueprintConstants.STATUS_SUCCESS, executionServiceOutput.status.message,
83                 "failed to get successful response"
84             )
85         }
86     }
87 }