2104c18984e33774d1e44aa958626f33521a6598
[policy/models.git] / models-interactions / model-impl / aai / src / test / java / org / onap / policy / aai / RelationshipListTest.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 RelationshipListTest {
37     private static final Logger logger = LoggerFactory.getLogger(RelationshipListTest.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.readAllBytes(
43                         new File("src/test/resources/org/onap/policy/aai/RelationshipList.json").toPath()));
44
45         RelationshipList relationshipList = Serialization.gsonPretty.fromJson(json, RelationshipList.class);
46
47         List<Relationship> lst = relationshipList.getRelationships();
48         assertNotNull(lst);
49         assertEquals(3, lst.size());
50
51         // don't need to verify this in depth, as it has its own tests that do that
52         assertEquals("generic-vnf", lst.get(0).getRelatedTo());
53         assertEquals("image", lst.get(1).getRelatedTo());
54         assertEquals("flavor", lst.get(2).getRelatedTo());
55
56         logger.info(Serialization.gsonPretty.toJson(relationshipList));
57
58         // verify that setXxx methods work
59         lst = new LinkedList<>();
60         lst.add(new Relationship());
61         lst.add(new Relationship());
62
63         relationshipList.setRelationships(lst);
64         assertEquals(lst, relationshipList.getRelationships());
65     }
66
67 }