Address more sonar issues in policy-models
[policy/models.git] / models-interactions / model-impl / sdnr / src / test / java / org / onap / policy / sdnr / PciRequestWrapperTest.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 PciRequestWrapperTest {
32
33     @Test
34     public void testPciRequestWrapperWrapper() {
35         assertNotNull(new PciRequestWrapper(new PciRequest()));
36         PciRequestWrapper requestWrapper = new PciRequestWrapper();
37         assertNotNull(requestWrapper);
38         assertNotEquals(0, requestWrapper.hashCode());
39
40         PciRequest request = new PciRequest();
41
42         requestWrapper.setBody(request);
43         assertEquals(request, requestWrapper.getBody());
44
45         assertNotEquals(0, requestWrapper.hashCode());
46
47         assertEquals("RequestWrapper [body=PciRequest[commonHeader=nul", requestWrapper.toString().substring(0, 48));
48
49         PciRequestWrapper copiedPciRequestWrapper = new PciRequestWrapper();
50         copiedPciRequestWrapper.setBody(requestWrapper.getBody());
51
52         assertEquals(requestWrapper, (Object) requestWrapper);
53         assertEquals(requestWrapper, copiedPciRequestWrapper);
54         assertNotEquals(requestWrapper, null);
55         assertNotEquals(requestWrapper, (Object) "Hello");
56
57         requestWrapper.setBody(null);
58         assertNotEquals(requestWrapper, copiedPciRequestWrapper);
59         copiedPciRequestWrapper.setBody(null);
60         assertEquals(requestWrapper, copiedPciRequestWrapper);
61         requestWrapper.setBody(request);
62         assertNotEquals(requestWrapper, copiedPciRequestWrapper);
63         copiedPciRequestWrapper.setBody(request);
64         assertEquals(requestWrapper, copiedPciRequestWrapper);
65     }
66 }