Integrate using Policy Type to find Matchable
[policy/xacml-pdp.git] / applications / common / src / main / java / org / onap / policy / pdp / xacml / application / common / TestUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.pdp.xacml.application.common;
24
25 import java.util.ArrayList;
26 import java.util.List;
27 import java.util.Map;
28
29 import org.onap.policy.common.utils.coder.CoderException;
30 import org.onap.policy.common.utils.coder.StandardCoder;
31 import org.onap.policy.common.utils.resources.ResourceUtils;
32 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
33 import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate;
34 import org.onap.policy.models.tosca.simple.concepts.JpaToscaServiceTemplate;
35 import org.slf4j.Logger;
36 import org.slf4j.LoggerFactory;
37 import org.yaml.snakeyaml.Yaml;
38
39 public class TestUtils {
40     private static final Logger LOGGER = LoggerFactory.getLogger(TestUtils.class);
41     private static final StandardCoder standardCoder = new StandardCoder();
42
43     private TestUtils() {
44         super();
45     }
46
47     /**
48      * Load the policies from a resource file into the given the application.
49      *
50      * @param resourceFile resource file
51      * @param service XacmlApplicationServiceProvider
52      * @throws CoderException exception if it cannot be decoded
53      * @throws XacmlApplicationException If the application cannot load the policy
54      */
55     public static List<ToscaPolicy> loadPolicies(String resourceFile, XacmlApplicationServiceProvider service)
56             throws CoderException, XacmlApplicationException {
57         //
58         // Our return object
59         //
60         List<ToscaPolicy> loadedPolicies = new ArrayList<>();
61         //
62         // Decode it
63         //
64         String policyYaml = ResourceUtils.getResourceAsString(resourceFile);
65         Yaml yaml = new Yaml();
66         Object yamlObject = yaml.load(policyYaml);
67         String yamlAsJsonString = standardCoder.encode(yamlObject);
68         //
69         // Serialize it into a class
70         //
71         ToscaServiceTemplate serviceTemplate = standardCoder.decode(yamlAsJsonString, ToscaServiceTemplate.class);
72         //
73         // Make sure all the fields are setup properly
74         //
75         JpaToscaServiceTemplate jtst = new JpaToscaServiceTemplate();
76         jtst.fromAuthorative(serviceTemplate);
77         ToscaServiceTemplate completedJtst = jtst.toAuthorative();
78         //
79         // Get the policies
80         //
81         for (Map<String, ToscaPolicy> policies : completedJtst.getToscaTopologyTemplate().getPolicies()) {
82             for (ToscaPolicy policy : policies.values()) {
83                 if (service.loadPolicy(policy)) {
84                     loadedPolicies.add(policy);
85                 } else {
86                     LOGGER.error("Application failed to load policy");
87                 }
88             }
89         }
90         return loadedPolicies;
91     }
92
93 }