59be9406e0421aa390b0ad86ca812f23b3f1c513
[ccsdk/cds.git] /
1 /*
2  *  Copyright © 2019 IBM.
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
17 package org.onap.ccsdk.cds.blueprintsprocessor.services.workflow
18
19 import kotlinx.coroutines.runBlocking
20 import org.junit.Test
21 import org.junit.runner.RunWith
22 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
23 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceOutput
24 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
25 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintWorkflowExecutionService
26 import org.onap.ccsdk.cds.controllerblueprints.core.utils.BluePrintMetadataUtils
27 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
28 import org.springframework.beans.factory.annotation.Autowired
29 import org.springframework.test.context.ContextConfiguration
30 import org.springframework.test.context.junit4.SpringRunner
31 import kotlin.test.assertEquals
32 import kotlin.test.assertNotNull
33
34
35 @RunWith(SpringRunner::class)
36 @ContextConfiguration(classes = [WorkflowServiceConfiguration::class])
37 class BluePrintWorkflowExecutionServiceImplTest {
38
39     @Autowired
40     lateinit var bluePrintWorkflowExecutionService: BluePrintWorkflowExecutionService<ExecutionServiceInput, ExecutionServiceOutput>
41
42     @Test
43     fun testBluePrintWorkflowExecutionService() {
44         runBlocking {
45             val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
46                     "./../../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
47
48             val executionServiceInput = JacksonUtils.readValueFromClassPathFile("execution-input/resource-assignment-input.json",
49                     ExecutionServiceInput::class.java)!!
50
51
52             val executionServiceOutput = bluePrintWorkflowExecutionService
53                     .executeBluePrintWorkflow(bluePrintRuntimeService, executionServiceInput, hashMapOf())
54
55             assertNotNull(executionServiceOutput, "failed to get response")
56             assertEquals(BluePrintConstants.STATUS_SUCCESS, executionServiceOutput.status.message,
57                     "failed to get successful response")
58         }
59     }
60
61 }