migrate model-impl from drools-applications
[policy/models.git] / models-interactions / model-impl / sdnr / src / test / java / org / onap / policy / sdnr / PciStatusTest.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  * ================================================================================
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.sdnr;
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 PciStatusTest {
33
34     @Test
35     public void testResponseStatus() {
36         Status status = new Status();
37         assertNotNull(status);
38         assertNotEquals(0, status.hashCode());
39
40         status.setCode(1234);
41         assertEquals(1234, status.getCode());
42
43         status.setValue("The wonderful land of Oz");
44         assertEquals("The wonderful land of Oz", status.getValue());
45
46         assertEquals("Status [code = 1234, value = The wonderfu", status.toString().substring(0, 41));
47
48         Status copiedStatus = new Status();
49         copiedStatus.setCode(status.getCode());
50         copiedStatus.setValue(status.getValue());
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.setValue(null);
67         assertFalse(status.equals(copiedStatus));
68         copiedStatus.setValue(null);
69         assertTrue(status.equals(copiedStatus));
70         status.setValue("The wonderful land of Oz");
71         assertFalse(status.equals(copiedStatus));
72         copiedStatus.setValue("The wonderful land of Oz");
73         assertTrue(status.equals(copiedStatus));
74     }
75 }