Removed TestUtils from common and into a 'xacml-test' project
[policy/xacml-pdp.git] / xacml-test / src / main / java / org / onap / policy / pdp / xacml / xacmltest / 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.xacmltest;
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.StandardYamlCoder;
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.onap.policy.pdp.xacml.application.common.XacmlApplicationException;
36 import org.onap.policy.pdp.xacml.application.common.XacmlApplicationServiceProvider;
37 import org.slf4j.Logger;
38 import org.slf4j.LoggerFactory;
39
40 public class TestUtils {
41     private static final Logger LOGGER = LoggerFactory.getLogger(TestUtils.class);
42     private static final StandardYamlCoder yamlCoder = new StandardYamlCoder();
43
44     private TestUtils() {
45         super();
46     }
47
48     /**
49      * Load the policies from a resource file into the given the application.
50      *
51      * @param resourceFile resource file
52      * @param service XacmlApplicationServiceProvider
53      * @throws CoderException exception if it cannot be decoded
54      * @throws XacmlApplicationException If the application cannot load the policy
55      */
56     public static List<ToscaPolicy> loadPolicies(String resourceFile, XacmlApplicationServiceProvider service)
57             throws CoderException, XacmlApplicationException {
58         //
59         // Our return object
60         //
61         List<ToscaPolicy> loadedPolicies = new ArrayList<>();
62         //
63         // Decode it
64         //
65         String policyYaml = ResourceUtils.getResourceAsString(resourceFile);
66         //
67         // Serialize it into a class
68         //
69         ToscaServiceTemplate serviceTemplate = yamlCoder.decode(policyYaml, ToscaServiceTemplate.class);
70         //
71         // Make sure all the fields are setup properly
72         //
73         JpaToscaServiceTemplate jtst = new JpaToscaServiceTemplate();
74         jtst.fromAuthorative(serviceTemplate);
75         ToscaServiceTemplate completedJtst = jtst.toAuthorative();
76         //
77         // Get the policies
78         //
79         for (Map<String, ToscaPolicy> policies : completedJtst.getToscaTopologyTemplate().getPolicies()) {
80             for (ToscaPolicy policy : policies.values()) {
81                 if (service.loadPolicy(policy)) {
82                     loadedPolicies.add(policy);
83                 } else {
84                     LOGGER.error("Application failed to load policy");
85                 }
86             }
87         }
88         return loadedPolicies;
89     }
90
91 }