Merge "Support more Generic workflow for voLTE"
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / openecomp / mso / client / appc / ApplicationControllerSupportTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.client.appc;
22
23 import static org.assertj.core.api.Assertions.assertThat;
24
25 import junitparams.JUnitParamsRunner;
26 import junitparams.Parameters;
27 import org.junit.Test;
28 import org.junit.runner.RunWith;
29 import org.openecomp.appc.client.lcm.model.Status;
30 import org.openecomp.mso.client.appc.ApplicationControllerSupport.StatusCategory;
31
32 @RunWith(JUnitParamsRunner.class)
33 public class ApplicationControllerSupportTest {
34
35     public static Object[][] statusesAndCategories() {
36         return new Object[][]{
37                 {100, StatusCategory.NORMAL},
38                 {200, StatusCategory.ERROR},
39                 {300, StatusCategory.ERROR},
40                 {400, StatusCategory.NORMAL},
41                 {401, StatusCategory.ERROR},
42                 {500, StatusCategory.NORMAL},
43                 {501, StatusCategory.ERROR},
44                 {502, StatusCategory.WARNING},
45                 {800, StatusCategory.WARNING},
46         };
47     }
48
49     public static Object[][] statusesAndFinalities() {
50         return new Object[][]{
51                 {100, false},
52                 {200, true},
53                 {300, true},
54                 {400, true},
55                 {500, false},
56                 {800, true},
57         };
58     }
59
60     @Test
61     @Parameters(method = "statusesAndCategories")
62     public void shouldReturnCategoryForCode(int code, StatusCategory category) throws Exception {
63         // when
64         StatusCategory detectedCategory = ApplicationControllerSupport.getCategoryOf(createStatus(code));
65         // then
66         assertThat(detectedCategory).isEqualTo(category);
67     }
68
69     @Test
70     @Parameters(method = "statusesAndFinalities")
71     public void shouldReturnFinalityForCode(int code, boolean expectedFinality) throws Exception {
72         // when
73         boolean finality = ApplicationControllerSupport.getFinalityOf(createStatus(code));
74         // then
75         assertThat(finality).isEqualTo(expectedFinality);
76     }
77
78     private Status createStatus(int code) {
79         Status status = new Status();
80         status.setCode(code);
81         return status;
82     }
83 }