8e93ee47661136b7c485537d198d0c24c5ccc44f
[policy/engine.git] / ONAP-PAP-REST / src / test / java / org / onap / policy / pap / xacml / rest / XACMLPapServletTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
4  * ================================================================================
5  * Copyright (C) 2018-2019 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.pap.xacml.rest;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25
26 import org.junit.Test;
27 import org.onap.policy.pap.xacml.rest.XACMLPapServlet;
28
29 public class XACMLPapServletTest {
30     @Test
31     public void testSetAndGet() {
32         String systemKey = "xacml.properties";
33         String testVal = "testVal";
34         XACMLPapServlet servlet = new XACMLPapServlet();
35
36         // Set the system property temporarily
37         String oldProperty = System.getProperty(systemKey);
38         System.setProperty(systemKey, "xacml.pap.properties");
39
40         assertNotNull(XACMLPapServlet.getConfigHome());
41         assertNotNull(XACMLPapServlet.getActionHome());
42         assertEquals(XACMLPapServlet.getPersistenceUnit(), "XACML-PAP-REST");
43
44         // assertNull(XACMLPapServlet.getEmf());
45         // assertNull(XACMLPapServlet.getPDPFile());
46         // assertNull(XACMLPapServlet.getPAPEngine());
47         // assertNull(servlet.getIa());
48
49         XACMLPapServlet.setPapDbDriver(testVal);
50         assertEquals(XACMLPapServlet.getPapDbDriver(), testVal);
51         XACMLPapServlet.setPapDbUrl(testVal);
52         assertEquals(XACMLPapServlet.getPapDbUrl(), testVal);
53         XACMLPapServlet.setPapDbUser(testVal);
54         assertEquals(XACMLPapServlet.getPapDbUser(), testVal);
55         XACMLPapServlet.setPapDbPassword(testVal);
56         assertEquals(XACMLPapServlet.getPapDbPassword(), testVal);
57         XACMLPapServlet.setMsOnapName(testVal);
58         assertEquals(XACMLPapServlet.getMsOnapName(), testVal);
59         XACMLPapServlet.setMsPolicyName(testVal);
60         assertEquals(XACMLPapServlet.getMsPolicyName(), testVal);
61
62         // Restore the original system property
63         if (oldProperty != null) {
64             System.setProperty(systemKey, oldProperty);
65         } else {
66             System.clearProperty(systemKey);
67         }
68     }
69 }