move actors code in drools-applications to policy/models
[policy/models.git] / models-interactions / model-impl / appclcm / src / test / java / org / onap / policy / appclcm / LcmRequestWrapperTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * appc
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T 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.appclcm;
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 LcmRequestWrapperTest {
33
34     @Test
35     public void testLcmRequestWrapperWrapper() {
36         assertNotNull(new LcmRequestWrapper(new LcmRequest()));
37         LcmRequestWrapper requestWrapper = new LcmRequestWrapper();
38         assertNotNull(requestWrapper);
39         assertNotEquals(0, requestWrapper.hashCode());
40
41         LcmRequest request = new LcmRequest();
42
43         requestWrapper.setBody(request);
44         assertEquals(request, requestWrapper.getBody());
45
46         assertNotEquals(0, requestWrapper.hashCode());
47
48         assertEquals("RequestWrapper [body=Request [commonHeader=nul", requestWrapper.toString().substring(0, 46));
49
50         LcmRequestWrapper copiedLcmRequestWrapper = new LcmRequestWrapper();
51         copiedLcmRequestWrapper.setBody(requestWrapper.getBody());
52
53         assertTrue(requestWrapper.equals(requestWrapper));
54         assertTrue(requestWrapper.equals(copiedLcmRequestWrapper));
55         assertFalse(requestWrapper.equals(null));
56         assertFalse(requestWrapper.equals("Hello"));
57
58         requestWrapper.setBody(null);
59         assertFalse(requestWrapper.equals(copiedLcmRequestWrapper));
60         copiedLcmRequestWrapper.setBody(null);
61         assertTrue(requestWrapper.equals(copiedLcmRequestWrapper));
62         requestWrapper.setBody(request);
63         assertFalse(requestWrapper.equals(copiedLcmRequestWrapper));
64         copiedLcmRequestWrapper.setBody(request);
65         assertTrue(requestWrapper.equals(copiedLcmRequestWrapper));
66     }
67 }