Integrate aai-schema-ingest library into aai-core
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / introspection / tools / DefaultFieldsTest.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 package org.onap.aai.introspection.tools;
21
22 import org.junit.Before;
23 import org.junit.Test;
24 import org.onap.aai.AAISetup;
25 import org.onap.aai.introspection.*;
26 import org.onap.aai.introspection.exceptions.AAIUnknownObjectException;
27
28 import static junit.framework.TestCase.assertNotNull;
29 import static org.junit.Assert.assertEquals;
30 import static org.junit.Assert.assertFalse;
31 import static org.junit.Assert.assertTrue;
32
33 public class DefaultFieldsTest extends AAISetup {
34
35     private Loader loader;
36     private Issue issue;
37     private DefaultFields defaultFields;
38
39     @Before
40     public void setup() {
41         loader  = loaderFactory.createLoaderForVersion(ModelType.MOXY, schemaVersions.getDefaultVersion());
42         issue   = new Issue();
43         defaultFields = new DefaultFields();
44     }
45
46     @Test
47     public void testDefaultFieldOfPserverIsSucccessfullyResolved() throws AAIUnknownObjectException {
48
49         Introspector pserver = loader.introspectorFromName("pserver");
50         assertNotNull("Unable to load the template introspector", pserver);
51
52         issue.setDetail("Some message");
53         issue.setType(IssueType.MISSING_REQUIRED_PROP);
54         issue.setPropName("in-maint");
55         issue.setIntrospector(pserver);
56
57         boolean isResolved = defaultFields.resolveIssue(issue);
58
59         assertTrue("Unable to resolve the pserver in-maint default field issue", isResolved);
60         assertEquals("Introspector didn't successfully modify the pserver in-maint", false,
61                 pserver.getValue("in-maint"));
62     }
63
64     @Test
65     public void testDefaultFieldResolverShouldFailWhenResolveOnNonDefaultField() throws AAIUnknownObjectException {
66
67         Introspector pserver = loader.introspectorFromName("pserver");
68         assertNotNull("Unable to load the template introspector", pserver);
69
70         issue.setDetail("Some message");
71         issue.setType(IssueType.MISSING_REQUIRED_PROP);
72         issue.setPropName("hostname");
73         issue.setIntrospector(pserver);
74
75         boolean isResolved = defaultFields.resolveIssue(issue);
76
77         assertFalse("It shouldn't be resolving this issue as hostname is required key", isResolved);
78     }
79 }