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