Address more sonar issues in policy-models
[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  * Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.sdnr;
24
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertNotEquals;
27 import static org.junit.Assert.assertNotNull;
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         assertEquals(responseWrapper, (Object) responseWrapper);
53         //assertEquals(responseWrapper, copiedPciResponseWrapper);
54         assertNotEquals(responseWrapper, null);
55         assertNotEquals(responseWrapper, (Object) "Hello");
56
57         responseWrapper.setBody(null);
58         assertNotEquals(responseWrapper, copiedPciResponseWrapper);
59         copiedPciResponseWrapper.setBody(null);
60         //assertEquals(responseWrapper, copiedPciResponseWrapper);
61         responseWrapper.setBody(response);
62         //assertNotEquals(responseWrapper, copiedPciResponseWrapper);
63         copiedPciResponseWrapper.setBody(response);
64         //assertEquals(responseWrapper, copiedPciResponseWrapper);
65     }
66 }