Merge "Improve step data access."
[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 kotlinx.coroutines.runBlocking
19 import org.junit.Ignore
20 import org.junit.Test
21 import org.junit.runner.RunWith
22 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceAssignmentRuntimeService
23 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.utils.ResourceAssignmentUtils
24 import org.onap.ccsdk.cds.controllerblueprints.core.data.PropertyDefinition
25 import org.onap.ccsdk.cds.controllerblueprints.core.utils.BluePrintMetadataUtils
26 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
27 import org.springframework.beans.factory.annotation.Autowired
28 import org.springframework.test.context.ContextConfiguration
29 import org.springframework.test.context.TestPropertySource
30 import org.springframework.test.context.junit4.SpringRunner
31 import kotlin.test.assertNotNull
32
33 @RunWith(SpringRunner::class)
34 @ContextConfiguration(classes = [InputResourceResolutionProcessor::class])
35 @TestPropertySource(locations = ["classpath:application-test.properties"])
36 class InputResourceResolutionProcessorTest {
37
38     @Autowired
39     lateinit var inputResourceResolutionProcessor: InputResourceResolutionProcessor
40
41     @Ignore
42     @Test
43     fun `test input resource resolution`() {
44         runBlocking {
45             val bluePrintContext = BluePrintMetadataUtils.getBluePrintContext(
46                     "./../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
47
48             val resourceAssignmentRuntimeService = ResourceAssignmentRuntimeService("1234", bluePrintContext)
49
50             inputResourceResolutionProcessor.raRuntimeService = resourceAssignmentRuntimeService
51             inputResourceResolutionProcessor.resourceDictionaries = ResourceAssignmentUtils
52                     .resourceDefinitions(bluePrintContext.rootPath)
53
54             //TODO ("Mock the input Values")
55
56             val resourceAssignment = ResourceAssignment().apply {
57                 name = "rr-name"
58                 dictionaryName = "hostname"
59                 dictionarySource = "input"
60                 property = PropertyDefinition().apply {
61                     type = "string"
62                 }
63             }
64
65             val processorName = inputResourceResolutionProcessor.applyNB(resourceAssignment)
66             assertNotNull(processorName, "couldn't get Input resource assignment processor name")
67             println(processorName)
68         }
69     }
70 }