Integrate aai-schema-ingest library into aai-core
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / introspection / tools / InjectKeysFromURITest.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 java.net.URI;
29
30 import static junit.framework.TestCase.assertNotNull;
31 import static org.eclipse.persistence.jpa.jpql.Assert.fail;
32 import static org.junit.Assert.assertEquals;
33 import static org.junit.Assert.assertFalse;
34 import static org.junit.Assert.assertTrue;
35
36 public class InjectKeysFromURITest extends AAISetup {
37
38     private Loader loader;
39     private Issue issue;
40     private InjectKeysFromURI ik;
41
42     @Before
43     public void setup() {
44         loader  = loaderFactory.createLoaderForVersion(ModelType.MOXY, schemaVersions.getDefaultVersion());
45         issue   = new Issue();
46     }
47     @Test
48     public void testInjectKeysFromURIOfPserverIsNotResolved() throws AAIUnknownObjectException {
49         try {
50             ik = new InjectKeysFromURI(loader, new URI("/aai/v12/cloud-infrastructure/complexes"));
51         }catch(Exception e) {
52             fail("InjectKeys instantiation threw an exception");
53         }
54
55         Introspector pserver = loader.introspectorFromName("pserver");
56         pserver.setValue("in-maint",false);
57         pserver.setValue("hostname", "pserver2");
58         assertNotNull("Unable to load the template introspector", pserver);
59
60         issue.setDetail("Some message");
61         issue.setType(IssueType.MISSING_KEY_PROP);
62         issue.setPropName("in-maint");
63         issue.setIntrospector(pserver);
64
65         Boolean issueResolved = ik.resolveIssue(issue);
66
67         assertFalse("Unable to resolve the pserver in-maint issue", issueResolved);
68         assertEquals("Introspector didn't successfully modify the pserver in-maint", false,
69             pserver.getValue("in-maint"));
70     }
71     @Test
72     public void testInjectKeysFromURIOfPserverSuccessfullyResolved() throws AAIUnknownObjectException {
73         try {
74             ik = new InjectKeysFromURI(loader, new URI("/aai/v12/cloud-infrastructure/pservers/pserver/pserver1"));
75         }catch(Exception e) {
76             fail("InjectKeys instantiation threw an exception");
77         }
78
79         Introspector pserver = loader.introspectorFromName("pserver");
80         assertNotNull("Unable to load the template introspector", pserver);
81
82         issue.setDetail("Some message");
83         issue.setType(IssueType.MISSING_KEY_PROP);
84         issue.setPropName("hostname");
85         issue.setIntrospector(pserver);
86
87         Boolean issueResolved = ik.resolveIssue(issue);
88
89         assertTrue("Unable to resolve the pserver hostname default field issue", issueResolved);
90         assertEquals("Introspector didn't successfully modify the pserver hostname", "pserver1",
91                 pserver.getValue("hostname"));
92     }
93
94 }