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