summaryrefslogtreecommitdiffstats
path: root/appc-lifecycle-management/state-machine-lib/src/test/java/org/openecomp/appc/statemachine/objects/EventTest.java
blob: 961e33ffd9481ffb1fa66c0dad766c0efb19aed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * =============================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * ============LICENSE_END=========================================================
 */

package org.onap.appc.statemachine.objects;

import org.junit.Assert;
import org.junit.Test;
import org.mockito.internal.util.reflection.Whitebox;

public class EventTest {
    private final String EVENT_NAME = "Testing Event";
    private Event event = new Event(EVENT_NAME);

    @Test
    public void testConstructor() {
        Event event = new Event(EVENT_NAME);
        Assert.assertEquals("Should set eventName",
                EVENT_NAME, Whitebox.getInternalState(event, "eventName"));
        Assert.assertEquals("Should set hash code",
                EVENT_NAME.toLowerCase().hashCode(), (int)Whitebox.getInternalState(event, "hashCode"));
    }

    @Test
    public void testHashCode() throws Exception {
        Assert.assertEquals("Should return proper hash code",
                EVENT_NAME.toLowerCase().hashCode(), event.hashCode());
    }

    @Test
    public void testEquals() throws Exception {
        Assert.assertFalse("should return false for null", event.equals(null));
        Assert.assertFalse("should return false for object", event.equals(new State(EVENT_NAME)));
        Assert.assertFalse("should return false for different event",
                event.equals(new Event("Another")));
        Assert.assertTrue("should return true", event.equals(new Event(EVENT_NAME)));
        Assert.assertTrue("should return true (lower case)", event.equals(new Event(EVENT_NAME.toLowerCase())));
    }

    @Test
    public void testGetEventName() throws Exception {
        Assert.assertEquals("Should return EVENT_NAME", EVENT_NAME, event.getEventName());
    }

    @Test
    public void testToString() throws Exception {
        Assert.assertEquals("Should return EVENT_NAME", EVENT_NAME, event.toString());
    }

}