b891f9ec6dfe92951bd4e60c4c56a023b388a49e
[ccsdk/cds.git] /
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.Test
21 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintException
22 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
23 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceAssignment
24 import org.junit.Before
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     private val log = LoggerFactory.getLogger(ResourceAssignmentValidationServiceTest::class.java)
35     @Before
36     fun setUp() {
37         // Setup dummy Source Instance Mapping
38         ResourceDictionaryTestUtils.setUpResourceSourceMapping()
39     }
40
41     @Test
42     fun testValidateSuccess() {
43         log.info("**************** testValidateSuccess *****************")
44         val assignments = JacksonUtils.getListFromClassPathFile("validation/success.json", ResourceAssignment::class.java)
45         val resourceAssignmentValidator = ResourceAssignmentValidationServiceImpl()
46         val result = resourceAssignmentValidator.validate(assignments!!)
47         Assert.assertTrue("Failed to Validate", result)
48     }
49
50     @Test(expected = BluePrintException::class)
51     fun testValidateDuplicate() {
52         log.info(" **************** testValidateDuplicate *****************")
53         val assignments = JacksonUtils.getListFromClassPathFile("validation/duplicate.json", ResourceAssignment::class.java)
54         val resourceAssignmentValidator = ResourceAssignmentValidationServiceImpl()
55         resourceAssignmentValidator.validate(assignments!!)
56     }
57
58     @Test(expected = BluePrintException::class)
59     fun testValidateCyclic() {
60         log.info(" ****************  testValidateCyclic *****************")
61         val assignments = JacksonUtils.getListFromClassPathFile("validation/cyclic.json", ResourceAssignment::class.java)
62         val resourceAssignmentValidator = ResourceAssignmentValidationServiceImpl()
63         resourceAssignmentValidator.validate(assignments!!)
64     }
65 }