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