b9e9403d439f20fff0d391f7b6ff461537434103
[policy/engine.git] / ONAP-PDP-REST / src / test / java / org / onap / policy / pdp / rest / api / services / BRMSRawPolicyServiceTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
4  * ================================================================================
5  * Copyright (C) 2018 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  * ============LICENSE_END=========================================================
19  */
20 package org.onap.policy.pdp.rest.api.services;
21
22 import static org.junit.Assert.assertEquals;
23 import java.io.FileInputStream;
24 import java.io.FileNotFoundException;
25 import java.io.IOException;
26 import java.util.Arrays;
27 import java.util.List;
28 import java.util.Properties;
29 import org.junit.Test;
30 import org.onap.policy.api.PolicyParameters;
31
32 public class BRMSRawPolicyServiceTest {
33   @Test
34   public void testRaw() throws FileNotFoundException, IOException {
35     Properties prop = new Properties();
36     prop.load(new FileInputStream("src/test/resources/pass.xacml.pdp.properties"));
37     String succeeded = prop.getProperty("xacml.rest.pap.url");
38     List<String> paps = Arrays.asList(succeeded.split(","));
39     PAPServices.setPaps(paps);
40     PAPServices.setJunit(true);
41     prop.clear();
42
43     String systemKey = "xacml.properties";
44     String testVal = "testVal";
45     PolicyParameters testParams = new PolicyParameters();
46
47     // Set the system property temporarily
48     String oldProperty = System.getProperty(systemKey);
49     System.setProperty(systemKey, "xacml.pdp.properties");
50
51     BRMSRawPolicyService service = new BRMSRawPolicyService(testVal, testVal, testParams, testVal);
52     assertEquals(false, service.getValidation());
53     assertEquals("PE300 - Data Issue:  No Rule Body given", service.getMessage());
54
55     // Restore the original system property
56     if (oldProperty != null) {
57       System.setProperty(systemKey, oldProperty);
58     } else {
59       System.clearProperty(systemKey);
60     }
61   }
62 }