2  * ============LICENSE_START=======================================================
 
   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
 
  13  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  22  * ============LICENSE_END=========================================================
 
  25 package org.onap.appc.statemachine.objects;
 
  27 import org.junit.Assert;
 
  28 import org.junit.Test;
 
  29 import org.mockito.internal.util.reflection.Whitebox;
 
  31 public class EventTest {
 
  32     private final String EVENT_NAME = "Testing Event";
 
  33     private Event event = new Event(EVENT_NAME);
 
  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"));
 
  45     public void testHashCode() throws Exception {
 
  46         Assert.assertEquals("Should return proper hash code",
 
  47                 EVENT_NAME.toLowerCase().hashCode(), event.hashCode());
 
  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())));
 
  61     public void testGetEventName() throws Exception {
 
  62         Assert.assertEquals("Should return EVENT_NAME", EVENT_NAME, event.getEventName());
 
  66     public void testToString() throws Exception {
 
  67         Assert.assertEquals("Should return EVENT_NAME", EVENT_NAME, event.toString());