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