2  * Copyright © 2017-2018 AT&T Intellectual Property.
 
   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.
 
  17 package org.onap.ccsdk.apps.blueprintsprocessor.functions.resource.resolution
 
  19 import org.junit.Assert
 
  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
 
  35  * ResourceResolutionServiceTest
 
  37  * @author Brinda Santh DATE : 8/15/2018
 
  39 @RunWith(SpringRunner::class)
 
  40 @ContextConfiguration(classes = [ResourceResolutionService::class,
 
  41     InputResourceAssignmentProcessor::class, DefaultResourceAssignmentProcessor::class,
 
  42     DataBaseResourceAssignmentProcessor::class, SimpleRestResourceAssignmentProcessor::class])
 
  43 class ResourceResolutionServiceTest {
 
  45     private val log = LoggerFactory.getLogger(ResourceResolutionServiceTest::class.java)
 
  48     lateinit var resourceResolutionService: ResourceResolutionService
 
  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")
 
  59     @Throws(Exception::class)
 
  60     fun testResolveResource() {
 
  62         Assert.assertNotNull("failed to create ResourceResolutionService", resourceResolutionService)
 
  64         val bluePrintRuntimeService = BluePrintMetadataUtils.getBluePrintRuntime("1234",
 
  65                 "./../../../../components/model-catalog/blueprint-model/starter-blueprint/baseconfiguration")
 
  67         resourceResolutionService.resolveResources(bluePrintRuntimeService, "resource-assignment", "baseconfig")