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