Add unit tests for policy type and policy filters
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / legacy / serialization / LegacyOperationalPolicySerializationTest.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.serialization;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25 import static org.junit.Assert.assertTrue;
26
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.onap.policy.common.utils.coder.StandardCoder;
30 import org.onap.policy.common.utils.resources.ResourceUtils;
31 import org.onap.policy.models.base.PfValidationResult;
32 import org.onap.policy.models.tosca.legacy.concepts.LegacyOperationalPolicy;
33 import org.onap.policy.models.tosca.legacy.mapping.LegacyOperationalPolicyMapper;
34 import org.onap.policy.models.tosca.simple.concepts.JpaToscaServiceTemplate;
35 import org.slf4j.Logger;
36 import org.slf4j.LoggerFactory;
37
38 /**
39  * Test serialization of monitoring policies.
40  *
41  * @author Liam Fallon (liam.fallon@est.tech)
42  */
43 public class LegacyOperationalPolicySerializationTest {
44     // Logger for this class
45     private static final Logger LOGGER = LoggerFactory.getLogger(LegacyOperationalPolicySerializationTest.class);
46
47     private StandardCoder standardCoder;
48
49     @Before
50     public void setUp() {
51         standardCoder = new StandardCoder();
52     }
53
54     @Test
55     public void testJsonDeserialization() throws Exception {
56         String vcpePolicyJson = ResourceUtils.getResourceAsString("policies/vCPE.policy.operational.input.json");
57
58         LegacyOperationalPolicy legacyOperationalPolicy =
59                 standardCoder.decode(vcpePolicyJson, LegacyOperationalPolicy.class);
60
61         JpaToscaServiceTemplate serviceTemplate =
62                 new LegacyOperationalPolicyMapper().toToscaServiceTemplate(legacyOperationalPolicy);
63
64         assertNotNull(serviceTemplate);
65         LOGGER.info(serviceTemplate.validate(new PfValidationResult()).toString());
66         assertTrue(serviceTemplate.validate(new PfValidationResult()).isValid());
67
68         assertEquals("operational.restart:1.0.0",
69                 serviceTemplate.getTopologyTemplate().getPolicies().get("operational.restart").getId());
70     }
71 }