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.cds.controllerblueprints.resource.dict.service
19 import org.junit.Assert
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
29 * ResourceAssignmentValidationServiceTest.
31 * @author Brinda Santh
33 class ResourceAssignmentValidationServiceTest {
34 private val log = LoggerFactory.getLogger(ResourceAssignmentValidationServiceTest::class.java)
37 // Setup dummy Source Instance Mapping
38 ResourceDictionaryTestUtils.setUpResourceSourceMapping()
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)
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!!)
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!!)