Update XACML Tutorial
[policy/parent.git] / docs / xacml / tutorial / app / src / test / java / org / onap / policy / tutorial / tutorial / TutorialApplicationTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
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  * ============LICENSE_END=========================================================
17  */
18
19 package org.onap.policy.tutorial.tutorial;
20
21 import static org.junit.Assert.assertEquals;
22
23 import java.io.File;
24 import java.io.IOException;
25 import java.util.Iterator;
26 import java.util.Properties;
27 import java.util.ServiceLoader;
28
29 import org.apache.commons.lang3.tuple.Pair;
30 import org.junit.BeforeClass;
31 import org.junit.ClassRule;
32 import org.junit.Test;
33 import org.junit.rules.TemporaryFolder;
34 import org.onap.policy.common.endpoints.parameters.RestServerParameters;
35 import org.onap.policy.common.utils.coder.CoderException;
36 import org.onap.policy.common.utils.coder.StandardCoder;
37 import org.onap.policy.common.utils.resources.TextFileUtils;
38 import org.onap.policy.models.decisions.concepts.DecisionRequest;
39 import org.onap.policy.models.decisions.concepts.DecisionResponse;
40 import org.onap.policy.pdp.xacml.application.common.XacmlApplicationException;
41 import org.onap.policy.pdp.xacml.application.common.XacmlApplicationServiceProvider;
42 import org.onap.policy.pdp.xacml.application.common.XacmlPolicyUtils;
43 import org.onap.policy.pdp.xacml.xacmltest.TestUtils;
44 import org.slf4j.Logger;
45 import org.slf4j.LoggerFactory;
46
47 import com.att.research.xacml.api.Response;
48
49 public class TutorialApplicationTest {
50         private static final Logger LOGGER = LoggerFactory.getLogger(TutorialApplicationTest.class);
51     private static Properties properties = new Properties();
52     private static File propertiesFile;
53     private static XacmlApplicationServiceProvider service;
54     private static StandardCoder gson = new StandardCoder();
55
56     @ClassRule
57     public static final TemporaryFolder policyFolder = new TemporaryFolder();
58
59     @BeforeClass
60     public static void setup() throws Exception {
61         //
62         // Setup our temporary folder
63         //
64         XacmlPolicyUtils.FileCreator myCreator = (String filename) -> policyFolder.newFile(filename);
65         propertiesFile = XacmlPolicyUtils.copyXacmlPropertiesContents("src/test/resources/xacml.properties",
66                 properties, myCreator);
67         //
68         // Load XacmlApplicationServiceProvider service
69         //
70         ServiceLoader<XacmlApplicationServiceProvider> applicationLoader =
71                 ServiceLoader.load(XacmlApplicationServiceProvider.class);
72         //
73         // Look for our class instance and save it
74         //
75         Iterator<XacmlApplicationServiceProvider> iterator = applicationLoader.iterator();
76         while (iterator.hasNext()) {
77             XacmlApplicationServiceProvider application = iterator.next();
78             //
79             // Is it our service?
80             //
81             if (application instanceof TutorialApplication) {
82                 service = application;
83             }
84         }
85         //
86         // Tell the application to initialize based on the properties file
87         // we just built for it.
88         //
89         service.initialize(propertiesFile.toPath().getParent(), new RestServerParameters());
90     }
91
92     @Test
93     public void test() throws CoderException, XacmlApplicationException, IOException {
94         //
95         // Now load the tutorial policies.
96         //
97         TestUtils.loadPolicies("src/test/resources/tutorial-policies.yaml", service);
98         //
99         // Load a Decision request
100         //
101         DecisionRequest decisionRequest = gson.decode(
102                 TextFileUtils
103                 .getTextFileAsString("src/test/resources/tutorial-decision-request.json"),
104                 DecisionRequest.class);
105         //
106         // Test a decision - should start with a permit
107         //
108         Pair<DecisionResponse, Response> decision = service.makeDecision(decisionRequest, null);
109         LOGGER.info(decision.getLeft().toString());
110         assertEquals("Permit", decision.getLeft().getStatus());
111         //
112         // This should be a deny
113         //
114         decisionRequest.getResource().put("user", "audit");
115         decision = service.makeDecision(decisionRequest, null);
116         LOGGER.info(decision.getLeft().toString());
117         assertEquals("Deny", decision.getLeft().getStatus());
118     }
119
120 }