Reformat ONAP-PDP-REST test cases
[policy/engine.git] / ONAP-PDP-REST / src / test / java / org / onap / policy / pdp / rest / impl / test / XACMLPdpPolicyFinderFactoryTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PDP-REST
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (C) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.pdp.rest.impl.test;
24
25 import static org.junit.Assert.assertTrue;
26 import static org.junit.Assert.fail;
27 import java.io.FileInputStream;
28 import java.io.IOException;
29 import java.util.Properties;
30 import org.apache.commons.logging.Log;
31 import org.apache.commons.logging.LogFactory;
32 import org.junit.Test;
33 import org.onap.policy.pdp.rest.impl.XACMLPdpPolicyFinderFactory;
34 import com.att.research.xacml.util.XACMLProperties;
35
36 public class XACMLPdpPolicyFinderFactoryTest {
37     private static Log LOGGER = LogFactory.getLog(XACMLPdpPolicyFinderFactoryTest.class);
38
39     @Test
40     public void testDefaultConstructor() throws IOException {
41
42         LOGGER.info("XACMLPdpPolicyFinderFactoryTest - testDefaultConstructor");
43         try {
44             XACMLProperties.reloadProperties();
45             System.setProperty(XACMLProperties.XACML_PROPERTIES_NAME, "src/test/resources/xacml.pdp.properties");
46             XACMLProperties.getProperties();
47
48             XACMLPdpPolicyFinderFactory finderFactory = new XACMLPdpPolicyFinderFactory();
49
50             finderFactory.getPolicyFinder();
51
52             assertTrue(true);
53         } catch (Exception e) {
54             LOGGER.error("Exception Occured" + e);
55             fail();
56         }
57     }
58
59     @Test
60     public void testPropertiesConstructor() {
61
62         LOGGER.info("XACMLPdpPolicyFinderFactoryTest - testPropertiesConstructor");
63         try {
64             Properties properties = new Properties();
65             FileInputStream input = new FileInputStream("src/test/resources/xacml.pdp.properties");
66             properties.load(input);
67
68             XACMLPdpPolicyFinderFactory finderFactory = new XACMLPdpPolicyFinderFactory(properties);
69
70             assertTrue(true);
71         } catch (Exception e) {
72             LOGGER.error("Exception Occured" + e);
73             fail();
74         }
75     }
76 }