ApplicationFilterTest.java revision 47dd079b8470fc1b3d4bbd5c3c0c4af896acabf5
/**
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2009 Sun Microsystems Inc. All Rights Reserved
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* https://opensso.dev.java.net/public/CDDLv1.0.html or
* opensso/legal/CDDLv1.0.txt
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at opensso/legal/CDDLv1.0.txt.
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* $Id: ApplicationFilterTest.java,v 1.2 2009/12/07 19:46:50 veiming Exp $
*
* Portions Copyrighted 2015 ForgeRock AS
*/
package com.sun.identity.entitlement;
import com.iplanet.sso.SSOException;
import com.iplanet.sso.SSOToken;
import com.sun.identity.entitlement.opensso.OpenSSOUserSubject;
import com.sun.identity.entitlement.opensso.SubjectUtils;
import com.sun.identity.entitlement.util.AuthUtils;
import com.sun.identity.entitlement.util.IdRepoUtils;
import com.sun.identity.entitlement.util.SearchFilter;
import com.sun.identity.idm.AMIdentity;
import com.sun.identity.idm.IdRepoException;
import com.sun.identity.security.AdminTokenAction;
import com.sun.identity.sm.SMSException;
import java.security.AccessController;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import javax.security.auth.Subject;
import org.forgerock.openam.entitlement.service.ApplicationServiceHelper;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
/**
*
* @author dennis
*/
public class ApplicationFilterTest {
private static final String APPL_NAME = "ApplicationFilterTest";
private static final String USER1 = "ApplicationFilterTestUser1";
private static final String PRIVILEGE_NAME =
"ApplicationFilterTestPrivilege";
private static final String DELEGATE_PRIVILEGE_NAME =
"ApplicationFilterTestDelegationPrivilege";
private static final String DELEGATED_RESOURCE_BASE =
"http://www.applicationfiltertest.com";
private SSOToken adminToken = (SSOToken) AccessController.doPrivileged(
AdminTokenAction.getInstance());
private Subject adminSubject = SubjectUtils.createSubject(adminToken);
private boolean migrated = EntitlementConfiguration.getInstance(
adminSubject, "/").migratedToEntitlementService();
private AMIdentity user1;
@BeforeClass
public void setup()
throws Exception {
if (!migrated) {
return;
}
Application appl = new Application("/", APPL_NAME,
ApplicationTypeManager.getAppplicationType(adminSubject,
ApplicationTypeManager.URL_APPLICATION_TYPE_NAME));
// Test disabled, unable to fix model change
// Set<String> appResources = new HashSet<String>();
// appResources.add(DELEGATED_RESOURCE_BASE);
// appl.addResources(appResources);
appl.setEntitlementCombiner(DenyOverride.class);
ApplicationServiceHelper.get().saveApplication(adminSubject, "/", appl);
user1 = IdRepoUtils.createUser("/", USER1);
createDelegationPrivilege();
}
@AfterClass
public void cleanup() throws Exception {
if (!migrated) {
return;
}
ApplicationPrivilegeManager apm =
ApplicationPrivilegeManager.getInstance("/", adminSubject);
apm.removePrivilege(DELEGATE_PRIVILEGE_NAME);
IdRepoUtils.deleteIdentity("/", user1);
ApplicationServiceHelper.get().deleteApplication(adminSubject, "/",
APPL_NAME);
}
private void createDelegationPrivilege()
throws SMSException, EntitlementException, SSOException,
IdRepoException,
InterruptedException {
ApplicationPrivilege ap = new ApplicationPrivilege(
DELEGATE_PRIVILEGE_NAME);
OpenSSOUserSubject sbj = new OpenSSOUserSubject();
sbj.setID(user1.getUniversalId());
Set<SubjectImplementation> subjects = new HashSet<SubjectImplementation>();
subjects.add(sbj);
ap.setSubject(subjects);
Map<String, Set<String>> appRes = new HashMap<String, Set<String>>();
Set<String> res = new HashSet<String>();
appRes.put(APPL_NAME, res);
res.add(DELEGATED_RESOURCE_BASE);
ap.setApplicationResources(appRes);
ap.setActionValues(ApplicationPrivilege.PossibleAction.READ);
ApplicationPrivilegeManager apm =
ApplicationPrivilegeManager.getInstance("/", adminSubject);
apm.addPrivilege(ap);
}
@Test
public void test() throws Exception {
SSOToken userToken = AuthUtils.authenticate("/", USER1, USER1);
Subject userSubject = SubjectUtils.createSubject(userToken);
Set<SearchFilter> filters = new HashSet<SearchFilter>();
filters.add(new SearchFilter(Application.NAME_ATTRIBUTE,
"ApplicationFilterTes*"));
Set<String> names = ApplicationServiceHelper.get().search(userSubject, "/",
filters);
if (names.isEmpty()) {
throw new Exception(
"ApplicationFilterTest.test: expect to return one entry");
}
filters.clear();
filters.add(new SearchFilter(Application.NAME_ATTRIBUTE, "4rwrwr*"));
names = ApplicationServiceHelper.get().search(userSubject, "/", filters);
if (!names.isEmpty()) {
throw new Exception(
"ApplicationFilterTest.test: expect to return no entries");
}
}
}