move actors code in drools-applications to policy/models
[policy/models.git] / models-interactions / model-actors / actor.appclcm / src / test / java / org / onap / policy / controlloop / actor / appclcm / AppcLcmRecipeFormatterTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  *
4  * ================================================================================
5  * Copyright (C) 2018 Nokia Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.controlloop.actor.appclcm;
23
24 import static org.junit.Assert.assertEquals;
25
26 import org.junit.Test;
27
28
29
30 public class AppcLcmRecipeFormatterTest {
31
32     @Test
33     public void shouldCorrectlyFormatRestartRequestWhenRestartGiven() {
34         //given
35         AppcLcmRecipeFormatter recipeFormatter = new AppcLcmRecipeFormatter("Restart");
36         String expectedUrlRecipe = "restart";
37         String expectedBodyRecipe = "Restart";
38
39         //when
40         String actualUrlRecipe = recipeFormatter.getUrlRecipe();
41         String actualBodyRecipe = recipeFormatter.getBodyRecipe();
42
43         //then
44         assertEquals(expectedUrlRecipe, actualUrlRecipe);
45         assertEquals(expectedBodyRecipe, actualBodyRecipe);
46     }
47
48     @Test
49     public void shouldReturnCapitalizedBodySingleWordRecipe() {
50         //given
51         AppcLcmRecipeFormatter recipeFormatter = new AppcLcmRecipeFormatter("moDify");
52         String expectedRecipe = "Modify";
53
54         //when
55         String actualRecipe = recipeFormatter.getBodyRecipe();
56
57         //then
58         assertEquals(expectedRecipe, actualRecipe);
59     }
60
61     @Test
62     public void shouldReturnCapitalizeAndJoinedBodyMultiWordRecipe() {
63         //given
64         AppcLcmRecipeFormatter recipeFormatter = new AppcLcmRecipeFormatter("coNfig-moDify");
65         String expectedRecipe = "ConfigModify";
66
67         //when
68         String actualRecipe = recipeFormatter.getBodyRecipe();
69
70         //then
71         assertEquals(expectedRecipe, actualRecipe);
72     }
73
74     @Test
75     public void shouldReturnLowercasedUrlSingleWordRecipe() {
76         //given
77         AppcLcmRecipeFormatter recipeFormatter = new AppcLcmRecipeFormatter("ModIfy");
78         String expectedRecipe = "modify";
79
80         //when
81         String actualRecipe = recipeFormatter.getUrlRecipe();
82
83         //then
84         assertEquals(expectedRecipe, actualRecipe);
85     }
86
87     @Test
88     public void shouldReturnLowercasedDashJoinedUrlMultiWordRecipe() {
89         //given
90         AppcLcmRecipeFormatter recipeFormatter = new AppcLcmRecipeFormatter("Config-MoDify");
91         String expectedRecipe = "config-modify";
92
93         //when
94         String actualRecipe = recipeFormatter.getUrlRecipe();
95
96         //then
97         assertEquals(expectedRecipe, actualRecipe);
98     }
99 }