aboutsummaryrefslogtreecommitdiffstats
path: root/shiro/src/test/java/org/onap/aaf/cadi/shiro/test/JU_AAFRealm.java
blob: f915538882d18bf507a5b0eb174382fad0737428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/**
 * ============LICENSE_START====================================================
 * org.onap.aaf
 * ===========================================================================
 * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
 * ===========================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END====================================================
 *
 */
package org.onap.aaf.cadi.shiro.test;

import java.util.ArrayList;

import org.apache.shiro.authc.AuthenticationInfo;
import org.apache.shiro.authc.UsernamePasswordToken;
import org.apache.shiro.authz.AuthorizationInfo;
import org.apache.shiro.authz.Permission;
import org.apache.shiro.subject.PrincipalCollection;
import org.onap.aaf.cadi.aaf.AAFPermission;
import org.onap.aaf.cadi.shiro.AAFRealm;
import org.onap.aaf.cadi.shiro.AAFShiroPermission;

import junit.framework.Assert;

public class JU_AAFRealm {

/*
 @Test
 public void test() {
 	// NOTE This is a live test.  This JUnit needs to be built with "Mock" before it can be 
	// an official JUNIT
 	try {
 		System.setProperty(Config.CADI_PROP_FILES, "/opt/app/osaaf/local/org.onap.aai.props");
 		TestAAFRealm ar = new TestAAFRealm();
		
 		//UsernamePasswordToken upt = new UsernamePasswordToken("demo@people.osaaf.org", "demo123456!");
 		UsernamePasswordToken upt = new UsernamePasswordToken("AAI", "AAI");
 		
 		AuthenticationInfo ani = ar.authn(upt);
		
 		AuthorizationInfo azi = ar.authz(ani.getPrincipals());
 		// Change this to something YOU have, Sai...
		
 		testAPerm(true,azi,"org.onap.aai","resources","something","get");
 		testAPerm(false,azi,"org.osaaf.nons","resources","something","get");
 //		testAPerm(true,azi,"name","org.access","something","*");
 //		testAPerm(false,azi,"org.accessX","something","*");
 	} catch (Throwable t) {
 		t.printStackTrace();
 		Assert.fail();
 	}
 }
*/

	private void testAPerm(boolean expect, AuthorizationInfo azi, String ns, String type, String instance, String action) {
		
		AAFShiroPermission testPerm = new AAFShiroPermission(new AAFPermission(ns,type,instance,action,new ArrayList<String>()));

		boolean any = false;
		for(Permission p : azi.getObjectPermissions()) {
			if(p.implies(testPerm)) {
				any = true;
			}
		}
		if(expect) {
			Assert.assertTrue(any);
		} else {
			Assert.assertFalse(any);
		}

		
	}

	/**
	 * Note, have to create a derived class, because "doGet"... are protected
	 */
	private class TestAAFRealm extends AAFRealm {
		public AuthenticationInfo authn(UsernamePasswordToken upt) {
			return doGetAuthenticationInfo(upt);
		}
		public AuthorizationInfo authz(PrincipalCollection pc) {
			return doGetAuthorizationInfo(pc);
		}
		
	}
}