2fc04794e0f8b6bcf21f45cf121fe8e4ccb775c7
[policy/drools-applications.git] / controlloop / common / model-impl / appclcm / src / test / java / org / onap / policy / appclcm / LcmResponseWrapperTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * appc
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.appclcm;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertNotEquals;
26 import static org.junit.Assert.assertNotNull;
27 import static org.junit.Assert.assertTrue;
28
29 import org.junit.Test;
30
31 public class LcmResponseWrapperTest {
32
33     @Test
34     public void testLcmResponseWrapperWrapper() {
35         LcmResponseWrapper responseWrapper = new LcmResponseWrapper();
36         assertNotNull(responseWrapper);
37         assertNotEquals(0, responseWrapper.hashCode());
38
39         LcmResponse response = new LcmResponse();
40
41         responseWrapper.setBody(response);
42         assertEquals(response, responseWrapper.getBody());
43
44         assertNotEquals(0, responseWrapper.hashCode());
45
46         assertEquals("ResponseWrapper [body=Response [commonHeader=n", responseWrapper.toString().substring(0, 46));
47
48         LcmResponseWrapper copiedLcmResponseWrapper = new LcmResponseWrapper();
49         copiedLcmResponseWrapper.setBody(responseWrapper.getBody());
50
51         assertTrue(responseWrapper.equals(responseWrapper));
52         assertTrue(responseWrapper.equals(copiedLcmResponseWrapper));
53         assertFalse(responseWrapper.equals(null));
54         assertFalse(responseWrapper.equals("Hello"));
55
56         responseWrapper.setBody(null);
57         assertFalse(responseWrapper.equals(copiedLcmResponseWrapper));
58         copiedLcmResponseWrapper.setBody(null);
59         assertTrue(responseWrapper.equals(copiedLcmResponseWrapper));
60         responseWrapper.setBody(response);
61         assertFalse(responseWrapper.equals(copiedLcmResponseWrapper));
62         copiedLcmResponseWrapper.setBody(response);
63         assertTrue(responseWrapper.equals(copiedLcmResponseWrapper));
64     }
65 }