Package org.apache.jackrabbit.core.security.user

Source Code of org.apache.jackrabbit.core.security.user.ImpersonationImplTest

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package org.apache.jackrabbit.core.security.user;

import org.apache.jackrabbit.api.security.user.AbstractUserTest;
import org.apache.jackrabbit.api.security.user.Authorizable;
import org.apache.jackrabbit.api.security.user.User;
import org.apache.jackrabbit.api.security.user.UserManager;
import org.apache.jackrabbit.api.security.user.Impersonation;
import org.apache.jackrabbit.core.security.SystemPrincipal;
import org.apache.jackrabbit.core.security.principal.AdminPrincipal;
import org.apache.jackrabbit.test.NotExecutableException;

import javax.jcr.AccessDeniedException;
import javax.jcr.Credentials;
import javax.jcr.RepositoryException;
import javax.jcr.Session;
import java.security.Principal;

/**
* <code>ImpersonationImplTest</code>...
*/
public class ImpersonationImplTest extends AbstractUserTest {

    private Credentials creds;
    private String uID;
    private Session uSession;
    private UserManager uMgr;

    private String otherUID;

    @Override
    protected void setUp() throws Exception {
        super.setUp();

        // create a first user and retrieve the UserManager from the session
        // created for that new user.
        Principal p = getTestPrincipal();
        String pw = buildPassword(p);
        creds = buildCredentials(p.getName(), pw);

        UserImpl u = (UserImpl) userMgr.createUser(p.getName(), pw);
        save(superuser);

        uID = u.getID();
        uSession = getHelper().getRepository().login(creds);
        uMgr = getUserManager(uSession);

        // create a second user 'below' the first user.
        p = getTestPrincipal();
        pw = buildPassword(p);
       
        User u2 = userMgr.createUser(p.getName(), pw);
        save(superuser);
       
        otherUID = u2.getID();
    }

    @Override
    protected void tearDown() throws Exception {
        try {
            uSession.logout();
        } finally {
            Authorizable a = userMgr.getAuthorizable(uID);
            if (a != null) {
                a.remove();
            }
            a = userMgr.getAuthorizable(otherUID);
            if (a != null) {
                a.remove();
            }
            save(superuser);
        }
        super.tearDown();
    }

    public void testModifyOwnImpersonation() throws RepositoryException, NotExecutableException {
        User u = (User) uMgr.getAuthorizable(uID);

        if (!uSession.hasPermission(((UserImpl) u).getNode().getPath(), "set_property")) {
            throw new NotExecutableException("Users should be able to modify their properties -> Check repository config.");
        }

        Principal otherP = uMgr.getAuthorizable(otherUID).getPrincipal();

        Impersonation impers = u.getImpersonation();
        assertFalse(impers.allows(buildSubject(otherP)));

        assertTrue(impers.grantImpersonation(otherP));
        save(uSession);

        assertTrue(impers.allows(buildSubject(otherP)));

        assertTrue(impers.revokeImpersonation(otherP));
        save(uSession);

        assertFalse(impers.allows(buildSubject(otherP)));
    }

    public void testModifyOthersImpersonators() throws RepositoryException {
        Principal p = uMgr.getAuthorizable(uID).getPrincipal();

        User other = (User) uMgr.getAuthorizable(otherUID);
        try {
            boolean success = other.getImpersonation().grantImpersonation(p);
            // omit save call
            assertFalse("A simple user may not add itself as impersonator to another user.",success);
        } catch (AccessDeniedException e) {
            // fine as well -> access denied.
        }
        assertFalse("A simple user may not add itself as impersonator to another user.", other.getImpersonation().allows(buildSubject(p)));
    }

    public void testAdminPrincipalAsImpersonator() throws RepositoryException, NotExecutableException {
        String adminId = superuser.getUserID();
        Authorizable a = userMgr.getAuthorizable(adminId);
        if (a == null || a.isGroup() || !((User) a).isAdmin()) {
            throw new NotExecutableException(adminId + " is not administators ID");
        }

        Principal adminPrincipal = new AdminPrincipal(adminId);

        // admin cannot be add/remove to set of impersonators of 'u' but is
        // always allowed to impersonate that user.
        User u = (User) userMgr.getAuthorizable(uID);
        Impersonation impersonation = u.getImpersonation();

        assertFalse(impersonation.grantImpersonation(adminPrincipal));
        assertFalse(impersonation.revokeImpersonation(adminPrincipal));
        assertTrue(impersonation.allows(buildSubject(adminPrincipal)));

        // same if the impersonation object of the admin itself is used.
        Impersonation adminImpersonation = ((User) a).getImpersonation();

        assertFalse(adminImpersonation.grantImpersonation(adminPrincipal));
        assertFalse(adminImpersonation.revokeImpersonation(adminPrincipal));
        assertTrue(impersonation.allows(buildSubject(adminPrincipal)));
    }

    public void testSystemPrincipalAsImpersonator() throws RepositoryException {
        Principal systemPrincipal = new SystemPrincipal();
        assertNull(userMgr.getAuthorizable(systemPrincipal));

        // system cannot be add/remove to set of impersonators of 'u' nor
        // should it be allowed to impersonate a given user...
        User u = (User) userMgr.getAuthorizable(uID);
        Impersonation impersonation = u.getImpersonation();

        assertFalse(impersonation.grantImpersonation(systemPrincipal));
        assertFalse(impersonation.revokeImpersonation(systemPrincipal));
        assertFalse(impersonation.allows(buildSubject(systemPrincipal)));
    }
}
TOP

Related Classes of org.apache.jackrabbit.core.security.user.ImpersonationImplTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.