242739067f685a61dd2c1569a35259c132af888f
[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.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             val resourceAssignmentRuntimeService = spyk(ResourceAssignmentRuntimeService("1234", bluePrintContext))
52
53             // mocking input for resource resolution
54             val textNode: JsonNode = TextNode("any value")
55             every {resourceAssignmentRuntimeService.getInputValue("rr-name") } returns textNode
56
57             inputResourceResolutionProcessor.raRuntimeService = resourceAssignmentRuntimeService
58             inputResourceResolutionProcessor.resourceDictionaries = ResourceAssignmentUtils.resourceDefinitions(bluePrintContext.rootPath)
59
60             val resourceAssignment = ResourceAssignment().apply {
61                 name = "rr-name"
62                 dictionaryName = "hostname"
63                 dictionarySource = "input"
64                 property = PropertyDefinition().apply {
65                     type = "string"
66                 }
67             }
68
69             val operationOutcome = inputResourceResolutionProcessor.applyNB(resourceAssignment)
70             assertTrue(operationOutcome, "An error occurred while trying to test the InputResourceResolutionProcessor")
71         }
72     }
73 }