logstash input
[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     @Test
39     public void shouldConvertGivenStringsToResourceObjects() throws SecurityException, IllegalArgumentException {
40
41         // given
42         List<String> stringList = Arrays.asList("test1", "test2", "test3", "test4");
43
44         // when
45         Resource[] resources = OperationalPolicyYamlFormatter.convertToResources(stringList, ResourceType.VF);
46
47         // then
48         Assertions.assertThat(resources).extracting(Resource::getResourceName).containsExactly("test1", "test2",
49             "test3", "test4");
50     }
51
52     @Test
53     public void shouldConvertGivenStringsToPolicyResults() throws SecurityException, IllegalArgumentException {
54         // given
55         List<String> stringList = Arrays.asList("FAILURE", "SUCCESS", "FAILURE_GUARD", "FAILURE_TIMEOUT");
56
57         // when
58         PolicyResult[] policyResults = OperationalPolicyYamlFormatter.convertToPolicyResults(stringList);
59
60         // then
61         Assertions.assertThat(policyResults).containsExactly(PolicyResult.FAILURE, PolicyResult.SUCCESS,
62             PolicyResult.FAILURE_GUARD, PolicyResult.FAILURE_TIMEOUT);
63     }
64 }