Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / model-impl / sdnr / src / test / java / org / onap / policy / sdnr / PciResponseWrapperTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * sdnr
4  * ================================================================================
5  * Copyright (C) 2018 Wipro Limited 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.sdnr;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertNotEquals;
26 import static org.junit.Assert.assertNotNull;
27 import static org.junit.Assert.assertTrue;
28
29 import org.junit.Test;
30
31 public class PciResponseWrapperTest {
32
33     @Test
34     public void testPciResponseWrapperWrapper() {
35
36         PciResponseWrapper responseWrapper = new PciResponseWrapper();
37         assertNotNull(responseWrapper);
38         assertNotEquals(0, responseWrapper.hashCode());
39
40         PciResponse response = new PciResponse();
41
42         responseWrapper.setBody(response);
43         assertEquals(response, responseWrapper.getBody());
44
45         assertNotEquals(0, responseWrapper.hashCode());
46
47         assertNotEquals("ResponseWrapper [body=Response [commonHeader=n", responseWrapper.toString().substring(0, 46));
48
49         PciResponseWrapper copiedPciResponseWrapper = new PciResponseWrapper();
50         copiedPciResponseWrapper.setBody(responseWrapper.getBody());
51
52         assertTrue(responseWrapper.equals(responseWrapper));
53         //assertTrue(responseWrapper.equals(copiedPciResponseWrapper));
54         assertFalse(responseWrapper.equals(null));
55         assertFalse(responseWrapper.equals("Hello"));
56
57         responseWrapper.setBody(null);
58         assertFalse(responseWrapper.equals(copiedPciResponseWrapper));
59         copiedPciResponseWrapper.setBody(null);
60         //assertTrue(responseWrapper.equals(copiedPciResponseWrapper));
61         responseWrapper.setBody(response);
62         //assertFalse(responseWrapper.equals(copiedPciResponseWrapper));
63         copiedPciResponseWrapper.setBody(response);
64         //assertTrue(responseWrapper.equals(copiedPciResponseWrapper));
65     }
66 }