Fix some sonars 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         /*
53          * Disabling sonar to test equals().
54          */
55         assertEquals(responseWrapper, responseWrapper);                 // NOSONAR
56         //assertEquals(responseWrapper, copiedPciResponseWrapper);
57         assertNotEquals(responseWrapper, null);
58         assertNotEquals(responseWrapper, "Hello");                      // NOSONAR
59
60         responseWrapper.setBody(null);
61         assertNotEquals(responseWrapper, copiedPciResponseWrapper);
62         copiedPciResponseWrapper.setBody(null);
63         //assertEquals(responseWrapper, copiedPciResponseWrapper);
64         responseWrapper.setBody(response);
65         //assertNotEquals(responseWrapper, copiedPciResponseWrapper);
66         copiedPciResponseWrapper.setBody(response);
67         //assertEquals(responseWrapper, copiedPciResponseWrapper);
68     }
69 }