2 * Copyright © 2019 IBM, Bell Canada.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.processor
18 import kotlinx.coroutines.runBlocking
20 import org.junit.runner.RunWith
21 import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintCoreConfiguration
22 import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintPropertiesService
23 import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintPropertyConfiguration
24 import org.onap.ccsdk.cds.blueprintsprocessor.db.BluePrintDBLibConfiguration
25 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.BluePrintDBLibPropertyService
26 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.PrimaryDatabaseConfiguration
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.blueprintsprocessor.functions.resource.resolution.utils.ResourceAssignmentUtils
31 import org.onap.ccsdk.cds.controllerblueprints.core.data.PropertyDefinition
32 import org.onap.ccsdk.cds.controllerblueprints.core.utils.BluePrintMetadataUtils
33 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
34 import org.springframework.beans.factory.annotation.Autowired
35 import org.springframework.test.context.ContextConfiguration
36 import org.springframework.test.context.TestPropertySource
37 import org.springframework.test.context.junit4.SpringRunner
38 import kotlin.test.assertNotNull
40 @RunWith(SpringRunner::class)
41 @ContextConfiguration(
42 classes = [DatabaseResourceAssignmentProcessor::class, BluePrintPropertyConfiguration::class,
43 BluePrintPropertiesService::class, BluePrintDBLibPropertyService::class, BluePrintDBLibConfiguration::class,
44 BluePrintCoreConfiguration::class, MockDatabaseConfiguration::class, MockBlueprintProcessorCatalogServiceImpl::class,
45 BluePrintPropertiesService::class, PrimaryDatabaseConfiguration::class]
47 @TestPropertySource(locations = ["classpath:application-test.properties"])
48 class DatabaseResourceResolutionProcessorTest {
51 lateinit var databaseResourceAssignmentProcessor: DatabaseResourceAssignmentProcessor
54 fun `test database resource resolution processor db`() {
56 val bluePrintContext = BluePrintMetadataUtils.getBluePrintContext(
57 "./../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration"
60 val resourceAssignmentRuntimeService = ResourceAssignmentRuntimeService("1234", bluePrintContext)
62 databaseResourceAssignmentProcessor.raRuntimeService = resourceAssignmentRuntimeService
63 databaseResourceAssignmentProcessor.resourceDictionaries = ResourceAssignmentUtils
64 .resourceDefinitions(bluePrintContext.rootPath)
66 val resourceAssignment = ResourceAssignment().apply {
67 name = "service-instance-id"
68 dictionaryName = "service-instance-id"
69 dictionarySource = "processor-db"
70 property = PropertyDefinition().apply {
75 val processorName = databaseResourceAssignmentProcessor.applyNB(resourceAssignment)
76 assertNotNull(processorName, "couldn't get Database resource assignment processor name")