f9a41cead2ef84b1207c58e3ec52df20c0eb100a
[ccsdk/cds.git] /
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.functions.resource.resolution.mock
17
18 import com.fasterxml.jackson.databind.JsonNode
19 import org.apache.commons.collections.MapUtils
20 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.RestResourceSource
21 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceResolutionConstants
22 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.processor.RestResourceResolutionProcessor
23 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BlueprintWebClientService
24 import org.onap.ccsdk.cds.controllerblueprints.core.asJsonPrimitive
25 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
26 import org.slf4j.LoggerFactory
27 import java.util.HashMap
28
29 class MockRestResourceResolutionProcessor(
30     private val blueprintRestLibPropertyService:
31         MockBluePrintRestLibPropertyService
32 ) : RestResourceResolutionProcessor(blueprintRestLibPropertyService) {
33
34     private val logger = LoggerFactory.getLogger(MockRestResourceResolutionProcessor::class.java)
35
36     override fun resolveInputKeyMappingVariables(inputKeyMapping: Map<String, String>): Map<String, JsonNode> {
37         val resolvedInputKeyMapping = HashMap<String, JsonNode>()
38         if (MapUtils.isNotEmpty(inputKeyMapping)) {
39
40             resolvedInputKeyMapping["service-instance-id"] = "10".asJsonPrimitive()
41             resolvedInputKeyMapping["vnf_name"] = "vnf1".asJsonPrimitive()
42             resolvedInputKeyMapping["vnf-id"] = "123456".asJsonPrimitive()
43         }
44         return resolvedInputKeyMapping
45     }
46
47     override fun getName(): String {
48         return "${ResourceResolutionConstants.PREFIX_RESOURCE_RESOLUTION_PROCESSOR}source-rest"
49     }
50
51     override fun blueprintWebClientService(
52         resourceAssignment: ResourceAssignment,
53         restResourceSource: RestResourceSource
54     ): BlueprintWebClientService {
55         return blueprintRestLibPropertyService.mockBlueprintWebClientService(resourceAssignment.dictionarySource!!)
56     }
57 }