Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / blueprints / resource-dict / src / test / java / org / onap / ccsdk / cds / controllerblueprints / resource / dict / service / ResourceAssignmentValidationServiceTest.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.cds.controllerblueprints.resource.dict.service
18
19 import org.junit.Assert
20 import org.junit.Before
21 import org.junit.Test
22 import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintException
23 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
24 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
25 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.utils.ResourceDictionaryTestUtils
26 import org.slf4j.LoggerFactory
27
28 /**
29  * ResourceAssignmentValidationServiceTest.
30  *
31  * @author Brinda Santh
32  */
33 class ResourceAssignmentValidationServiceTest {
34
35     private val log = LoggerFactory.getLogger(ResourceAssignmentValidationServiceTest::class.java)
36
37     @Before
38     fun setUp() {
39         // Setup dummy Source Instance Mapping
40         ResourceDictionaryTestUtils.setUpResourceSourceMapping()
41     }
42
43     @Test
44     fun testValidateSuccess() {
45         log.info("**************** testValidateSuccess *****************")
46         val assignments = JacksonUtils.getListFromClassPathFile("validation/success.json", ResourceAssignment::class.java)
47         val resourceAssignmentValidator = ResourceAssignmentValidationServiceImpl()
48         val result = resourceAssignmentValidator.validate(assignments!!)
49         Assert.assertTrue("Failed to Validate", result)
50     }
51
52     @Test(expected = BlueprintException::class)
53     fun testValidateDuplicate() {
54         log.info(" **************** testValidateDuplicate *****************")
55         val assignments = JacksonUtils.getListFromClassPathFile("validation/duplicate.json", ResourceAssignment::class.java)
56         val resourceAssignmentValidator = ResourceAssignmentValidationServiceImpl()
57         resourceAssignmentValidator.validate(assignments!!)
58     }
59
60     @Test(expected = BlueprintException::class)
61     fun testValidateCyclic() {
62         log.info(" ****************  testValidateCyclic *****************")
63         val assignments = JacksonUtils.getListFromClassPathFile("validation/cyclic.json", ResourceAssignment::class.java)
64         val resourceAssignmentValidator = ResourceAssignmentValidationServiceImpl()
65         resourceAssignmentValidator.validate(assignments!!)
66     }
67 }