Doc Rest source code
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / resource-resolution / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / resource / resolution / processor / RestResourceResolutionProcessorTest.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.core.BluePrintProperties
23 import org.onap.ccsdk.cds.blueprintsprocessor.core.BlueprintPropertyConfiguration
24 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceAssignmentRuntimeService
25 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.utils.ResourceAssignmentUtils
26 import org.onap.ccsdk.cds.blueprintsprocessor.rest.service.BluePrintRestLibPropertyService
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.assertNotNull
35
36 @RunWith(SpringRunner::class)
37 @ContextConfiguration(classes = [RestResourceResolutionProcessor::class, BluePrintRestLibPropertyService::class,
38     BlueprintPropertyConfiguration::class, BluePrintProperties::class])
39 @TestPropertySource(locations = ["classpath:application-test.properties"])
40 class RestResourceResolutionProcessorTest {
41
42     @Autowired
43     lateinit var restResourceResolutionProcessor: RestResourceResolutionProcessor
44
45     @Ignore
46     @Test
47     fun `test rest resource resolution`() {
48         runBlocking {
49             val bluePrintContext = BluePrintMetadataUtils.getBluePrintContext(
50                     "./../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
51
52             val resourceAssignmentRuntimeService = ResourceAssignmentRuntimeService("1234", bluePrintContext)
53
54             restResourceResolutionProcessor.raRuntimeService = resourceAssignmentRuntimeService
55             restResourceResolutionProcessor.resourceDictionaries = ResourceAssignmentUtils
56                     .resourceDefinitions(bluePrintContext.rootPath)
57
58             //TODO ("Mock the dependency values and rest service.")
59
60             val resourceAssignment = ResourceAssignment().apply {
61                 name = "rr-name"
62                 dictionaryName = "vnf_name"
63                 dictionarySource = "primary-config-data"
64                 property = PropertyDefinition().apply {
65                     type = "string"
66                 }
67             }
68
69             val processorName = restResourceResolutionProcessor.applyNB(resourceAssignment)
70             assertNotNull(processorName, "couldn't get Rest resource assignment processor name")
71             println(processorName)
72         }
73     }
74 }