Migrate "ms/controllerblueprints" from ccsdk/apps
[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  * Modifications Copyright © 2018 IBM.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 package org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution
19
20 import org.junit.Assert
21 import org.junit.Test
22 import org.junit.runner.RunWith
23 import org.onap.ccsdk.apps.blueprintsprocessor.core.BluePrintProperties
24 import org.onap.ccsdk.apps.blueprintsprocessor.core.BlueprintPropertyConfiguration
25 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.ExecutionServiceInput
26 import org.onap.ccsdk.apps.blueprintsprocessor.core.utils.PayloadUtils
27 import org.onap.ccsdk.apps.blueprintsprocessor.db.BluePrintDBLibConfiguration
28 import org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution.processor.*
29 import org.onap.ccsdk.apps.controllerblueprints.core.config.BluePrintLoadConfiguration
30 import org.onap.ccsdk.apps.controllerblueprints.core.utils.BluePrintMetadataUtils
31 import org.onap.ccsdk.apps.controllerblueprints.core.utils.JacksonUtils
32 import org.slf4j.LoggerFactory
33 import org.springframework.beans.factory.annotation.Autowired
34 import org.springframework.boot.autoconfigure.EnableAutoConfiguration
35 import org.springframework.context.annotation.ComponentScan
36 import org.springframework.test.context.ContextConfiguration
37 import org.springframework.test.context.TestPropertySource
38 import org.springframework.test.context.junit4.SpringRunner
39 import kotlin.test.assertNotNull
40 import kotlin.test.assertTrue
41
42 /**
43  * ResourceResolutionServiceTest
44  *
45  * @author Brinda Santh DATE : 8/15/2018
46  */
47 @RunWith(SpringRunner::class)
48 @ContextConfiguration(classes = [ResourceResolutionServiceImpl::class,
49     InputResourceResolutionProcessor::class, DefaultResourceResolutionProcessor::class,
50     DatabaseResourceAssignmentProcessor::class, RestResourceResolutionProcessor::class,
51     CapabilityResourceResolutionProcessor::class,
52     BlueprintPropertyConfiguration::class, BluePrintProperties::class,
53     BluePrintDBLibConfiguration::class, BluePrintLoadConfiguration::class])
54 @TestPropertySource(locations = ["classpath:application-test.properties"])
55 @ComponentScan(basePackages = ["org.onap.ccsdk.apps.blueprintsprocessor", "org.onap.ccsdk.apps.controllerblueprints"])
56 @EnableAutoConfiguration
57 class ResourceResolutionServiceTest {
58
59     private val log = LoggerFactory.getLogger(ResourceResolutionServiceTest::class.java)
60
61     @Autowired
62     lateinit var resourceResolutionService: ResourceResolutionService
63
64     @Test
65     fun testRegisteredSource() {
66         val sources = resourceResolutionService.registeredResourceSources()
67         assertNotNull(sources, "failed to get registered sources")
68         assertTrue(sources.containsAll(arrayListOf("source-input", "source-default", "source-processor-db",
69                 "source-rest")), "failed to get registered sources : $sources")
70     }
71
72     @Test
73     @Throws(Exception::class)
74     fun testResolveResource() {
75
76         Assert.assertNotNull("failed to create ResourceResolutionService", resourceResolutionService)
77
78         val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
79                 "./../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration")
80
81         val executionServiceInput = JacksonUtils.readValueFromClassPathFile("payload/requests/sample-resourceresolution-request.json",
82                 ExecutionServiceInput::class.java)!!
83
84         // Prepare Inputs
85         PayloadUtils.prepareInputsFromWorkflowPayload(bluePrintRuntimeService, executionServiceInput.payload, "resource-assignment")
86
87         resourceResolutionService.resolveResources(bluePrintRuntimeService, "resource-assignment", "baseconfig", mapOf())
88
89     }
90
91 }