Implement Resource Resolution Services
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / resource-resolution / src / test / kotlin / org / onap / ccsdk / apps / blueprintsprocessor / functions / resource / resolution / ResourceResolutionServiceTest.kt
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
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
17 package org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution
18
19 import org.junit.Assert
20 import org.junit.Test
21 import org.junit.runner.RunWith
22 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolutionprocessor.DataBaseResourceAssignmentProcessor
23 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolutionprocessor.DefaultResourceAssignmentProcessor
24 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolutionprocessor.InputResourceAssignmentProcessor
25 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolutionprocessor.SimpleRestResourceAssignmentProcessor
26 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintMetadataUtils
27 import org.slf4j.LoggerFactory
28 import org.springframework.beans.factory.annotation.Autowired
29 import org.springframework.test.context.ContextConfiguration
30 import org.springframework.test.context.junit4.SpringRunner
31 import kotlin.test.assertNotNull
32 import kotlin.test.assertTrue
33
34 /**
35  * ResourceResolutionServiceTest
36  *
37  * @author Brinda Santh DATE : 8/15/2018
38  */
39 @RunWith(SpringRunner::class)
40 @ContextConfiguration(classes = [ResourceResolutionService::class,
41     InputResourceAssignmentProcessor::class, DefaultResourceAssignmentProcessor::class,
42     DataBaseResourceAssignmentProcessor::class, SimpleRestResourceAssignmentProcessor::class])
43 class ResourceResolutionServiceTest {
44
45     private val log = LoggerFactory.getLogger(ResourceResolutionServiceTest::class.java)
46
47     @Autowired
48     lateinit var resourceResolutionService: ResourceResolutionService
49
50
51     @Test
52     fun testRegisteredSource() {
53         val sources = resourceResolutionService.registeredResourceSources()
54         assertNotNull(sources, "failed to get registered sources")
55         assertTrue(sources.containsAll(arrayListOf("input", "default", "db", "mdsal")), "failed to get registered sources")
56     }
57
58     @Test
59     @Throws(Exception::class)
60     fun testResolveResource() {
61
62         Assert.assertNotNull("failed to create ResourceResolutionService", resourceResolutionService)
63
64         val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
65                 "./../../../../components/model-catalog/blueprint-model/starter-blueprint/baseconfiguration")
66
67         resourceResolutionService.resolveResources(bluePrintRuntimeService, "resource-assignment", "baseconfig")
68
69     }
70
71 }