Merge "fixed sonar issue in AssignVlanTagResponse"
[ccsdk/apps.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.resolutionprocessor.DataBaseResourceAssignmentProcessor
25 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolutionprocessor.DefaultResourceAssignmentProcessor
26 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolutionprocessor.InputResourceAssignmentProcessor
27 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolutionprocessor.SimpleRestResourceAssignmentProcessor
28 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants
29 import org.onap.ccsdk.apps.controllerblueprints.core.asJsonNode
30 import org.onap.ccsdk.apps.controllerblueprints.core.putJsonElement
31 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintMetadataUtils
32 import org.onap.ccsdk.apps.controllerblueprints.core.utils.JacksonUtils
33 import org.springframework.beans.factory.annotation.Autowired
34 import org.springframework.test.context.ContextConfiguration
35 import org.springframework.test.context.junit4.SpringRunner
36
37 @RunWith(SpringRunner::class)
38 @ContextConfiguration(classes = [ResourceResolutionComponent::class, ResourceResolutionService::class,
39     InputResourceAssignmentProcessor::class, DefaultResourceAssignmentProcessor::class,
40     DataBaseResourceAssignmentProcessor::class, SimpleRestResourceAssignmentProcessor::class])
41 class ResourceResolutionComponentTest {
42
43     @Autowired
44     lateinit var resourceResolutionComponent: ResourceResolutionComponent
45
46     @Test
47     fun testProcess() {
48
49         val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
50                 "./../../../../components/model-catalog/blueprint-model/starter-blueprint/baseconfiguration")
51
52         val executionServiceInput = JacksonUtils.readValueFromClassPathFile("payload/requests/sample-resourceresolution-request.json",
53                 ExecutionServiceInput::class.java)!!
54
55         // Prepare Inputs
56         PayloadUtils.prepareInputsFromWorkflowPayload(bluePrintRuntimeService, executionServiceInput.payload, "resource-assignment")
57
58         val stepMetaData: MutableMap<String, JsonNode> = hashMapOf()
59         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_NODE_TEMPLATE, "resource-assignment")
60         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_INTERFACE, "ResourceAssignmentComponent")
61         stepMetaData.putJsonElement(BluePrintConstants.PROPERTY_CURRENT_OPERATION, "process")
62         bluePrintRuntimeService.put("resource-assignment-step-inputs", stepMetaData.asJsonNode())
63
64         resourceResolutionComponent.bluePrintRuntimeService = bluePrintRuntimeService
65         resourceResolutionComponent.stepName = "resource-assignment"
66         resourceResolutionComponent.apply(executionServiceInput)
67     }
68 }