Initial commit with all the necessary files
[aai/aai-common.git] / aai-core / src / test / java / org / openecomp / aai / serialization / queryformats / QueryFormatTestHelper.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.serialization.queryformats;
22
23 import static org.mockito.Matchers.isA;
24 import static org.mockito.Mockito.when;
25
26 import java.io.IOException;
27 import java.lang.reflect.Field;
28 import java.lang.reflect.Modifier;
29
30 import org.apache.tinkerpop.gremlin.structure.Graph;
31 import org.apache.tinkerpop.gremlin.structure.Vertex;
32 import org.apache.tinkerpop.gremlin.structure.io.IoCore;
33 import org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph;
34 import org.mockito.invocation.InvocationOnMock;
35 import org.mockito.stubbing.Answer;
36
37 import org.openecomp.aai.db.props.AAIProperties;
38 import org.openecomp.aai.serialization.queryformats.exceptions.AAIFormatVertexException;
39 import org.openecomp.aai.serialization.queryformats.utils.UrlBuilder;
40
41 public class QueryFormatTestHelper {
42
43         
44         public static final String testResources = "src/test/resources/org/openecomp/aai/serialization/queryformats/";
45         public static final String graphsonResources = "src/test/resources/org/openecomp/aai/serialization/queryformats/graphson/";
46
47         
48         public static void mockPathed(UrlBuilder mock) throws AAIFormatVertexException {
49                 Answer<String> answer = new Answer<String>() {
50                         public String answer(InvocationOnMock invocation) throws Throwable {
51                                 Vertex v = invocation.getArgumentAt(0, Vertex.class);
52                                 
53                                 return v.<String>property(AAIProperties.AAI_URI).orElse("urimissing");
54                         }
55                 };
56                 when(mock.pathed(isA(Vertex.class))).thenAnswer(answer);
57
58         }
59         
60         public static Graph loadGraphson(String fileName) throws IOException {
61                 final Graph graph = TinkerGraph.open();
62                 graph.io(IoCore.graphson()).readGraph(QueryFormatTestHelper.graphsonResources + fileName);
63                 
64                 return graph;
65         }
66         
67         public static void setFinalStatic(Field field, Object newValue) throws Exception {
68                 field.setAccessible(true);
69                 // remove final modifier from field
70                 Field modifiersField = Field.class.getDeclaredField("modifiers");
71                 modifiersField.setAccessible(true);
72                 modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL);
73                 field.set(null, newValue);
74         }
75         
76 }