Third part of onap rename
[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 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.statemachine.objects;
26
27 import org.junit.Assert;
28 import org.junit.Test;
29 import org.mockito.internal.util.reflection.Whitebox;
30
31 public class EventTest {
32     private final String EVENT_NAME = "Testing Event";
33     private Event event = new Event(EVENT_NAME);
34
35     @Test
36     public void testConstructor() {
37         Event event = new Event(EVENT_NAME);
38         Assert.assertEquals("Should set eventName",
39                 EVENT_NAME, Whitebox.getInternalState(event, "eventName"));
40         Assert.assertEquals("Should set hash code",
41                 EVENT_NAME.toLowerCase().hashCode(), (int)Whitebox.getInternalState(event, "hashCode"));
42     }
43
44     @Test
45     public void testHashCode() throws Exception {
46         Assert.assertEquals("Should return proper hash code",
47                 EVENT_NAME.toLowerCase().hashCode(), event.hashCode());
48     }
49
50     @Test
51     public void testEquals() throws Exception {
52         Assert.assertFalse("should return false for null", event.equals(null));
53         Assert.assertFalse("should return false for object", event.equals(new State(EVENT_NAME)));
54         Assert.assertFalse("should return false for different event",
55                 event.equals(new Event("Another")));
56         Assert.assertTrue("should return true", event.equals(new Event(EVENT_NAME)));
57         Assert.assertTrue("should return true (lower case)", event.equals(new Event(EVENT_NAME.toLowerCase())));
58     }
59
60     @Test
61     public void testGetEventName() throws Exception {
62         Assert.assertEquals("Should return EVENT_NAME", EVENT_NAME, event.getEventName());
63     }
64
65     @Test
66     public void testToString() throws Exception {
67         Assert.assertEquals("Should return EVENT_NAME", EVENT_NAME, event.toString());
68     }
69
70 }