fd3a8893cdf00df64a8288678beaf4eddfdffd5c
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / serialization / queryformats / SimpleFormatTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.serialization.queryformats;
23
24 import com.google.gson.JsonObject;
25 import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource;
26 import org.apache.tinkerpop.gremlin.process.traversal.strategy.verification.ReadOnlyStrategy;
27 import org.apache.tinkerpop.gremlin.structure.Graph;
28 import org.apache.tinkerpop.gremlin.structure.T;
29 import org.apache.tinkerpop.gremlin.structure.Vertex;
30 import org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph;
31 import org.junit.Before;
32 import org.junit.Ignore;
33 import org.junit.Test;
34 import org.mockito.Mock;
35 import org.mockito.MockitoAnnotations;
36 import org.onap.aai.AAISetup;
37 import org.onap.aai.dbmap.DBConnectionType;
38 import org.onap.aai.exceptions.AAIException;
39 import org.onap.aai.introspection.Loader;
40 import org.onap.aai.introspection.LoaderFactory;
41 import org.onap.aai.introspection.ModelType;
42 import org.onap.aai.introspection.Version;
43 import org.onap.aai.introspection.exceptions.AAIUnknownObjectException;
44 import org.onap.aai.serialization.db.DBSerializer;
45 import org.onap.aai.serialization.engines.QueryStyle;
46 import org.onap.aai.serialization.engines.TitanDBEngine;
47 import org.onap.aai.serialization.engines.TransactionalGraphEngine;
48 import org.onap.aai.serialization.queryformats.exceptions.AAIFormatVertexException;
49 import org.onap.aai.serialization.queryformats.utils.UrlBuilder;
50
51 import java.io.UnsupportedEncodingException;
52
53 import static org.junit.Assert.*;
54 import static org.mockito.Matchers.anyBoolean;
55 import static org.mockito.Matchers.anyInt;
56 import static org.mockito.Matchers.anyObject;
57 import static org.mockito.Matchers.anyString;
58 import static org.mockito.Mockito.*;
59
60 public class SimpleFormatTest extends AAISetup {
61
62         @Mock
63         private UrlBuilder urlBuilder;
64
65         private Graph graph;
66         private TransactionalGraphEngine dbEngine;
67         private Loader loader;
68         private DBSerializer serializer;
69         private RawFormat simpleFormat;
70         private Vertex vfModule;
71         private final ModelType factoryType = ModelType.MOXY;
72
73         @Before
74         public void setUp() throws Exception {
75
76                 MockitoAnnotations.initMocks(this);
77
78                 graph = TinkerGraph.open();
79
80                 vfModule = graph.addVertex(
81                                 T.label, "vf-module",
82                                 T.id, "5",
83                                 "aai-node-type", "vf-module",
84                                 "vf-module-id", "vf-module-id-val-68205",
85                                 "vf-module-name", "example-vf-module-name-val-68205",
86                                 "heat-stack-id", "example-heat-stack-id-val-68205",
87                                 "orchestration-status", "example-orchestration-status-val-68205",
88                                 "is-base-vf-module", "true",
89                                 "resource-version", "1498166571906",
90                                 "model-invariant-id", "fe8aac07-ce6c-4f9f-aa0d-b561c77da9e8",
91                                 "model-invariant-id-local", "fe8aac07-ce6c-4f9f-aa0d-b561c77da9e8",
92                                 "model-version-id", "0d23052d-8ffe-433e-a25d-da5da027bb7c",
93                                 "model-version-id-local", "0d23052d-8ffe-433e-a25d-da5da027bb7c",
94                                 "widget-model-id", "example-widget-model-id-val-68205",
95                                 "widget-model-version", "example-widget--model-version-val-68205",
96                                 "contrail-service-instance-fqdn", "example-contrail-service-instance-fqdn-val-68205"
97                 );
98         }
99
100         @Test
101         public void testCreatePropertiesObjectReturnsProperProperties() throws AAIFormatVertexException, AAIException {
102
103             createLoaderEngineSetup();
104                 serializer = new DBSerializer(Version.v10, dbEngine, factoryType, "Junit");
105                 simpleFormat = new RawFormat.Builder(loader, serializer, urlBuilder).nodesOnly(true).depth(0).modelDriven().build();
106
107                 assertNotNull(dbEngine.tx());
108                 assertNotNull(dbEngine.asAdmin());
109
110                 JsonObject json = simpleFormat.createPropertiesObject(vfModule);
111
112                 assertTrue(json.has("model-invariant-id"));
113                 assertTrue(json.has("model-version-id"));
114
115                 assertFalse(json.has("model-invariant-id-local"));
116                 assertFalse(json.has("model-version-id-local"));
117
118         }
119
120         @Ignore
121         @Test(expected = AAIFormatVertexException.class)
122         public void testCreatePropertiesObjectThrowsExceptionIfSerializationFails() throws AAIFormatVertexException, AAIException, UnsupportedEncodingException {
123
124                 serializer = mock(DBSerializer.class);
125                 loader = mock(Loader.class);
126
127                 simpleFormat = new RawFormat.Builder(loader, serializer, urlBuilder).nodesOnly(true).depth(0).build();
128
129                 when(serializer.dbToObject(anyObject(), anyObject(), anyInt(), anyBoolean(), anyString()))
130                         .thenThrow(new AAIException("Test Exception"));
131
132                 simpleFormat.createPropertiesObject(vfModule);
133         }
134
135         @Ignore
136         @Test(expected = AAIFormatVertexException.class)
137         public void testCreatePropertiesObjectThrowsExceptionIfUnknownObject() throws AAIFormatVertexException, AAIException, UnsupportedEncodingException {
138
139                 loader = mock(Loader.class);
140                 serializer = mock(DBSerializer.class);
141
142                 simpleFormat = new RawFormat.Builder(loader, serializer, urlBuilder).nodesOnly(true).depth(0).build();
143
144                 when(loader.introspectorFromName(anyString()))
145                                 .thenThrow(new AAIUnknownObjectException("Test Exception"));
146
147                 simpleFormat.createPropertiesObject(vfModule);
148         }
149
150         public void createLoaderEngineSetup(){
151
152                 if(loader == null){
153                         loader = LoaderFactory.createLoaderForVersion(factoryType, Version.v10);
154                         dbEngine = spy(new TitanDBEngine(QueryStyle.TRAVERSAL, DBConnectionType.CACHED, loader));
155
156                         TransactionalGraphEngine.Admin spyAdmin = spy(dbEngine.asAdmin());
157
158                         when(dbEngine.tx()).thenReturn(graph);
159                         when(dbEngine.asAdmin()).thenReturn(spyAdmin);
160
161                         when(spyAdmin.getReadOnlyTraversalSource()).thenReturn(graph.traversal(GraphTraversalSource.build().with(ReadOnlyStrategy.instance())));
162                         when(spyAdmin.getTraversalSource()).thenReturn(graph.traversal());
163                 }
164         }
165 }