0673fc036ef818f6395ca617c85aacfed5f757cd
[policy/models.git] / models-interactions / 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  * 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.sdnr;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertFalse;
26 import static org.junit.Assert.assertNotEquals;
27 import static org.junit.Assert.assertNotNull;
28 import static org.junit.Assert.assertTrue;
29
30 import org.junit.Test;
31
32 public class PciResponseWrapperTest {
33
34     @Test
35     public void testPciResponseWrapperWrapper() {
36
37         PciResponseWrapper responseWrapper = new PciResponseWrapper();
38         assertNotNull(responseWrapper);
39         assertNotEquals(0, responseWrapper.hashCode());
40
41         PciResponse response = new PciResponse();
42
43         responseWrapper.setBody(response);
44         assertEquals(response, responseWrapper.getBody());
45
46         assertNotEquals(0, responseWrapper.hashCode());
47
48         assertNotEquals("ResponseWrapper [body=Response [commonHeader=n", responseWrapper.toString().substring(0, 46));
49
50         PciResponseWrapper copiedPciResponseWrapper = new PciResponseWrapper();
51         copiedPciResponseWrapper.setBody(responseWrapper.getBody());
52
53         assertTrue(responseWrapper.equals(responseWrapper));
54         //assertTrue(responseWrapper.equals(copiedPciResponseWrapper));
55         assertFalse(responseWrapper.equals(null));
56         assertFalse(responseWrapper.equals("Hello"));
57
58         responseWrapper.setBody(null);
59         assertFalse(responseWrapper.equals(copiedPciResponseWrapper));
60         copiedPciResponseWrapper.setBody(null);
61         //assertTrue(responseWrapper.equals(copiedPciResponseWrapper));
62         responseWrapper.setBody(response);
63         //assertFalse(responseWrapper.equals(copiedPciResponseWrapper));
64         copiedPciResponseWrapper.setBody(response);
65         //assertTrue(responseWrapper.equals(copiedPciResponseWrapper));
66     }
67 }