2  * ============LICENSE_START=======================================================
 
   3  * Copyright (C) 2019 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
 
   9  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  17  * SPDX-License-Identifier: Apache-2.0
 
  18  * ============LICENSE_END=========================================================
 
  21 package org.onap.policy.pdp.xacml.application.common.std;
 
  23 import static org.assertj.core.api.Assertions.assertThatThrownBy;
 
  24 import static org.junit.Assert.assertEquals;
 
  25 import static org.junit.Assert.assertFalse;
 
  26 import static org.junit.Assert.assertNotNull;
 
  27 import static org.junit.Assert.assertNull;
 
  28 import static org.junit.Assert.assertSame;
 
  29 import static org.junit.Assert.assertTrue;
 
  30 import static org.mockito.Matchers.any;
 
  31 import static org.mockito.Mockito.mock;
 
  32 import static org.mockito.Mockito.times;
 
  33 import static org.mockito.Mockito.verify;
 
  34 import static org.mockito.Mockito.when;
 
  36 import com.att.research.xacml.api.Request;
 
  37 import com.att.research.xacml.api.Response;
 
  38 import com.att.research.xacml.api.pdp.PDPEngine;
 
  39 import com.att.research.xacml.api.pdp.PDPEngineFactory;
 
  40 import com.att.research.xacml.api.pdp.PDPException;
 
  41 import com.att.research.xacml.util.FactoryException;
 
  42 import com.att.research.xacml.util.XACMLProperties;
 
  43 import com.google.common.io.Files;
 
  45 import java.nio.file.Path;
 
  46 import java.util.HashSet;
 
  47 import java.util.Properties;
 
  49 import oasis.names.tc.xacml._3_0.core.schema.wd_17.PolicyType;
 
  50 import org.apache.commons.lang3.tuple.Pair;
 
  51 import org.junit.AfterClass;
 
  52 import org.junit.Before;
 
  53 import org.junit.BeforeClass;
 
  54 import org.junit.Test;
 
  55 import org.mockito.Mock;
 
  56 import org.mockito.MockitoAnnotations;
 
  57 import org.onap.policy.common.endpoints.parameters.RestServerParameters;
 
  58 import org.onap.policy.models.decisions.concepts.DecisionRequest;
 
  59 import org.onap.policy.models.decisions.concepts.DecisionResponse;
 
  60 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
 
  61 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyConversionException;
 
  62 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyTranslator;
 
  63 import org.onap.policy.pdp.xacml.application.common.XacmlApplicationException;
 
  64 import org.onap.policy.pdp.xacml.application.common.XacmlPolicyUtils;
 
  65 import org.slf4j.Logger;
 
  66 import org.slf4j.LoggerFactory;
 
  68 public class StdXacmlApplicationServiceProviderTest {
 
  69     private static final Logger logger = LoggerFactory.getLogger(StdXacmlApplicationServiceProviderTest.class);
 
  71     private static final String TEMP_DIR_NAME = "src/test/resources/temp";
 
  72     private static File TEMP_DIR = new File(TEMP_DIR_NAME);
 
  73     private static Path TEMP_PATH = TEMP_DIR.toPath();
 
  74     private static File SOURCE_PROP_FILE = new File("src/test/resources/test.properties");
 
  75     private static File PROP_FILE = new File(TEMP_DIR, XacmlPolicyUtils.XACML_PROPERTY_FILE);
 
  76     private static final String EXPECTED_EXCEPTION = "expected exception";
 
  77     private static final String POLICY_NAME = "my-name";
 
  78     private static final String POLICY_VERSION = "1.2.3";
 
  79     private static final String POLICY_TYPE = "my-type";
 
  80     private static final RestServerParameters apiRestParameters = new RestServerParameters();
 
  83     private ToscaPolicyTranslator trans;
 
  86     private PDPEngineFactory engineFactory;
 
  89     private PDPEngine engine;
 
  95     private Response resp;
 
  97     private ToscaPolicy policy;
 
  98     private PolicyType internalPolicy;
 
 100     private StdXacmlApplicationServiceProvider prov;
 
 103      * Creates the temp directory.
 
 106     public static void setUpBeforeClass() {
 
 107         assertTrue(TEMP_DIR.mkdir());
 
 111      * Deletes the temp directory and its contents.
 
 114     public static void tearDownAfterClass() {
 
 115         for (File file : TEMP_DIR.listFiles()) {
 
 116             if (!file.delete()) {
 
 117                 logger.warn("cannot delete: {}", file);
 
 121         if (!TEMP_DIR.delete()) {
 
 122             logger.warn("cannot delete: {}", TEMP_DIR);
 
 127      * Initializes objects, including the provider.
 
 129      * @throws Exception if an error occurs
 
 132     public void setUp() throws Exception {
 
 133         MockitoAnnotations.initMocks(this);
 
 135         policy = new ToscaPolicy();
 
 136         policy.setType(POLICY_TYPE);
 
 137         policy.setName(POLICY_NAME);
 
 138         policy.setVersion(POLICY_VERSION);
 
 140         internalPolicy = new PolicyType();
 
 141         internalPolicy.setPolicyId(POLICY_NAME);
 
 142         internalPolicy.setVersion(POLICY_VERSION);
 
 144         when(engineFactory.newEngine(any())).thenReturn(engine);
 
 146         when(engine.decide(req)).thenReturn(resp);
 
 148         when(trans.convertPolicy(policy)).thenReturn(internalPolicy);
 
 152         Files.copy(SOURCE_PROP_FILE, PROP_FILE);
 
 156     public void testApplicationName() {
 
 157         assertNotNull(prov.applicationName());
 
 161     public void testActionDecisionsSupported() {
 
 162         assertTrue(prov.actionDecisionsSupported().isEmpty());
 
 166     public void testInitialize_testGetXxx() throws XacmlApplicationException {
 
 167         prov.initialize(TEMP_PATH, apiRestParameters);
 
 169         assertEquals(TEMP_PATH, prov.getDataPath());
 
 170         assertNotNull(prov.getEngine());
 
 172         Properties props = prov.getProperties();
 
 173         assertEquals("rootstart", props.getProperty("xacml.rootPolicies"));
 
 177     public void testInitialize_Ex() throws XacmlApplicationException {
 
 178         assertThatThrownBy(() -> prov.initialize(new File(TEMP_DIR_NAME + "-nonExistent").toPath(), apiRestParameters))
 
 179                         .isInstanceOf(XacmlApplicationException.class).hasMessage("Failed to load xacml.properties");
 
 183     public void testSupportedPolicyTypes() {
 
 184         assertThatThrownBy(() -> prov.supportedPolicyTypes()).isInstanceOf(UnsupportedOperationException.class);
 
 188     public void testCanSupportPolicyType() {
 
 189         assertThatThrownBy(() -> prov.canSupportPolicyType(null)).isInstanceOf(UnsupportedOperationException.class);
 
 193     public void testLoadPolicy_ConversionError() throws XacmlApplicationException, ToscaPolicyConversionException {
 
 194         when(trans.convertPolicy(policy)).thenReturn(null);
 
 196         assertThatThrownBy(() -> prov.loadPolicy(policy)).isInstanceOf(XacmlApplicationException.class);
 
 200     public void testLoadPolicy_testUnloadPolicy() throws Exception {
 
 201         prov.initialize(TEMP_PATH, apiRestParameters);
 
 204         final Set<String> set = XACMLProperties.getRootPolicyIDs(prov.getProperties());
 
 207         prov.loadPolicy(policy);
 
 209         // policy file should have been created
 
 210         File policyFile = new File(TEMP_DIR, "my-name_1.2.3.xml");
 
 211         assertTrue(policyFile.exists());
 
 213         // new property file should have been created
 
 214         assertTrue(PROP_FILE.exists());
 
 216         // should have re-created the engine
 
 217         verify(engineFactory, times(2)).newEngine(any());
 
 219         final Set<String> set2 = XACMLProperties.getRootPolicyIDs(prov.getProperties());
 
 220         assertEquals(set.size() + 1, set2.size());
 
 222         Set<String> set3 = new HashSet<>(set2);
 
 224         assertEquals("[root1]", set3.toString());
 
 228          * Prepare for unload.
 
 232         assertTrue(prov.unloadPolicy(policy));
 
 234         // policy file should have been removed
 
 235         assertFalse(policyFile.exists());
 
 237         // new property file should have been created
 
 238         assertTrue(PROP_FILE.exists());
 
 240         // should have re-created the engine
 
 241         verify(engineFactory, times(3)).newEngine(any());
 
 243         set3 = XACMLProperties.getRootPolicyIDs(prov.getProperties());
 
 244         assertEquals(set.toString(), set3.toString());
 
 248     public void testUnloadPolicy_NotDeployed() throws Exception {
 
 249         prov.initialize(TEMP_PATH, apiRestParameters);
 
 251         assertFalse(prov.unloadPolicy(policy));
 
 253         // no additional calls
 
 254         verify(engineFactory, times(1)).newEngine(any());
 
 258     public void testMakeDecision() {
 
 259         prov.createEngine(null);
 
 261         DecisionRequest decreq = mock(DecisionRequest.class);
 
 262         when(trans.convertRequest(decreq)).thenReturn(req);
 
 264         DecisionResponse decresp = mock(DecisionResponse.class);
 
 265         when(trans.convertResponse(resp)).thenReturn(decresp);
 
 267         Pair<DecisionResponse, Response> result = prov.makeDecision(decreq, any());
 
 268         assertSame(decresp, result.getKey());
 
 269         assertSame(resp, result.getValue());
 
 271         verify(trans).convertRequest(decreq);
 
 272         verify(trans).convertResponse(resp);
 
 276     public void testGetTranslator() {
 
 277         assertSame(trans, prov.getTranslator());
 
 281     public void testCreateEngine() throws FactoryException {
 
 283         prov.createEngine(null);
 
 284         assertSame(engine, prov.getEngine());
 
 286         // null - should be unchanged
 
 287         when(engineFactory.newEngine(any())).thenReturn(null);
 
 288         prov.createEngine(null);
 
 289         assertSame(engine, prov.getEngine());
 
 291         // exception - should be unchanged
 
 292         when(engineFactory.newEngine(any())).thenThrow(new FactoryException(EXPECTED_EXCEPTION));
 
 293         prov.createEngine(null);
 
 294         assertSame(engine, prov.getEngine());
 
 298     public void testXacmlDecision() throws PDPException {
 
 299         prov.createEngine(null);
 
 302         assertSame(resp, prov.xacmlDecision(req));
 
 305         when(engine.decide(req)).thenThrow(new PDPException(EXPECTED_EXCEPTION));
 
 306         assertNull(prov.xacmlDecision(req));
 
 310     public void testGetPdpEngineFactory() throws XacmlApplicationException {
 
 311         // use the real engine factory
 
 312         engineFactory = null;
 
 315         prov.initialize(TEMP_PATH, apiRestParameters);
 
 317         assertNotNull(prov.getEngine());
 
 320     private class MyProv extends StdXacmlApplicationServiceProvider {
 
 323         protected ToscaPolicyTranslator getTranslator(String type) {
 
 328         protected PDPEngineFactory getPdpEngineFactory() throws FactoryException {
 
 329             return (engineFactory != null ? engineFactory : super.getPdpEngineFactory());