046d7394d7821f4b520f09a3498725281a39d151
[clamp.git] / src / test / java / org / onap / clamp / clds / client / req / policy / OperationalPolicyYamlFormatterTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                             reserved.
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  * Modifications copyright (c) 2018 Nokia
21  * ===================================================================
22  *
23  */
24
25 package org.onap.clamp.clds.client.req.policy;
26
27 import java.util.Arrays;
28 import java.util.List;
29
30 import org.assertj.core.api.Assertions;
31 import org.junit.Test;
32 import org.onap.policy.controlloop.policy.PolicyResult;
33 import org.onap.policy.sdc.Resource;
34 import org.onap.policy.sdc.ResourceType;
35
36 public class OperationalPolicyYamlFormatterTest {
37
38     private OperationalPolicyYamlFormatter policyYamlFormatter = new OperationalPolicyYamlFormatter();
39
40     @Test
41     public void shouldConvertGivenStringsToResourceObjects()
42             throws SecurityException,
43             IllegalArgumentException {
44
45         //given
46         List<String> stringList = Arrays.asList("test1", "test2", "test3", "test4");
47
48         //when
49         Resource[] resources = policyYamlFormatter.convertToResources(stringList, ResourceType.VF);
50
51         //then
52         Assertions.assertThat(resources).extracting(Resource::getResourceName)
53                 .containsExactly("test1", "test2", "test3", "test4");
54     }
55
56     @Test
57     public void shouldConvertGivenStringsToPolicyResults()
58             throws SecurityException,
59             IllegalArgumentException {
60         //given
61         List<String> stringList = Arrays.asList("FAILURE", "SUCCESS", "FAILURE_GUARD", "FAILURE_TIMEOUT");
62
63         //when
64         PolicyResult[] policyResults = policyYamlFormatter.convertToPolicyResults(stringList);
65
66         //then
67         Assertions.assertThat(policyResults)
68                 .containsExactly(PolicyResult.FAILURE, PolicyResult.SUCCESS,
69                         PolicyResult.FAILURE_GUARD, PolicyResult.FAILURE_TIMEOUT);
70     }
71 }