f229a091aed5f928a26c5209282c66cc348b6f37
[policy/drools-applications.git] / controlloop / common / model-impl / aai / src / test / java / org / onap / policy / aai / RelationshipTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * aai
4  * ================================================================================
5  * Copyright (C) 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
21 package org.onap.policy.aai;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25
26 import java.io.File;
27 import java.nio.file.Files;
28 import java.util.LinkedList;
29 import java.util.List;
30 import org.junit.Test;
31 import org.onap.policy.aai.util.Serialization;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34
35 public class RelationshipTest {
36     private static final Logger logger = LoggerFactory.getLogger(RelationshipTest.class);
37
38     @Test
39     public void test() throws Exception {
40         // deserialize json and verify fields are populated properly
41         String json = new String(Files
42                         .readAllBytes(new File("src/test/resources/org/onap/policy/aai/Relationship.json").toPath()));
43
44         Relationship relationship = Serialization.gsonPretty.fromJson(json, Relationship.class);
45
46         assertEquals("/aai/v11/network/generic-vnfs/generic-vnf/807a3f02-f878-436b-870c-f0e91e81570d",
47                         relationship.getRelatedLink());
48         assertEquals("generic-vnf", relationship.getRelatedTo());
49
50         // don't need to verify this in depth, as it has its own tests that do that
51         List<RelatedToProperty> relatedToProperty = relationship.getRelatedToProperty();
52         assertNotNull(relatedToProperty);
53         assertEquals(2, relatedToProperty.size());
54         assertEquals("vLoadBalancerMS-Vnf-0809-1", relatedToProperty.get(0).getPropertyValue());
55         assertEquals("vLoadBalancerMS-Vnf-0809-2", relatedToProperty.get(1).getPropertyValue());
56
57         // don't need to verify this in depth, as it has its own tests that do that
58         List<RelationshipData> relationshipData = relationship.getRelationshipData();
59         assertNotNull(relationshipData);
60         assertEquals(2, relationshipData.size());
61         assertEquals("807a3f02-f878-436b-870c-f0e91e81570d", relationshipData.get(0).getRelationshipValue());
62         assertEquals("907a3f02-f878-436b-870c-f0e91e81570e", relationshipData.get(1).getRelationshipValue());
63
64         logger.info(Serialization.gsonPretty.toJson(relationship));
65
66         // verify that setXxx methods work
67         relatedToProperty = new LinkedList<>();
68         relatedToProperty.add(new RelatedToProperty());
69         relatedToProperty.add(new RelatedToProperty());
70         relatedToProperty.add(new RelatedToProperty());
71
72         relationshipData = new LinkedList<>();
73         relationshipData.add(new RelationshipData());
74         relationshipData.add(new RelationshipData());
75         relationshipData.add(new RelationshipData());
76
77         relationship.setRelatedLink("related-link");
78         relationship.setRelatedTo("related-to");
79         relationship.setRelatedToProperty(relatedToProperty);
80         relationship.setRelationshipData(relationshipData);
81
82         assertEquals("related-link", relationship.getRelatedLink());
83         assertEquals("related-to", relationship.getRelatedTo());
84         assertEquals(relatedToProperty, relationship.getRelatedToProperty());
85         assertEquals(relationshipData, relationship.getRelationshipData());
86     }
87
88 }