Fix unit test failure in ONAP-PDP-REST
[policy/engine.git] / ONAP-PDP-REST / src / test / java / org / onap / policy / pdp / rest / auth / test / AuthenticationServiceTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PDP-REST
4  * ================================================================================
5  * Copyright (C) 2018-2019 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.auth.test;
24
25 import static org.junit.Assert.assertTrue;
26 import static org.mockito.Mockito.mock;
27
28 import com.att.research.xacml.util.XACMLProperties;
29
30 import java.io.UnsupportedEncodingException;
31 import java.util.Base64;
32 import javax.servlet.ServletRequest;
33 import org.junit.Test;
34 import org.onap.policy.pdp.rest.restauth.AuthenticationService;
35 import org.onap.policy.rest.XacmlRestProperties;
36
37 public class AuthenticationServiceTest {
38     private final String testCred = "python:test";
39     private final String testCredEncoded = new String(Base64.getEncoder().encode(testCred.getBytes()));
40     private final String basicCred = "Basic " + testCredEncoded;
41
42     @Test
43     public void testAuth() throws UnsupportedEncodingException {
44         String systemKey = "xacml.properties";
45
46         // Set the system property temporarily
47         final String oldProperty = System.getProperty(systemKey);
48         System.setProperty(systemKey, "xacml.pdp.properties");
49         XACMLProperties.setProperty("enable_aaf", "false");
50         XACMLProperties.setProperty(XacmlRestProperties.PROP_PEP_IDFILE, "client.properties");
51
52         ServletRequest request = mock(ServletRequest.class);
53         AuthenticationService.getEnvironment();
54         assertTrue(AuthenticationService.checkPermissions(null, basicCred, "getConfig", "DEVL", request));
55
56         // Restore the original system property
57         if (oldProperty != null) {
58             System.setProperty(systemKey, oldProperty);
59         } else {
60             System.clearProperty(systemKey);
61         }
62     }
63 }