4bd7ba48deec298de0a2da417b3844e6ed140ae6
[policy/models.git] / models-interactions / model-impl / appclcm / src / test / java / org / onap / policy / appclcm / LcmResponseStatusTest.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 LcmResponseStatusTest {
33
34     @Test
35     public void testResonseStatus() {
36         LcmResponseStatus status = new LcmResponseStatus();
37         assertNotNull(status);
38         assertNotEquals(0, status.hashCode());
39
40         status.setCode(1234);
41         assertEquals(1234, status.getCode());
42
43         status.setMessage("The wonderful land of Oz");
44         assertEquals("The wonderful land of Oz", status.getMessage());
45
46         assertEquals("ResponseStatus [code=1234, message=The wonderfu", status.toString().substring(0, 47));
47
48         LcmResponseStatus copiedStatus = new LcmResponseStatus();
49         copiedStatus.setCode(status.getCode());
50         copiedStatus.setMessage(status.getMessage());
51
52         assertTrue(status.equals(status));
53         assertTrue(status.equals(copiedStatus));
54         assertFalse(status.equals(null));
55         assertFalse(status.equals("Hello"));
56
57         status.setCode(-1);
58         assertFalse(status.equals(copiedStatus));
59         copiedStatus.setCode(-1);
60         assertTrue(status.equals(copiedStatus));
61         status.setCode(1234);
62         assertFalse(status.equals(copiedStatus));
63         copiedStatus.setCode(1234);
64         assertTrue(status.equals(copiedStatus));
65
66         status.setMessage(null);
67         assertFalse(status.equals(copiedStatus));
68         copiedStatus.setMessage(null);
69         assertTrue(status.equals(copiedStatus));
70         status.setMessage("The wonderful land of Oz");
71         assertFalse(status.equals(copiedStatus));
72         copiedStatus.setMessage("The wonderful land of Oz");
73         assertTrue(status.equals(copiedStatus));
74     }
75 }