Third part of onap rename
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / test / java / org / onap / appc / listener / demo / model / TestEnums.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.listener.demo.model;
26
27 import static org.junit.Assert.assertEquals;
28 import static org.junit.Assert.assertNull;
29
30 import org.junit.Test;
31 import org.onap.appc.listener.demo.model.Action;
32 import org.onap.appc.listener.demo.model.Status;
33
34 public class TestEnums {
35
36     @Test
37     public void testAction() {
38         assertEquals(Action.Rebuild, Action.toAction("Rebuild"));
39         assertEquals(Action.Restart, Action.toAction("restart"));
40         assertEquals(Action.Migrate, Action.toAction("MIGRATE"));
41         assertEquals(Action.Evacuate, Action.toAction("Evacuate"));
42         assertNull(Action.toAction("Unknown"));
43         assertNull(Action.toAction(null));
44
45         assertEquals(6, Action.values().length);
46     }
47
48     @Test
49     public void testStatus() {
50
51         assertEquals(Status.ACCEPTED, Status.toStatus("accepted"));
52         assertEquals(Status.SUCCESS, Status.toStatus("SuCcEsS"));
53         assertEquals(Status.FAILURE, Status.toStatus("Failure"));
54         assertNull(Status.toStatus("Unknown"));
55         assertNull(Status.toStatus(null));
56
57         assertEquals(3, Status.values().length);
58
59     }
60
61 }