Merge "Address missing files in junit tests"
[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
25 import java.io.IOException;
26 import java.util.Properties;
27
28 import org.junit.Test;
29 import org.onap.policy.xacml.std.pap.StdEngineFactory;
30
31 import com.att.research.xacml.api.pap.PAPException;
32 import com.att.research.xacml.std.pap.StdEngine;
33 import com.att.research.xacml.util.FactoryException;
34
35 public class StdEngineFactoryTest {
36   @Test
37   public void testStdEngineFactory() throws FactoryException, PAPException, IOException {
38     StdEngineFactory stdFactory = new StdEngineFactory();
39     System.setProperty("xacml.pap.pdps", "src/test/resources/pdps");
40     assertTrue(stdFactory.newEngine() != null);
41     Properties properties = new Properties();
42     properties.setProperty("xacml.pap.pdps", "src/test/resources/pdps");
43     assertTrue(stdFactory.newEngine(properties) != null);
44
45     StdEngineFactory stdFactoryNew = new StdEngineFactory();
46     System.setProperty("xacml.pap.pdps", "src/test/resources/pdpstest");
47     assertTrue(stdFactoryNew.newEngine() != null);
48   }
49
50   @Test
51   public void testNegativeCase() throws Exception {
52     // Setup test data
53     Properties props = new Properties();
54     String tmpdir = System.getProperty("java.io.tmpdir");
55     props.setProperty(StdEngine.PROP_PAP_REPO, tmpdir);
56
57     // Set the system property temporarily
58     String systemKey = StdEngine.PROP_PAP_REPO;
59     String oldProperty = System.getProperty(systemKey);
60     System.setProperty(systemKey, tmpdir);
61
62     // Test factory failure cases
63     try {
64       StdEngineFactory factory = new StdEngineFactory();
65       factory.newEngine();
66       factory.newEngine(props);
67     } catch (Exception ex) {
68       fail("Not expecting any exceptions: " + ex);
69     }
70
71     // Restore the original system property
72     if (oldProperty != null) {
73       System.setProperty(systemKey, oldProperty);
74     } else {
75       System.clearProperty(systemKey);
76     }
77   }
78 }