Merge "Release 1.14.0 maven artifact"
[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
21 package org.onap.aai.edges;
22
23 import static org.junit.Assert.*;
24
25 import java.util.HashMap;
26 import java.util.Map;
27
28 import org.apache.tinkerpop.gremlin.structure.Direction;
29 import org.junit.Test;
30
31 public class EdgeRuleTest {
32
33     @Test
34     public void testFlipDirection() {
35         Map<String, String> rule = new HashMap<>();
36         rule.put("from", "foo");
37         rule.put("to", "bar");
38         rule.put("label", "links");
39         rule.put("contains-other-v", "NONE");
40         rule.put("delete-other-v", "NONE");
41         rule.put("prevent-delete", "NONE");
42         rule.put("multiplicity", "ONE2ONE");
43         rule.put("direction", "OUT");
44         rule.put("default", "true");
45         rule.put("private", "true");
46
47         EdgeRule r = new EdgeRule(rule);
48
49         r.flipDirection();
50         assertTrue(Direction.IN.equals(r.getDirection()));
51         r.flipDirection();
52         assertTrue(Direction.OUT.equals(r.getDirection()));
53
54         rule.put("direction", "BOTH");
55         EdgeRule r2 = new EdgeRule(rule);
56         r2.flipDirection();
57         assertTrue(Direction.BOTH.equals(r2.getDirection()));
58     }
59
60 }