Changed to unmaintained
[appc.git] / appc-lifecycle-management / state-machine-lib / src / test / java / org / onap / appc / statemachine / objects / EventTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
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  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.statemachine.objects;
25
26 import org.junit.Assert;
27 import org.junit.Test;
28 import org.mockito.internal.util.reflection.Whitebox;
29
30 public class EventTest {
31     private final String EVENT_NAME = "Testing Event";
32     private Event event = new Event(EVENT_NAME);
33
34     @Test
35     public void testConstructor() {
36         Event event = new Event(EVENT_NAME);
37         Assert.assertEquals("Should set eventName",
38                 EVENT_NAME, Whitebox.getInternalState(event, "eventName"));
39         Assert.assertEquals("Should set hash code",
40                 EVENT_NAME.toLowerCase().hashCode(), (int)Whitebox.getInternalState(event, "hashCode"));
41     }
42
43     @Test
44     public void testHashCode() throws Exception {
45         Assert.assertEquals("Should return proper hash code",
46                 EVENT_NAME.toLowerCase().hashCode(), event.hashCode());
47     }
48
49     @Test
50     public void testEquals() throws Exception {
51         Assert.assertFalse("should return false for null", event.equals(null));
52         Assert.assertFalse("should return false for object", event.equals(new State(EVENT_NAME)));
53         Assert.assertFalse("should return false for different event",
54                 event.equals(new Event("Another")));
55         Assert.assertTrue("should return true", event.equals(new Event(EVENT_NAME)));
56         Assert.assertTrue("should return true (lower case)", event.equals(new Event(EVENT_NAME.toLowerCase())));
57     }
58
59     @Test
60     public void testGetEventName() throws Exception {
61         Assert.assertEquals("Should return EVENT_NAME", EVENT_NAME, event.getEventName());
62     }
63
64     @Test
65     public void testToString() throws Exception {
66         Assert.assertEquals("Should return EVENT_NAME", EVENT_NAME, event.toString());
67     }
68
69 }