JUnit additions and powermock pom fixes
[policy/engine.git] / ONAP-XACML / src / test / java / org / onap / policy / xacml / test / std / pap / StdEngineFactoryTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-XACML
4  * ================================================================================
5  * Copyright (C) 2017-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.xacml.test.std.pap;
21
22 import static org.junit.Assert.assertTrue;
23 import static org.junit.Assert.fail;
24 import java.io.IOException;
25 import java.util.Properties;
26 import org.junit.Test;
27 import org.onap.policy.xacml.std.pap.StdEngineFactory;
28 import com.att.research.xacml.api.pap.PAPException;
29 import com.att.research.xacml.std.pap.StdEngine;
30 import com.att.research.xacml.util.FactoryException;
31
32 public class StdEngineFactoryTest {
33   @Test
34   public void testStdEngineFactory() throws FactoryException, PAPException, IOException {
35     StdEngineFactory stdFactory = new StdEngineFactory();
36     System.setProperty("xacml.pap.pdps", "src/test/resources/pdps");
37     assertTrue(stdFactory.newEngine() != null);
38     Properties properties = new Properties();
39     properties.setProperty("xacml.pap.pdps", "src/test/resources/pdps");
40     assertTrue(stdFactory.newEngine(properties) != null);
41
42     StdEngineFactory stdFactoryNew = new StdEngineFactory();
43     System.setProperty("xacml.pap.pdps", "src/test/resources/pdpstest");
44     assertTrue(stdFactoryNew.newEngine() != null);
45   }
46
47   @Test
48   public void testNegativeCase() throws FactoryException, PAPException {
49     // Setup test data
50     Properties props = new Properties();
51     props.setProperty(StdEngine.PROP_PAP_REPO, "/tmp");
52
53     // Set the system property temporarily
54     String systemKey = StdEngine.PROP_PAP_REPO;
55     String oldProperty = System.getProperty(systemKey);
56     System.setProperty(systemKey, "/tmp");
57
58     // Test factory failure cases
59     try {
60       StdEngineFactory factory = new StdEngineFactory();
61       factory.newEngine();
62       factory.newEngine(props);
63     } catch (Exception ex) {
64       fail("Not expecting any exceptions: " + ex);
65     }
66
67     // Restore the original system property
68     if (oldProperty != null) {
69       System.setProperty(systemKey, oldProperty);
70     } else {
71       System.clearProperty(systemKey);
72     }
73   }
74 }