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