blob: 22723818d51a5492e62bb149b4fd1364be3e62bc [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
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
22
23package org.onap.osam.roles;
24
25import java.util.List;
26
27import javax.servlet.http.HttpServletRequest;
28
29import org.junit.Test;
30
31
32public class RoleProviderTest {
33
34 private RoleProvider createTestSubject() {
35 return new RoleProvider();
36 }
37
38
39 @Test
40 public void testExtractRoleFromSession() throws Exception {
41 HttpServletRequest request = null;
42 List<String> result;
43
44 // default test
45 result = RoleProvider.extractRoleFromSession(request);
46 }
47
48
49// @Test
50// public void testGetUserRoles() throws Exception {
51// RoleProvider testSubject;
52// HttpServletRequest request = null;
53// List<Role> result;
54//
55// // default test
56// testSubject = createTestSubject();
57// result = testSubject.getUserRoles(request);
58// }
59
60
61 @Test
62 public void testSplitRole() throws Exception {
63 RoleProvider testSubject;
64 String roleAsString = "";
65 String[] result;
66
67 // default test
68 testSubject = createTestSubject();
69 //TODO:fix result = testSubject.splitRole(roleAsString);
70 }
71
72}