Update license header in appc lifecycle and metric
[appc.git] / appc-lifecycle-management / state-machine-lib / src / test / java / org / onap / appc / statemachine / impl / readers / AppcOamMetaDataReaderTest.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.impl.readers;
25
26 import org.junit.Assert;
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.onap.appc.statemachine.objects.Event;
30 import org.onap.appc.statemachine.objects.State;
31 import org.onap.appc.statemachine.objects.StateMachineMetadata;
32
33 import java.util.ArrayList;
34 import java.util.List;
35 import java.util.Set;
36
37 public class AppcOamMetaDataReaderTest {
38     private List<String> expectedStateNames = new ArrayList<>();
39     private List<String> expectedEventNames = new ArrayList<>();
40
41     private StateMachineMetadata stateMachineMetadata = new AppcOamMetaDataReader().readMetadata();
42
43     @Before
44     public void setUp() throws Exception {
45         for (AppcOamStates appcOamStates : AppcOamStates.values()) {
46             expectedStateNames.add(appcOamStates.toString());
47         }
48         for (AppcOamMetaDataReader.AppcOperation appcOperation : AppcOamMetaDataReader.AppcOperation.values()) {
49             expectedEventNames.add(appcOperation.toString());
50         }
51     }
52
53     @Test
54     public void testReadMetadataForState() throws Exception {
55         Set<State> stateSet = stateMachineMetadata.getStates();
56         for (State state : stateSet) {
57             String eventName = state.getStateName();
58             Assert.assertTrue(String.format("Event(%s) should exist in expectedEventNames", eventName),
59                     expectedStateNames.contains(eventName));
60         }
61     }
62
63     @Test
64     public void testReadMetadataForEvent() throws Exception {
65         Set<Event> eventSet = stateMachineMetadata.getEvents();
66         for (Event event : eventSet) {
67             String eventName = event.getEventName();
68             Assert.assertTrue(String.format("Event(%s) should exist in expectedEventNames", eventName),
69                     expectedEventNames.contains(eventName));
70         }
71     }
72
73 }