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 / DatabaseResourceResolutionProcessorTest.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.db.PrimaryDBLibGenericService
22 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.BluePrintDBLibPropertyService
23 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.ResourceAssignmentRuntimeService
24 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.TestDatabaseConfiguration
25 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.mock.MockBlueprintProcessorCatalogServiceImpl
26 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.mock.MockDBLibGenericService
27 import org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.utils.ResourceAssignmentUtils
28 import org.onap.ccsdk.cds.controllerblueprints.core.data.PropertyDefinition
29 import org.onap.ccsdk.cds.controllerblueprints.core.utils.BluePrintMetadataUtils
30 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
31 import org.springframework.beans.factory.annotation.Autowired
32 import org.springframework.test.context.ContextConfiguration
33 import org.springframework.test.context.TestPropertySource
34 import org.springframework.test.context.junit4.SpringRunner
35 import kotlin.test.assertNotNull
36
37 @RunWith(SpringRunner::class)
38 @ContextConfiguration(
39     classes = [
40         TestDatabaseConfiguration::class,
41         PrimaryDBLibGenericService::class, BluePrintDBLibPropertyService::class,
42         DatabaseResourceAssignmentProcessor::class, MockDBLibGenericService::class,
43         MockBlueprintProcessorCatalogServiceImpl::class
44     ]
45 )
46 @TestPropertySource(locations = ["classpath:application-test.properties"])
47 class DatabaseResourceResolutionProcessorTest {
48
49     @Autowired
50     lateinit var databaseResourceAssignmentProcessor: DatabaseResourceAssignmentProcessor
51
52     @Test
53     fun `test database resource resolution processor db`() {
54         runBlocking {
55             val bluePrintContext = BluePrintMetadataUtils.getBluePrintContext(
56                 "./../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration"
57             )
58
59             val resourceAssignmentRuntimeService = ResourceAssignmentRuntimeService("1234", bluePrintContext)
60
61             databaseResourceAssignmentProcessor.raRuntimeService = resourceAssignmentRuntimeService
62             databaseResourceAssignmentProcessor.resourceDictionaries = ResourceAssignmentUtils
63                 .resourceDefinitions(bluePrintContext.rootPath)
64
65             val resourceAssignment = ResourceAssignment().apply {
66                 name = "service-instance-id"
67                 dictionaryName = "service-instance-id"
68                 dictionarySource = "processor-db"
69                 property = PropertyDefinition().apply {
70                     type = "string"
71                 }
72             }
73
74             val processorName = databaseResourceAssignmentProcessor.applyNB(resourceAssignment)
75             assertNotNull(processorName, "couldn't get Database resource assignment processor name")
76         }
77     }
78 }