Add code coverage XacmlPolicyUtils
[policy/xacml-pdp.git] / applications / common / src / test / java / org / onap / policy / pdp / xacml / application / common / XacmlPolicyUtilsTest.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 static org.assertj.core.api.Assertions.assertThat;
26 import static org.assertj.core.api.Assertions.assertThatCode;
27
28 import com.att.research.xacml.api.XACML3;
29 import com.att.research.xacml.util.XACMLPolicyWriter;
30 import java.io.ByteArrayOutputStream;
31 import java.io.File;
32 import java.io.FileInputStream;
33 import java.io.IOException;
34 import java.io.InputStream;
35 import java.io.OutputStream;
36 import java.nio.file.Files;
37 import java.nio.file.Path;
38 import java.nio.file.Paths;
39 import java.util.List;
40 import java.util.Properties;
41 import java.util.stream.Collectors;
42 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AnyOfType;
43 import oasis.names.tc.xacml._3_0.core.schema.wd_17.EffectType;
44 import oasis.names.tc.xacml._3_0.core.schema.wd_17.MatchType;
45 import oasis.names.tc.xacml._3_0.core.schema.wd_17.ObjectFactory;
46 import oasis.names.tc.xacml._3_0.core.schema.wd_17.PolicySetType;
47 import oasis.names.tc.xacml._3_0.core.schema.wd_17.PolicyType;
48 import oasis.names.tc.xacml._3_0.core.schema.wd_17.RuleType;
49 import oasis.names.tc.xacml._3_0.core.schema.wd_17.TargetType;
50
51 import org.junit.BeforeClass;
52 import org.junit.ClassRule;
53 import org.junit.Test;
54 import org.junit.rules.TemporaryFolder;
55 import org.slf4j.Logger;
56 import org.slf4j.LoggerFactory;
57
58 /**
59  * Utility methods for storing policies to disk and updating Properties objects
60  * that reference policies.
61  *
62  * @author pameladragosh
63  *
64  */
65 public class XacmlPolicyUtilsTest {
66     private static final Logger LOGGER = LoggerFactory.getLogger(XacmlPolicyUtilsTest.class);
67
68     static Properties properties;
69
70     static PolicySetType rootPolicy = XacmlPolicyUtils.createEmptyPolicySet("root", XACML3.ID_POLICY_FIRST_APPLICABLE);
71
72     static Path rootPath;
73
74     static PolicyType policy1 = XacmlPolicyUtils.createEmptyPolicy("policy1", XACML3.ID_RULE_DENY_UNLESS_PERMIT);
75     static PolicyType policy2 = XacmlPolicyUtils.createEmptyPolicy("policy2", XACML3.ID_RULE_DENY_UNLESS_PERMIT);
76     static PolicyType policy3 = XacmlPolicyUtils.createEmptyPolicy("policy3", XACML3.ID_RULE_DENY_UNLESS_PERMIT);
77     static PolicyType policy4 = XacmlPolicyUtils.createEmptyPolicy("policy4", XACML3.ID_RULE_DENY_UNLESS_PERMIT);
78
79     static PolicySetType policySet5 = XacmlPolicyUtils.createEmptyPolicySet(
80             "policyset1", XACML3.ID_POLICY_FIRST_APPLICABLE);
81
82     static Path path1;
83     static Path path2;
84     static Path path3;
85     static Path path4;
86
87     static Path policySetPath;
88
89     /**
90      * Temporary folder where we will store newly created policies.
91      */
92     @ClassRule
93     public static TemporaryFolder policyFolder = new TemporaryFolder();
94
95     /**
96      * Setup the JUnit tests by finishing creating the policies and
97      * writing them out to the temporary folder.
98      *
99      * @throws Exception thrown
100      */
101     @BeforeClass
102     public static void setUp() throws Exception {
103         assertThatCode(() -> {
104             //
105             // Load our test property object
106             //
107             try (InputStream is = new FileInputStream("src/test/resources/test.properties")) {
108                 properties = new Properties();
109                 properties.load(is);
110             }
111             //
112             // Change "/" to file separator in file names
113             //
114             if (!"/".equals(File.separator)) {
115                 List<String> fileProps = properties.keySet().stream().map(Object::toString)
116                                 .filter(key -> key.endsWith(".file")).collect(Collectors.toList());
117                 for (String fileProp : fileProps) {
118                     properties.setProperty(fileProp, properties.getProperty(fileProp).replace("/", File.separator));
119                 }
120             }
121             //
122             // Save root policy
123             //
124             File rootFile = policyFolder.newFile("root.xml");
125             LOGGER.info("Creating Root Policy {}", rootFile.getAbsolutePath());
126             rootPath = XACMLPolicyWriter.writePolicyFile(rootFile.toPath(), rootPolicy);
127             //
128             // Create policies - Policies 1 and 2 will become references in the
129             // root policy. While Policies 3 and 4 will become references in the
130             // soon to be created PolicySet 5 below.
131             //
132             path1 = createPolicyContents(policy1, "resource1");
133             LOGGER.info(new String(Files.readAllBytes(path1)));
134             path2 = createPolicyContents(policy2, "resource2");
135             LOGGER.info(new String(Files.readAllBytes(path2)));
136             path3 = createPolicyContents(policy3, "resourc31");
137             LOGGER.info(new String(Files.readAllBytes(path3)));
138             path4 = createPolicyContents(policy4, "resource4");
139             LOGGER.info(new String(Files.readAllBytes(path4)));
140             //
141             // Create our PolicySet
142             //
143             policySet5.setPolicySetId("policyset5");
144             policySet5.setTarget(new TargetType());
145             policySet5.setPolicyCombiningAlgId(XACML3.ID_POLICY_FIRST_APPLICABLE.stringValue());
146             ObjectFactory factory = new ObjectFactory();
147             //
148             // Add Policies 3 and 4 to the PolicySet
149             //
150             policySet5.getPolicySetOrPolicyOrPolicySetIdReference().add(factory.createPolicy(policy1));
151             policySet5.getPolicySetOrPolicyOrPolicySetIdReference().add(factory.createPolicy(policy2));
152             assertThat(policySet5.getPolicySetOrPolicyOrPolicySetIdReference()).hasSize(2);
153             //
154             // Save that to disk
155             //
156             File policySetFile = policyFolder.newFile("policySet5.xml");
157             LOGGER.info("Creating PolicySet {}", policySetFile.getAbsolutePath());
158             policySetPath = XACMLPolicyWriter.writePolicyFile(policySetFile.toPath(), policySet5);
159
160         }).doesNotThrowAnyException();
161     }
162
163     /**
164      * Helper method that creates a very simple Policy and Rule and saves it to disk.
165      *
166      * @param policy Policy to store contents in
167      * @param resource A simple resource id for the Target
168      * @return Path object of the policy
169      * @throws IOException If unable to write to disk
170      */
171     private static Path createPolicyContents(PolicyType policy, String resource) throws IOException {
172         //
173         // Create The Match
174         //
175         MatchType matchPolicyId = ToscaPolicyTranslatorUtils.buildMatchTypeDesignator(
176                 XACML3.ID_FUNCTION_STRING_EQUAL,
177                 resource,
178                 XACML3.ID_DATATYPE_STRING,
179                 XACML3.ID_RESOURCE_RESOURCE_ID,
180                 XACML3.ID_ATTRIBUTE_CATEGORY_RESOURCE);
181         //
182         // This is our outer AnyOf - which is an OR
183         //
184         AnyOfType anyOf = new AnyOfType();
185         //
186         // Create AllOf (AND) of just Policy Id
187         //
188         anyOf.getAllOf().add(ToscaPolicyTranslatorUtils.buildAllOf(matchPolicyId));
189         TargetType target = new TargetType();
190         target.getAnyOf().add(anyOf);
191         policy.setTarget(target);
192         RuleType rule = new RuleType();
193         rule.setRuleId(policy.getPolicyId() + ":rule");
194         rule.setEffect(EffectType.PERMIT);
195         rule.setTarget(new TargetType());
196         //
197         // Add the rule to the policy
198         //
199         policy.getCombinerParametersOrRuleCombinerParametersOrVariableDefinition().add(rule);
200         //
201         // Save it to disk
202         //
203         File file = policyFolder.newFile(policy.getPolicyId() + ".xml");
204         LOGGER.info("Creating Policy {}", file.getAbsolutePath());
205         return XACMLPolicyWriter.writePolicyFile(file.toPath(), policy);
206     }
207
208     @Test
209     public void testUpdatingPolicies() {
210         assertThatCode(() -> {
211             //
212             // Just update root and policies
213             //
214             XacmlPolicyUtils.addPoliciesToXacmlRootPolicy(rootPolicy, policy1, policy2);
215             //
216             // Make sure it is correct
217             //
218             assertThat(rootPolicy.getPolicySetOrPolicyOrPolicySetIdReference()).hasSize(2);
219             //
220             // Save to disk
221             //
222             try (OutputStream os = new ByteArrayOutputStream()) {
223                 XACMLPolicyWriter.writePolicyFile(os, rootPolicy);
224                 LOGGER.debug("New Root Policy:{}{}", XacmlPolicyUtils.LINE_SEPARATOR, os);
225             }
226             //
227             // Just update root and PolicySet
228             //
229             XacmlPolicyUtils.addPolicySetsToXacmlRootPolicy(rootPolicy, policySet5);
230             try (OutputStream os = new ByteArrayOutputStream()) {
231                 XACMLPolicyWriter.writePolicyFile(os, rootPolicy);
232                 LOGGER.debug("New Root Policy:{}{}", XacmlPolicyUtils.LINE_SEPARATOR, os);
233             }
234         }).doesNotThrowAnyException();
235     }
236
237     @Test
238     public void testRemovingReferencedProperties() {
239         //
240         // Dump what we are starting with
241         //
242         XacmlPolicyUtils.debugDumpPolicyProperties(properties, LOGGER);
243         //
244         // Remove referenced policies
245         //
246         Path ref = Paths.get("src/test/resources/ref1.xml");
247         XacmlPolicyUtils.removeReferencedPolicy(properties, ref);
248         XacmlPolicyUtils.debugDumpPolicyProperties(properties, LOGGER);
249         assertThat(properties.getProperty("refstart1.file")).isNullOrEmpty();
250
251         ref = Paths.get("src/test/resources/ref2.xml");
252         XacmlPolicyUtils.removeReferencedPolicy(properties, ref);
253         XacmlPolicyUtils.debugDumpPolicyProperties(properties, LOGGER);
254         assertThat(properties.getProperty("refstart2.file")).isNullOrEmpty();
255
256         //
257         // Test one that isn't in there
258         //
259         ref = Paths.get("src/test/resources/NotThere.xml");
260         XacmlPolicyUtils.removeReferencedPolicy(properties, ref);
261         XacmlPolicyUtils.debugDumpPolicyProperties(properties, LOGGER);
262         assertThat(properties.getProperty("refstart3.file")).isNotBlank();
263
264         ref = Paths.get("src/test/resources/ref3.xml");
265         XacmlPolicyUtils.removeReferencedPolicy(properties, ref);
266         XacmlPolicyUtils.debugDumpPolicyProperties(properties, LOGGER);
267         assertThat(properties.getProperty("refstart3.file")).isNullOrEmpty();
268
269         ref = Paths.get("src/test/resources/ref4.xml");
270         XacmlPolicyUtils.removeReferencedPolicy(properties, ref);
271         XacmlPolicyUtils.debugDumpPolicyProperties(properties, LOGGER);
272         assertThat(properties.getProperty("refstart4.file")).isNullOrEmpty();
273     }
274
275     @Test
276     public void testRemovingRootProperties() {
277         //
278         // Dump what we are starting with
279         //
280         XacmlPolicyUtils.debugDumpPolicyProperties(properties, LOGGER);
281         //
282         // Remove root policies
283         //
284         Path ref = Paths.get("src/test/resources/root.xml");
285         XacmlPolicyUtils.removeRootPolicy(properties, ref);
286         XacmlPolicyUtils.debugDumpPolicyProperties(properties, LOGGER);
287         assertThat(properties.getProperty("root.file")).isNullOrEmpty();
288
289         //
290         // Test one that isn't in there
291         //
292         ref = Paths.get("src/test/resources/NotThere.xml");
293         XacmlPolicyUtils.removeRootPolicy(properties, ref);
294         XacmlPolicyUtils.debugDumpPolicyProperties(properties, LOGGER);
295         assertThat(properties.getProperty("refstart3.file")).isNotBlank();
296     }
297
298     @Test
299     public void testCopyingProperties() throws Exception {
300         //
301         // Copy to this folder
302         //
303         File copyFolder = policyFolder.newFolder("copy");
304         assertThat(copyFolder.exists()).isTrue();
305         //
306         // Mock up a properties object
307         //
308         Properties mockProperties = new Properties();
309         XacmlPolicyUtils.addRootPolicy(mockProperties, rootPath);
310         XacmlPolicyUtils.addReferencedPolicy(mockProperties, path1);
311         //
312         // Write the properties out to a file
313         //
314         Path fileProperties = XacmlPolicyUtils.getPropertiesPath(policyFolder.getRoot().toPath());
315         XacmlPolicyUtils.storeXacmlProperties(mockProperties, fileProperties);
316         //
317         // Now we can test the copy method
318         //
319         XacmlPolicyUtils.FileCreator myCreator = (String filename) -> policyFolder.newFile("copy/" + filename);
320         File propertiesFile = XacmlPolicyUtils.copyXacmlPropertiesContents(
321                 fileProperties.toAbsolutePath().toString(), mockProperties, myCreator);
322
323         assertThat(propertiesFile.canRead()).isTrue();
324         assertThat(Path.of(copyFolder.getAbsolutePath(),
325                 rootPath.getFileName().toString()).toFile().canRead()).isTrue();
326         assertThat(Path.of(copyFolder.getAbsolutePath(),
327                 path1.getFileName().toString()).toFile().canRead()).isTrue();
328     }
329 }