58ff1adee5d83eb5b177dbe52a6c0b46d5e4de64
[aai/aai-common.git] / aai-core / src / test / java / org / openecomp / aai / parsers / query / LegacyQueryTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.openecomp.aai
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.aai.parsers.query;
22
23 import static org.junit.Assert.assertEquals;
24
25 import java.io.UnsupportedEncodingException;
26 import java.net.URI;
27
28 import javax.ws.rs.core.UriBuilder;
29 import javax.xml.bind.JAXBException;
30
31 import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContext;
32 import org.junit.BeforeClass;
33 import org.junit.Ignore;
34 import org.junit.Test;
35
36 import org.openecomp.aai.exceptions.AAIException;
37 import org.openecomp.aai.introspection.LoaderFactory;
38 import org.openecomp.aai.introspection.ModelInjestor;
39 import org.openecomp.aai.introspection.ModelType;
40 import org.openecomp.aai.introspection.Version;
41 import org.openecomp.aai.serialization.engines.QueryStyle;
42 import org.openecomp.aai.serialization.engines.TitanDBEngine;
43 import org.openecomp.aai.serialization.engines.TransactionalGraphEngine;
44
45
46 public class LegacyQueryTest {
47         private ModelInjestor injestor = ModelInjestor.getInstance();
48         private TransactionalGraphEngine dbEngine =
49                         new TitanDBEngine(QueryStyle.GREMLIN_TRAVERSAL,
50                                 LoaderFactory.createLoaderForVersion(ModelType.MOXY, Version.v8),
51                                 false); 
52         private final Version version = Version.v8;
53         private DynamicJAXBContext context = injestor.getContextForVersion(version);
54         
55         
56         /**
57          * Configure.
58          */
59         @BeforeClass
60         public static void configure() {
61                 System.setProperty("AJSC_HOME", ".");
62                 System.setProperty("BUNDLECONFIG_DIR", "src/test/resources/bundleconfig-local");
63         }
64         
65         /**
66          * Parent query.
67          *
68          * @throws JAXBException the JAXB exception
69          * @throws UnsupportedEncodingException the unsupported encoding exception
70          * @throws AAIException the AAI exception
71          */
72         @Test
73     public void parentQuery() throws JAXBException, UnsupportedEncodingException, AAIException {
74                 
75                 URI uri = UriBuilder.fromPath("cloud-infrastructure/pservers/pserver/key1").build();
76
77                 QueryParser query = dbEngine.getQueryBuilder().createQueryFromURI(uri);
78
79                 String expected = 
80                                 ".has('hostname', 'key1').has('aai-node-type', 'pserver')";
81                 assertEquals(
82                                 "gremlin query should be " + expected,
83                                 expected,
84                                 query.getQueryBuilder().getQuery());
85                 assertEquals(
86                                 "parent gremlin query should be equal to normal query",
87                                 expected,
88                                 query.getQueryBuilder().getParentQuery().getQuery());
89                 assertEquals(
90                                 "result type should be pserver",
91                                 "pserver",
92                                 query.getResultType());
93                 
94     }
95
96         /**
97          * Child query.
98          *
99          * @throws JAXBException the JAXB exception
100          * @throws UnsupportedEncodingException the unsupported encoding exception
101          * @throws AAIException the AAI exception
102          */
103         @Ignore
104         @Test
105     public void childQuery() throws JAXBException, UnsupportedEncodingException, AAIException {
106                 URI uri = UriBuilder.fromPath("cloud-infrastructure/pservers/pserver/key1/lag-interfaces/lag-interface/key2").build();
107                 QueryParser query = dbEngine.getQueryBuilder().createQueryFromURI(uri);
108
109                 String expected =
110                                 ".has('hostname', 'key1').has('aai-node-type', 'pserver')"
111                                 + ".out('hasLAGInterface').has('aai-node-type', 'lag-interface')"
112                                 + ".has('interface-name', 'key2')";
113                 String parentExpected = 
114                                 ".has('hostname', 'key1').has('aai-node-type', 'pserver')";
115                 assertEquals(
116                                 "gremlin query should be for node",
117                                 expected,
118                                 query.getQueryBuilder().getQuery());
119                 assertEquals(
120                                 "parent gremlin query should be for parent",
121                                 parentExpected,
122                                 query.getQueryBuilder().getParentQuery().getQuery());
123                 assertEquals(
124                                 "result type should be lag-interface",
125                                 "lag-interface",
126                                 query.getResultType());
127     }
128         
129         /**
130          * Naming exceptions.
131          *
132          * @throws JAXBException the JAXB exception
133          * @throws UnsupportedEncodingException the unsupported encoding exception
134          * @throws AAIException the AAI exception
135          */
136         @Ignore
137         @Test
138     public void namingExceptions() throws JAXBException, UnsupportedEncodingException, AAIException {
139                 URI uri = UriBuilder.fromPath("network/vces/vce/key1/port-groups/port-group/key2/cvlan-tags/cvlan-tag/655").build();
140         
141                 QueryParser query = dbEngine.getQueryBuilder().createQueryFromURI(uri);
142                 String expected = 
143                                 ".has('vnf-id', 'key1').has('aai-node-type', 'vce')"
144                                 + ".in('org.onap.relationships.inventory.BelongsTo').has('aai-node-type', 'port-group')"
145                                 + ".has('interface-id', 'key2')"
146                                 + ".in('org.onap.relationships.inventory.BelongsTo').has('aai-node-type', 'cvlan-tag')"
147                                 + ".has('cvlan-tag', 655)";
148                 String expectedParent = 
149                                                 ".has('vnf-id', 'key1').has('aai-node-type', 'vce')"
150                                                 + ".in('org.onap.relationships.inventory.BelongsTo').has('aai-node-type', 'port-group')"
151                                                 + ".has('interface-id', 'key2')";
152                 assertEquals(
153                                 "gremlin query should be " + expected,
154                                 expected,
155                                 query.getQueryBuilder().getQuery());
156                 assertEquals(
157                                 "parent gremlin query should be equal the query for port group",
158                                 expectedParent,
159                                 query.getQueryBuilder().getParentQuery().getQuery());
160                 assertEquals(
161                                 "result type should be cvlan-tag",
162                                 "cvlan-tag",
163                                 query.getResultType());
164                 
165     }
166         
167 }