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