move actors code in drools-applications to policy/models
[policy/models.git] / models-interactions / model-impl / aai / src / test / java / org / onap / policy / aai / RelationshipTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * aai
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20 */
21
22 package org.onap.policy.aai;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertNotNull;
26
27 import java.io.File;
28 import java.nio.file.Files;
29 import java.util.LinkedList;
30 import java.util.List;
31 import org.junit.Test;
32 import org.onap.policy.aai.util.Serialization;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35
36 public class RelationshipTest {
37     private static final Logger logger = LoggerFactory.getLogger(RelationshipTest.class);
38
39     @Test
40     public void test() throws Exception {
41         // deserialize json and verify fields are populated properly
42         String json = new String(Files
43                         .readAllBytes(new File("src/test/resources/org/onap/policy/aai/Relationship.json").toPath()));
44
45         Relationship relationship = Serialization.gsonPretty.fromJson(json, Relationship.class);
46
47         assertEquals("/aai/v11/network/generic-vnfs/generic-vnf/807a3f02-f878-436b-870c-f0e91e81570d",
48                         relationship.getRelatedLink());
49         assertEquals("generic-vnf", relationship.getRelatedTo());
50
51         // don't need to verify this in depth, as it has its own tests that do that
52         List<RelatedToProperty> relatedToProperty = relationship.getRelatedToProperty();
53         assertNotNull(relatedToProperty);
54         assertEquals(2, relatedToProperty.size());
55         assertEquals("vLoadBalancerMS-Vnf-0809-1", relatedToProperty.get(0).getPropertyValue());
56         assertEquals("vLoadBalancerMS-Vnf-0809-2", relatedToProperty.get(1).getPropertyValue());
57
58         // don't need to verify this in depth, as it has its own tests that do that
59         List<RelationshipData> relationshipData = relationship.getRelationshipData();
60         assertNotNull(relationshipData);
61         assertEquals(2, relationshipData.size());
62         assertEquals("807a3f02-f878-436b-870c-f0e91e81570d", relationshipData.get(0).getRelationshipValue());
63         assertEquals("907a3f02-f878-436b-870c-f0e91e81570e", relationshipData.get(1).getRelationshipValue());
64
65         logger.info(Serialization.gsonPretty.toJson(relationship));
66
67         // verify that setXxx methods work
68         relatedToProperty = new LinkedList<>();
69         relatedToProperty.add(new RelatedToProperty());
70         relatedToProperty.add(new RelatedToProperty());
71         relatedToProperty.add(new RelatedToProperty());
72
73         relationshipData = new LinkedList<>();
74         relationshipData.add(new RelationshipData());
75         relationshipData.add(new RelationshipData());
76         relationshipData.add(new RelationshipData());
77
78         relationship.setRelatedLink("related-link");
79         relationship.setRelatedTo("related-to");
80         relationship.setRelatedToProperty(relatedToProperty);
81         relationship.setRelationshipData(relationshipData);
82
83         assertEquals("related-link", relationship.getRelatedLink());
84         assertEquals("related-to", relationship.getRelatedTo());
85         assertEquals(relatedToProperty, relationship.getRelatedToProperty());
86         assertEquals(relationshipData, relationship.getRelationshipData());
87     }
88
89 }