Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / model-impl / aai / src / test / java / org / onap / policy / aai / AaiGetVserverResponseTest.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 AaiGetVserverResponseTest {
36     private static final Logger logger = LoggerFactory.getLogger(AaiGetVserverResponseTest.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/AaiGetVserverResponse.json").toPath()));
43
44         AaiGetVserverResponse resp = Serialization.gsonPretty.fromJson(json, AaiGetVserverResponse.class);
45
46         // don't need to verify this in depth, as it has its own tests that do that
47         List<AaiNqVServer> lst = resp.getVserver();
48         assertEquals(1, lst.size());
49
50         AaiNqVServer svr = lst.get(0);
51         assertNotNull(svr);
52         assertEquals("1c94da3f-16f1-4fc7-9ed1-e018dfa62774", svr.getVserverId());
53
54         logger.info(Serialization.gsonPretty.toJson(resp));
55
56         // verify that setXxx methods work
57         lst = new LinkedList<>();
58         lst.add(new AaiNqVServer());
59         lst.add(new AaiNqVServer());
60
61         resp.setVserver(lst);
62
63         assertEquals(lst, resp.getVserver());
64
65
66         // test error case
67         json = new String(Files.readAllBytes(
68                         new File("src/test/resources/org/onap/policy/aai/AaiGetResponseError.json").toPath()));
69         resp = Serialization.gsonPretty.fromJson(json, AaiGetVserverResponse.class);
70
71         // don't need to verify this in depth, as it has its own tests that do that
72         assertNotNull(resp.getRequestError());
73         assertNotNull(resp.getRequestError().getServiceExcept());
74         assertEquals("SVC3001", resp.getRequestError().getServiceExcept().getMessageId());
75     }
76
77 }