dc48e75a10cb2b81d5e15c2aa01fec4363af6941
[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             Util.buildVfcSim();
47         } catch (final Exception e) {
48             fail(e.getMessage());
49         }
50     }
51
52     @AfterClass
53     public static void tearDownSimulator() {
54         HttpServletServerFactoryInstance.getServerFactory().destroy();
55     }
56
57     @Test
58     public void testPost() {
59         final Pair<Integer, String> httpDetails =
60                 new RestManager().post("http://localhost:6668/api/nslcm/v1/ns/1234567890/heal", "username", "password",
61                         new HashMap<String, String>(), "application/json", "Some Request Here");
62         assertNotNull(httpDetails);
63         assertEquals(202, httpDetails.getLeft().intValue());
64         final VfcResponse response = Serialization.gsonPretty.fromJson(httpDetails.getRight(), VfcResponse.class);
65         assertNotNull(response);
66     }
67
68     @Test
69     public void testGet() {
70         final Pair<Integer, String> httpDetails = new RestManager().get("http://localhost:6668/api/nslcm/v1/jobs/1234",
71                 "username", "password", new HashMap<String, String>());
72         assertNotNull(httpDetails);
73         final VfcResponse response = Serialization.gsonPretty.fromJson(httpDetails.getRight(), VfcResponse.class);
74         assertNotNull(response);
75     }
76 }