5ef26b34ee613eeeab927d0e3915e6b03dd19e10
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / 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.onap.so.client.appc;
22
23 import static org.assertj.core.api.Assertions.assertThat;
24
25 import org.junit.Test;
26 import org.junit.runner.RunWith;
27 import org.onap.appc.client.lcm.model.Status;
28 import org.onap.so.BaseTest;
29 import org.onap.so.client.appc.ApplicationControllerSupport.StatusCategory;
30
31 import junitparams.JUnitParamsRunner;
32 import junitparams.Parameters;
33
34 @RunWith(JUnitParamsRunner.class)
35 public class ApplicationControllerSupportTest{
36
37         public static Object[][] statusesAndCategories() {
38                 return new Object[][]{
39                         {100, StatusCategory.NORMAL},
40                         {200, StatusCategory.ERROR},
41                         {300, StatusCategory.ERROR},
42                         {400, StatusCategory.NORMAL},
43                         {401, StatusCategory.ERROR},
44                         {500, StatusCategory.NORMAL},
45                         {501, StatusCategory.ERROR},
46                         {502, StatusCategory.WARNING},
47                         {800, StatusCategory.WARNING},
48                 };
49         }
50
51         public static Object[][] statusesAndFinalities() {
52                 return new Object[][]{
53                         {100, false},
54                         {200, true},
55                         {300, true},
56                         {400, true},
57                         {500, false},
58                         {800, true},
59                 };
60         }
61
62         @Test
63         @Parameters(method = "statusesAndCategories")
64         public void shouldReturnCategoryForCode(int code, StatusCategory category) throws Exception {
65                 // when
66                 StatusCategory detectedCategory = ApplicationControllerSupport.getCategoryOf(createStatus(code));
67                 // then
68                 assertThat(detectedCategory).isEqualTo(category);
69         }
70
71         @Test
72         @Parameters(method = "statusesAndFinalities")
73         public void shouldReturnFinalityForCode(int code, boolean expectedFinality) throws Exception {
74                 // when
75                 boolean finality = ApplicationControllerSupport.getFinalityOf(createStatus(code));
76                 // then
77                 assertThat(finality).isEqualTo(expectedFinality);
78         }
79
80         private Status createStatus(int code) {
81                 Status status = new Status();
82                 status.setCode(code);
83                 return status;
84         }
85 }