Draft of op policy
[clamp.git] / src / test / java / org / onap / clamp / policy / microservice / OperationalPolicyPayloadTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 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  * ===================================================================
21  *
22  */
23
24 package org.onap.clamp.policy.microservice;
25
26 import static org.assertj.core.api.Assertions.assertThat;
27
28 import com.google.gson.GsonBuilder;
29 import com.google.gson.JsonObject;
30
31 import java.io.IOException;
32 import java.util.Map;
33
34 import org.junit.Test;
35 import org.onap.clamp.clds.util.ResourceFileUtil;
36 import org.onap.clamp.policy.operational.LegacyOperationalPolicy;
37 import org.onap.clamp.policy.operational.OperationalPolicy;
38 import org.skyscreamer.jsonassert.JSONAssert;
39
40 public class OperationalPolicyPayloadTest {
41
42     @Test
43     public void testOperationalPolicyPayloadConstruction() throws IOException {
44         JsonObject jsonConfig = new GsonBuilder().create().fromJson(
45                 ResourceFileUtil.getResourceAsString("tosca/operational-policy-properties.json"), JsonObject.class);
46         OperationalPolicy policy = new OperationalPolicy("testPolicy", null, jsonConfig);
47
48         assertThat(policy.createPolicyPayloadYaml())
49                 .isEqualTo(ResourceFileUtil.getResourceAsString("tosca/operational-policy-payload.yaml"));
50
51         assertThat(policy.createPolicyPayload())
52                 .isEqualTo(ResourceFileUtil.getResourceAsString("tosca/operational-policy-payload.json"));
53     }
54
55     @Test
56     public void testLegacyOperationalPolicyPayloadConstruction() throws IOException {
57         JsonObject jsonConfig = new GsonBuilder().create().fromJson(
58                 ResourceFileUtil.getResourceAsString("tosca/operational-policy-properties.json"), JsonObject.class);
59         assertThat(LegacyOperationalPolicy.createPolicyPayloadYamlLegacy(jsonConfig.get("operational_policy")))
60                 .isEqualTo(ResourceFileUtil.getResourceAsString("tosca/operational-policy-payload-legacy.yaml"));
61     }
62
63     @Test
64     public void testGuardPolicyEmptyPayloadConstruction() throws IOException {
65         JsonObject jsonConfig = new GsonBuilder().create().fromJson(
66                 ResourceFileUtil.getResourceAsString("tosca/operational-policy-no-guard-properties.json"),
67                 JsonObject.class);
68         OperationalPolicy policy = new OperationalPolicy("testPolicy", null, jsonConfig);
69         Map<String, String> guardsMap = policy.createGuardPolicyPayloads();
70         assertThat(guardsMap).isEmpty();
71         assertThat(guardsMap.entrySet()).isEmpty();
72     }
73
74     @Test
75     public void testGuardPolicyPayloadConstruction() throws IOException {
76         JsonObject jsonConfig = new GsonBuilder().create().fromJson(
77                 ResourceFileUtil.getResourceAsString("tosca/operational-policy-properties.json"), JsonObject.class);
78         OperationalPolicy policy = new OperationalPolicy("testPolicy", null, jsonConfig);
79
80         Map<String, String> guardsMap = policy.createGuardPolicyPayloads();
81
82         JSONAssert.assertEquals(ResourceFileUtil.getResourceAsString("tosca/guard1-policy-payload.json"),
83                 guardsMap.get("guard.minmax.new"), false);
84
85         JSONAssert.assertEquals(ResourceFileUtil.getResourceAsString("tosca/guard2-policy-payload.json"),
86                 guardsMap.get("guard.frequency.new"), false);
87     }
88 }