AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / introspection / tools / RemoveNonVisiblePropertyTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *    http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.aai.introspection.tools;
22
23 import static org.junit.Assert.assertFalse;
24 import static org.junit.Assert.assertNull;
25 import static org.junit.Assert.assertTrue;
26
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.onap.aai.AAISetup;
30 import org.onap.aai.introspection.*;
31 import org.onap.aai.introspection.exceptions.AAIUnknownObjectException;
32 import org.springframework.test.annotation.DirtiesContext;
33
34 @DirtiesContext(classMode = DirtiesContext.ClassMode.BEFORE_CLASS)
35 public class RemoveNonVisiblePropertyTest extends AAISetup {
36
37     private Loader loader;
38     private Issue issue;
39     private RemoveNonVisibleProperty rn;
40
41     @Before
42     public void setup() {
43         rn = new RemoveNonVisibleProperty();
44         loader = loaderFactory.createLoaderForVersion(ModelType.MOXY, schemaVersions.getDefaultVersion());
45     }
46
47     @Test
48     public void testNonVisiblePropertyResolved() throws AAIUnknownObjectException {
49         Introspector introspector = loader.introspectorFromName("pserver");
50         issue = new Issue();
51         issue.setDetail("Some message");
52         issue.setType(IssueType.PROPERTY_NOT_VISIBLE);
53         issue.setPropName("in-maint");
54         issue.setIntrospector(introspector);
55         assertTrue("Nonvisible property should be removed", rn.resolveIssue(issue));
56         assertNull("Introspector did not remove the non visible property", introspector.getValue("in-maint"));
57     }
58
59     @Test
60     public void testNonVisiblePropertyNotResolved() throws AAIUnknownObjectException {
61         Introspector introspector = loader.introspectorFromName("pserver");
62         issue = new Issue();
63         issue.setDetail("Some message");
64         issue.setType(IssueType.MISSING_REQUIRED_PROP);
65         issue.setPropName("in-maint");
66         issue.setIntrospector(introspector);
67         assertFalse("Nonvisible property not present so should not have been removed", rn.resolveIssue(issue));
68     }
69
70 }