Java 17 Upgrade
[policy/models.git] / models-interactions / model-simulators / src / test / java / org / onap / policy / simulators / VfcSimulatorTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * simulators
4  * ================================================================================
5  * Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019-2020 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.simulators;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertNotNull;
26 import static org.junit.Assert.fail;
27
28 import java.util.HashMap;
29 import org.apache.commons.lang3.tuple.Pair;
30 import org.junit.AfterClass;
31 import org.junit.BeforeClass;
32 import org.junit.Test;
33 import org.onap.policy.common.endpoints.http.server.HttpServletServerFactoryInstance;
34 import org.onap.policy.rest.RestManager;
35 import org.onap.policy.vfc.VfcResponse;
36 import org.onap.policy.vfc.util.Serialization;
37
38 public class VfcSimulatorTest {
39
40     /**
41      * Set up test class.
42      */
43     @BeforeClass
44     public static void setUpSimulator() {
45         try {
46             var testServer = Util.buildVfcSim();
47             assertNotNull(testServer);
48         } catch (final Exception e) {
49             fail(e.getMessage());
50         }
51     }
52
53     @AfterClass
54     public static void tearDownSimulator() {
55         HttpServletServerFactoryInstance.getServerFactory().destroy();
56     }
57
58     @Test
59     public void testPost() {
60         final Pair<Integer, String> httpDetails =
61                 new RestManager().post("http://localhost:6668/api/nslcm/v1/ns/1234567890/heal", "username", "password",
62                     new HashMap<>(), "application/json", "Some Request Here");
63         assertNotNull(httpDetails);
64         assertEquals(202, httpDetails.getLeft().intValue());
65         final VfcResponse response = Serialization.gsonPretty.fromJson(httpDetails.getRight(), VfcResponse.class);
66         assertNotNull(response);
67     }
68
69     @Test
70     public void testGet() {
71         final Pair<Integer, String> httpDetails = new RestManager().get("http://localhost:6668/api/nslcm/v1/jobs/1234",
72                 "username", "password", new HashMap<>());
73         assertNotNull(httpDetails);
74         final VfcResponse response = Serialization.gsonPretty.fromJson(httpDetails.getRight(), VfcResponse.class);
75         assertNotNull(response);
76     }
77 }