Update the license for 2017-2018 license
[aai/traversal.git] / aai-traversal / src / test / java / org / onap / aai / rest / search / UcpeInstanceQueryTest.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.rest.search;
21
22 import java.util.Map;
23
24 import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal;
25 import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource;
26 import org.apache.tinkerpop.gremlin.structure.T;
27 import org.apache.tinkerpop.gremlin.structure.Vertex;
28 import org.junit.Test;
29
30 import org.onap.aai.exceptions.AAIException;
31 import org.onap.aai.serialization.db.exceptions.NoEdgeRuleFoundException;
32
33 public class UcpeInstanceQueryTest extends QueryTest {
34
35         public UcpeInstanceQueryTest() 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                 Vertex complex = graph.addVertex(T.label, "complex", T.id, "0", "aai-node-type", "complex", "physical-location-id", "clli");
47                 Vertex pserver = graph.addVertex(T.label, "pserver", T.id, "1", "aai-node-type", "pserver", "hostname", "pservername");
48                 Vertex pnf = graph.addVertex(T.label, "pnf", T.id, "11", "aai-node-type", "pnf", "pnf-name", "pnfname");
49                 Vertex vnf = graph.addVertex(T.label, "generic-vnf", T.id, "7", "aai-node-type", "generic-vnf", "vnf-id", "vnfuuid");
50                 Vertex pserverint = graph.addVertex(T.label, "p-interface", T.id, "2", "aai-node-type", "p-interface", "interface-name", "xe0/0/0");
51                 Vertex pnfint = graph.addVertex(T.label, "p-interface", T.id, "12", "aai-node-type", "p-interface", "interface-name", "ge0/0/0");
52                 
53                 GraphTraversalSource g = graph.traversal();
54                 rules.addEdge(g, pserver, complex);
55                 rules.addEdge(g, pnf, complex);
56                 rules.addEdge(g, vnf, pserver);
57                 rules.addTreeEdge(g, pserver, pserverint);
58                 rules.addTreeEdge(g, pnf, pnfint);
59                 
60                 expectedResult.add(complex);
61                 expectedResult.add(pserver);
62                 //expectedResult.add(pnf);
63                 
64         }
65
66         @Override
67         protected String getQueryName() {
68                 return "ucpe-instance";
69         }
70
71         @Override
72         protected void addStartNode(GraphTraversal<Vertex, Vertex> g) {
73                 g.has("hostname", "pservername");
74                 //g.has("pnf-name", "pnfname");
75         }
76
77         @Override
78         protected void addParam(Map<String, Object> params) {
79                 return;
80                 
81         }
82
83 }