Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / resource-resolution / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / resource / resolution / processor / InputResourceResolutionProcessorTest.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.functions.resource.resolution.processor
17
18 import com.fasterxml.jackson.databind.JsonNode
19 import com.fasterxml.jackson.databind.node.TextNode
20 import io.mockk.every
21 import io.mockk.spyk
22 import kotlinx.coroutines.runBlocking
23 import org.junit.Test
24 import org.junit.runner.RunWith
25 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceAssignmentRuntimeService
26 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.utils.ResourceAssignmentUtils
27 import org.onap.ccsdk.cds.controllerblueprints.core.data.PropertyDefinition
28 import org.onap.ccsdk.cds.controllerblueprints.core.utils.BlueprintMetadataUtils
29 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
30 import org.springframework.beans.factory.annotation.Autowired
31 import org.springframework.test.context.ContextConfiguration
32 import org.springframework.test.context.TestPropertySource
33 import org.springframework.test.context.junit4.SpringRunner
34 import kotlin.test.assertTrue
35
36 @RunWith(SpringRunner::class)
37 @ContextConfiguration(classes = [InputResourceResolutionProcessor::class])
38 @TestPropertySource(locations = ["classpath:application-test.properties"])
39 class InputResourceResolutionProcessorTest {
40
41     @Autowired
42     lateinit var inputResourceResolutionProcessor: InputResourceResolutionProcessor
43
44     @Test
45     fun `InputResourceResolutionProcessor should be able to resolve a value for an input parameter`() {
46         runBlocking {
47
48             val bluePrintContext = BlueprintMetadataUtils.getBlueprintContext(
49                 "./../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration"
50             )
51
52             val resourceAssignmentRuntimeService = spyk(ResourceAssignmentRuntimeService("1234", bluePrintContext))
53
54             // mocking input for resource resolution
55             val textNode: JsonNode = TextNode("any value")
56             every { resourceAssignmentRuntimeService.getInputValue("rr-name") } returns textNode
57
58             inputResourceResolutionProcessor.raRuntimeService = resourceAssignmentRuntimeService
59             inputResourceResolutionProcessor.resourceDictionaries =
60                 ResourceAssignmentUtils.resourceDefinitions(bluePrintContext.rootPath)
61
62             val resourceAssignment = ResourceAssignment().apply {
63                 name = "rr-name"
64                 dictionaryName = "hostname"
65                 dictionarySource = "input"
66                 property = PropertyDefinition().apply {
67                     type = "string"
68                 }
69             }
70
71             val operationOutcome = inputResourceResolutionProcessor.applyNB(resourceAssignment)
72             assertTrue(operationOutcome, "An error occurred while trying to test the InputResourceResolutionProcessor")
73         }
74     }
75 }