Merge "More junits for PDP-REST"
[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  * 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
21 package org.onap.policy.pdp.rest.impl.test;
22
23 import static org.junit.Assert.assertTrue;
24 import static org.junit.Assert.fail;
25
26 import java.io.FileInputStream;
27 import java.io.IOException;
28 import java.util.Properties;
29
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
35 import com.att.research.xacml.util.XACMLProperties;
36
37 public class XACMLPdpPolicyFinderFactoryTest {
38         private static Log LOGGER = LogFactory.getLog(XACMLPdpPolicyFinderFactoryTest.class);
39         
40         @Test
41         public void testDefaultConstructor() throws IOException {
42                 
43                 LOGGER.info("XACMLPdpPolicyFinderFactoryTest - testDefaultConstructor");
44                 try {   
45                         XACMLProperties.reloadProperties();
46                         System.setProperty(XACMLProperties.XACML_PROPERTIES_NAME, "src/test/resources/xacml.pdp.properties");
47                         XACMLProperties.getProperties();
48                         
49                         XACMLPdpPolicyFinderFactory finderFactory = new XACMLPdpPolicyFinderFactory();
50                         
51                         finderFactory.getPolicyFinder();
52                         
53                         assertTrue(true);
54                 } catch (Exception e) {
55                         LOGGER.error("Exception Occured"+e);
56                         fail();
57                         
58                 }
59         }
60         @Test
61         public void testPropertiesConstructor () {
62                 
63                 LOGGER.info("XACMLPdpPolicyFinderFactoryTest - testPropertiesConstructor");
64                 try {   
65                         Properties properties = new Properties();
66                         FileInputStream input = new FileInputStream("src/test/resources/xacml.pdp.properties");
67                         properties.load(input);
68                         
69                         XACMLPdpPolicyFinderFactory finderFactory = new XACMLPdpPolicyFinderFactory(properties);
70                         
71                         assertTrue(true);
72                 } catch (Exception e) {
73                         LOGGER.error("Exception Occured"+e);
74                         fail();
75                         
76                 }
77                 
78         }
79 }