Add missing entry_schema for operational policy type
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / legacy / mapping / LegacyOperationalPolicyMapperTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2020 Nordix Foundation.
4  *  Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.tosca.legacy.mapping;
23
24 import static org.assertj.core.api.Assertions.assertThatThrownBy;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertNotNull;
27 import static org.junit.Assert.assertTrue;
28
29 import java.util.LinkedHashMap;
30
31 import org.junit.Before;
32 import org.junit.Test;
33 import org.onap.policy.common.utils.coder.StandardCoder;
34 import org.onap.policy.common.utils.coder.YamlJsonTranslator;
35 import org.onap.policy.common.utils.resources.ResourceUtils;
36 import org.onap.policy.models.base.PfConceptKey;
37 import org.onap.policy.models.base.PfValidationResult;
38 import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate;
39 import org.onap.policy.models.tosca.legacy.concepts.LegacyOperationalPolicy;
40 import org.onap.policy.models.tosca.simple.concepts.JpaToscaPolicies;
41 import org.onap.policy.models.tosca.simple.concepts.JpaToscaPolicy;
42 import org.onap.policy.models.tosca.simple.concepts.JpaToscaServiceTemplate;
43 import org.onap.policy.models.tosca.simple.concepts.JpaToscaTopologyTemplate;
44 import org.onap.policy.models.tosca.utils.ToscaServiceTemplateUtils;
45 import org.slf4j.Logger;
46 import org.slf4j.LoggerFactory;
47
48 /**
49  * Test serialization of monitoring policies.
50  *
51  * @author Liam Fallon (liam.fallon@est.tech)
52  */
53 public class LegacyOperationalPolicyMapperTest {
54     // Logger for this class
55     private static final Logger LOGGER = LoggerFactory.getLogger(LegacyOperationalPolicyMapperTest.class);
56
57     private StandardCoder standardCoder;
58     private YamlJsonTranslator yamlJsonTranslator = new YamlJsonTranslator();
59
60     @Before
61     public void setUp() {
62         standardCoder = new StandardCoder();
63     }
64
65     @Test
66     public void testJsonDeserialization() throws Exception {
67         String policyTypeInputJson =
68                 ResourceUtils.getResourceAsString("policytypes/onap.policies.controlloop.Operational.yaml");
69         ToscaServiceTemplate policyTypes = yamlJsonTranslator.fromYaml(policyTypeInputJson, ToscaServiceTemplate.class);
70
71         JpaToscaServiceTemplate policyTypeServiceTemplate = new JpaToscaServiceTemplate();
72         policyTypeServiceTemplate.fromAuthorative(policyTypes);
73
74         String vcpePolicyJson = ResourceUtils.getResourceAsString("policies/vCPE.policy.operational.legacy.input.json");
75         LegacyOperationalPolicy legacyOperationalPolicy =
76                 standardCoder.decode(vcpePolicyJson, LegacyOperationalPolicy.class);
77
78         JpaToscaServiceTemplate legacyPolicyFragmentServiceTemplate =
79                 new LegacyOperationalPolicyMapper().toToscaServiceTemplate(legacyOperationalPolicy);
80
81         JpaToscaServiceTemplate serviceTemplate =
82                 ToscaServiceTemplateUtils.addFragment(policyTypeServiceTemplate, legacyPolicyFragmentServiceTemplate);
83
84         assertNotNull(serviceTemplate);
85         LOGGER.info(serviceTemplate.validate(new PfValidationResult()).toString());
86         assertTrue(serviceTemplate.validate(new PfValidationResult()).isValid());
87
88         assertEquals("operational.restart:1.0.0",
89                 serviceTemplate.getTopologyTemplate().getPolicies().get("operational.restart").getId());
90     }
91
92     @Test
93     public void testOperationalPolicyMapper() {
94         JpaToscaServiceTemplate serviceTemplate = new JpaToscaServiceTemplate();
95         serviceTemplate.setTopologyTemplate(new JpaToscaTopologyTemplate());
96         serviceTemplate.getTopologyTemplate().setPolicies(new JpaToscaPolicies());
97
98         JpaToscaPolicy policy0 = new JpaToscaPolicy(new PfConceptKey("PolicyName0", "0.0.1"));
99         serviceTemplate.getTopologyTemplate().getPolicies().getConceptMap().put(policy0.getKey(), policy0);
100         JpaToscaPolicy policy1 = new JpaToscaPolicy(new PfConceptKey("PolicyName1", "0.0.1"));
101         serviceTemplate.getTopologyTemplate().getPolicies().getConceptMap().put(policy1.getKey(), policy1);
102
103         assertThatThrownBy(() -> {
104             new LegacyOperationalPolicyMapper().fromToscaServiceTemplate(serviceTemplate);
105         }).hasMessage("more than one policy found in service template");
106
107         serviceTemplate.getTopologyTemplate().getPolicies().getConceptMap().remove(policy1.getKey());
108
109         assertThatThrownBy(() -> {
110             new LegacyOperationalPolicyMapper().fromToscaServiceTemplate(serviceTemplate);
111         }).hasMessage("no properties defined on TOSCA policy");
112
113         policy0.setProperties(new LinkedHashMap<>());
114         assertThatThrownBy(() -> {
115             new LegacyOperationalPolicyMapper().fromToscaServiceTemplate(serviceTemplate);
116         }).hasMessage("property \"content\" not defined on TOSCA policy");
117     }
118 }