8adde8639de45755aed04f5ec5e0817dbc5927dd
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / resource-resolution / src / test / kotlin / org / onap / ccsdk / apps / blueprintsprocessor / functions / resource / resolution / ResourceResolutionComponentTest.kt
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
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.apps.blueprintsprocessor.functions.resource.resolution
18
19 import com.fasterxml.jackson.databind.JsonNode
20 import org.junit.Test
21 import org.junit.runner.RunWith
22 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.ExecutionServiceInput
23 import org.onap.ccsdk.apps.blueprintsprocessor.core.utils.PayloadUtils
24 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution.processor.*
25 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants
26 import org.onap.ccsdk.apps.controllerblueprints.core.asJsonNode
27 import org.onap.ccsdk.apps.controllerblueprints.core.putJsonElement
28 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintMetadataUtils
29 import org.onap.ccsdk.apps.controllerblueprints.core.utils.JacksonUtils
30 import org.springframework.beans.factory.annotation.Autowired
31 import org.springframework.test.context.ContextConfiguration
32 import org.springframework.test.context.junit4.SpringRunner
33
34 @RunWith(SpringRunner::class)
35 @ContextConfiguration(classes = [ResourceResolutionComponent::class, ResourceResolutionService::class,
36     InputResourceAssignmentProcessor::class, DefaultResourceAssignmentProcessor::class,
37     PrimaryDataResourceAssignmentProcessor::class, SimpleRestResourceAssignmentProcessor::class,
38     CapabilityResourceAssignmentProcessor::class])
39 class ResourceResolutionComponentTest {
40
41     @Autowired
42     lateinit var resourceResolutionComponent: ResourceResolutionComponent
43
44     @Test
45     fun testProcess() {
46
47         val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
48                 "./../../../../components/model-catalog/blueprint-model/starter-blueprint/baseconfiguration")
49
50         val executionServiceInput = JacksonUtils.readValueFromClassPathFile("payload/requests/sample-resourceresolution-request.json",
51                 ExecutionServiceInput::class.java)!!
52
53         // Prepare Inputs
54         PayloadUtils.prepareInputsFromWorkflowPayload(bluePrintRuntimeService, executionServiceInput.payload, "resource-assignment")
55
56         val stepMetaData: MutableMap<String, JsonNode> = hashMapOf()
57         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_NODE_TEMPLATE, "resource-assignment")
58         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_INTERFACE, "ResourceAssignmentComponent")
59         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_OPERATION, "process")
60         bluePrintRuntimeService.put("resource-assignment-step-inputs", stepMetaData.asJsonNode())
61
62         resourceResolutionComponent.bluePrintRuntimeService = bluePrintRuntimeService
63         resourceResolutionComponent.stepName = "resource-assignment"
64         resourceResolutionComponent.apply(executionServiceInput)
65     }
66 }