move two modules from drools-application to models
[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-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.simulators;
23
24 import static org.junit.Assert.assertNotNull;
25 import static org.junit.Assert.assertTrue;
26 import static org.junit.Assert.fail;
27
28 import java.util.HashMap;
29
30 import org.junit.AfterClass;
31 import org.junit.BeforeClass;
32 import org.junit.Test;
33 import org.onap.policy.common.endpoints.http.server.HttpServletServer;
34 import org.onap.policy.rest.RestManager;
35 import org.onap.policy.rest.RestManager.Pair;
36 import org.onap.policy.vfc.VfcResponse;
37 import org.onap.policy.vfc.util.Serialization;
38
39 public class VfcSimulatorTest {
40
41     /**
42      * Set up test class.
43      */
44     @BeforeClass
45     public static void setUpSimulator() {
46         try {
47             Util.buildVfcSim();
48         } catch (final Exception e) {
49             fail(e.getMessage());
50         }
51     }
52
53     @AfterClass
54     public static void tearDownSimulator() {
55         HttpServletServer.factory.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<String, String>(), "application/json", "Some Request Here");
63         assertNotNull(httpDetails);
64         assertTrue(httpDetails.first == 202);
65         final VfcResponse response = Serialization.gsonPretty.fromJson(httpDetails.second, 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<String, String>());
73         assertNotNull(httpDetails);
74         final VfcResponse response = Serialization.gsonPretty.fromJson(httpDetails.second, VfcResponse.class);
75         assertNotNull(response);
76     }
77 }