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 / VnfMetaDataReaderTest.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.lifecyclemanager.objects.VNFOperationOutcome;
30 import org.onap.appc.statemachine.objects.Event;
31 import org.onap.appc.statemachine.objects.State;
32 import org.onap.appc.statemachine.objects.StateMachineMetadata;
33
34 import java.util.ArrayList;
35 import java.util.List;
36 import java.util.Set;
37
38
39 public class VnfMetaDataReaderTest {
40     private List<String> expectedStateNames = new ArrayList<>();
41     private List<String> expectedEventNames = new ArrayList<>();
42
43     private StateMachineMetadata stateMachineMetadata = new VnfMetaDataReader().readMetadata();
44
45     @Before
46     public void setUp() throws Exception {
47         for (VnfMetaDataReader.VNFStates vnfStates : VnfMetaDataReader.VNFStates.values()) {
48             expectedStateNames.add(vnfStates.toString());
49         }
50         for (VnfMetaDataReader.VNFOperation vnfOperation : VnfMetaDataReader.VNFOperation.values()) {
51             expectedEventNames.add(vnfOperation.toString());
52         }
53         for (VNFOperationOutcome vnfOperationOutcome : VNFOperationOutcome.values()) {
54             expectedEventNames.add(vnfOperationOutcome.toString());
55         }
56     }
57
58     @Test
59     public void testReadMetadataForState() throws Exception {
60         Set<State> stateSet = stateMachineMetadata.getStates();
61         for (State state : stateSet) {
62             String eventName = state.getStateName();
63             Assert.assertTrue(String.format("Event(%s) should exist in expectedEventNames", eventName),
64                     expectedStateNames.contains(eventName));
65         }
66     }
67
68     @Test
69     public void testReadMetadataForEvent() throws Exception {
70         Set<Event> eventSet = stateMachineMetadata.getEvents();
71         for (Event event : eventSet) {
72             String eventName = event.getEventName();
73             Assert.assertTrue(String.format("Event(%s) should exist in expectedEventNames", eventName),
74                     expectedEventNames.contains(eventName));
75         }
76     }
77
78 }