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