Sync logging context changes
[aai/traversal.git] / aai-traversal / src / test / java / org / onap / aai / rest / search / ComplexFromVnfTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.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.onap.aai.rest.search;
22
23 import java.util.Map;
24
25 import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal;
26 import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource;
27 import org.apache.tinkerpop.gremlin.structure.T;
28 import org.apache.tinkerpop.gremlin.structure.Vertex;
29 import org.junit.Test;
30
31 import org.onap.aai.exceptions.AAIException;
32 import org.onap.aai.serialization.db.exceptions.NoEdgeRuleFoundException;
33
34 public class ComplexFromVnfTest extends QueryTest {
35         public ComplexFromVnfTest() throws AAIException, NoEdgeRuleFoundException {
36                 super();
37         }
38
39         @Test
40         public void run() {
41                 super.run();
42         }
43
44         @Override
45         protected void createGraph() throws AAIException, NoEdgeRuleFoundException {    
46                 //Set up the test graph
47                 Vertex gnvf1 = graph.addVertex(T.label, "generic-vnf", T.id, "0", "aai-node-type", "generic-vnf", "vnf-id", "vnf-id-1", "vnf-name", "vnf-name-1");
48                 Vertex vserver1 = graph.addVertex(T.label, "vserver", T.id, "1", "aai-node-type", "vserver", "vserver-id", "vserver-id-1", "vserver-name", "vserver-name-1");
49                 Vertex pserver1 = graph.addVertex(T.label, "pserver", T.id, "2", "aai-node-type", "pserver", "hostname", "hostname-1");
50                 Vertex complex1 = graph.addVertex(T.label, "complex", T.id, "3", "aai-node-type", "complex", "physical-location-id", "physical-location-id-1", "country", "US");
51         
52                 Vertex pserver2 = graph.addVertex(T.label, "pserver", T.id, "5", "aai-node-type", "pserver", "hostname", "hostname-2");
53                 Vertex complex2 = graph.addVertex(T.label, "complex", T.id, "6", "aai-node-type", "complex", "physical-location-id", "physical-location-id-2", "country", "US");
54                 
55                 GraphTraversalSource g = graph.traversal();
56                 rules.addEdge(g, gnvf1, vserver1);
57                 rules.addEdge(g, vserver1, pserver1);
58                 rules.addEdge(g, pserver1, complex1);
59                 rules.addEdge(g, gnvf1, pserver2);
60                 rules.addEdge(g, pserver2, complex2);
61                 
62                 expectedResult.add(gnvf1);
63                 expectedResult.add(pserver1);
64                 expectedResult.add(complex1);
65                 expectedResult.add(pserver2);
66                 expectedResult.add(complex2);
67         }
68
69         @Override
70         protected String getQueryName() {
71                 return  "complex-fromVnf";
72         }
73         @Override
74         protected void addStartNode(GraphTraversal<Vertex, Vertex> g) {
75                 g.has("vnf-name", "vnf-name-1");
76                 
77         }
78         @Override
79         protected void addParam(Map<String, Object> params) {
80                 return;
81         }
82 }