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