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