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