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