Use lombok annotations for sdnr, simulators
[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-2021 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.assertj.core.api.Assertions.assertThat;
26 import static org.junit.Assert.assertEquals;
27 import static org.junit.Assert.assertNotEquals;
28 import static org.junit.Assert.assertNotNull;
29
30 import org.junit.Test;
31
32 public class PciRequestWrapperTest {
33
34     @Test
35     public void testPciRequestWrapperWrapper() {
36         assertNotNull(new PciRequestWrapper(new PciRequest()));
37         PciRequestWrapper requestWrapper = new PciRequestWrapper();
38         assertNotNull(requestWrapper);
39         assertNotEquals(0, requestWrapper.hashCode());
40
41         PciRequest request = new PciRequest();
42
43         requestWrapper.setBody(request);
44         assertEquals(request, requestWrapper.getBody());
45
46         assertNotEquals(0, requestWrapper.hashCode());
47
48         assertThat(requestWrapper.toString())
49             .startsWith("PciRequestWrapper(")
50             .contains("body=PciRequest(commonHeader=nul");
51
52         PciRequestWrapper copiedPciRequestWrapper = new PciRequestWrapper();
53         copiedPciRequestWrapper.setBody(requestWrapper.getBody());
54
55         assertEquals(requestWrapper, (Object) requestWrapper);
56         assertEquals(requestWrapper, copiedPciRequestWrapper);
57         assertNotEquals(requestWrapper, null);
58         assertNotEquals(requestWrapper, (Object) "Hello");
59
60         requestWrapper.setBody(null);
61         assertNotEquals(requestWrapper, copiedPciRequestWrapper);
62         copiedPciRequestWrapper.setBody(null);
63         assertEquals(requestWrapper, copiedPciRequestWrapper);
64         requestWrapper.setBody(request);
65         assertNotEquals(requestWrapper, copiedPciRequestWrapper);
66         copiedPciRequestWrapper.setBody(request);
67         assertEquals(requestWrapper, copiedPciRequestWrapper);
68     }
69 }