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