Integrate aai-schema-ingest library into aai-core
[aai/aai-common.git] / aai-schema-ingest / src / test / java / org / onap / aai / edges / EdgeRuleTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-18 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.edges;
21
22 import static org.junit.Assert.*;
23
24 import java.util.HashMap;
25 import java.util.Map;
26
27 import org.apache.tinkerpop.gremlin.structure.Direction;
28 import org.junit.Test;
29
30 public class EdgeRuleTest {
31
32         @Test
33         public void testFlipDirection() {
34                 Map<String, String> rule = new HashMap<>();
35                 rule.put("from", "foo");
36                 rule.put("to", "bar");
37                 rule.put("label", "links");
38                 rule.put("contains-other-v", "NONE");
39                 rule.put("delete-other-v", "NONE");
40                 rule.put("prevent-delete", "NONE");
41                 rule.put("multiplicity", "ONE2ONE");
42                 rule.put("direction", "OUT");
43                 rule.put("default", "true");
44                 rule.put("private", "true");
45
46                 EdgeRule r = new EdgeRule(rule);
47                 
48                 r.flipDirection();
49                 assertTrue(Direction.IN.equals(r.getDirection()));
50                 r.flipDirection();
51                 assertTrue(Direction.OUT.equals(r.getDirection()));
52                 
53                 rule.put("direction", "BOTH");
54                 EdgeRule r2 = new EdgeRule(rule);
55                 r2.flipDirection();
56                 assertTrue(Direction.BOTH.equals(r2.getDirection()));
57         }
58
59 }