Unit test fails due to cleanup
[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 import java.io.IOException;
31
32 import org.junit.Test;
33 import org.onap.clamp.clds.util.ResourceFileUtils;
34 import org.onap.clamp.loop.template.PolicyModel;
35 import org.onap.clamp.policy.operational.LegacyOperationalPolicy;
36 import org.onap.clamp.policy.operational.OperationalPolicy;
37
38 public class OperationalPolicyPayloadTest {
39
40     @Test
41     public void testOperationalPolicyLegacyPayloadConstruction() throws IOException {
42         JsonObject jsonConfig = new GsonBuilder().create().fromJson(
43                 ResourceFileUtils.getResourceAsString("tosca/operational-policy-properties.json"), JsonObject.class);
44         OperationalPolicy policy = new OperationalPolicy("testPolicy.legacy", jsonConfig, null,
45                 new PolicyModel("onap.policies.controlloop.Operational.legacy", "", "1.0.0", "test"), null, null, null);
46
47         assertThat(policy.createPolicyPayloadYaml())
48                 .isEqualTo(ResourceFileUtils.getResourceAsString("tosca/operational-policy-payload.yaml"));
49
50         assertThat(policy.createPolicyPayload())
51                 .isEqualTo(ResourceFileUtils.getResourceAsString("tosca/operational-policy-payload.json"));
52     }
53
54     @Test
55     public void testLegacyOperationalPolicyPayloadConstruction() throws IOException {
56         JsonObject jsonConfig = new GsonBuilder().create().fromJson(
57                 ResourceFileUtils.getResourceAsString("tosca/operational-policy-properties.json"), JsonObject.class);
58         assertThat(LegacyOperationalPolicy.createPolicyPayloadYamlLegacy(jsonConfig.get("operational_policy")))
59                 .isEqualTo(ResourceFileUtils.getResourceAsString("tosca/operational-policy-payload-legacy.yaml"));
60     }
61 }