org.apache.jackrabbit.test.api.security.AbstractAccessControlTest Maven / Gradle / Ivy
/*
* 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.test.api.security;
import javax.jcr.Repository;
import javax.jcr.RepositoryException;
import javax.jcr.Session;
import javax.jcr.UnsupportedRepositoryOperationException;
import javax.jcr.security.AccessControlManager;
import javax.jcr.security.Privilege;
import org.apache.jackrabbit.test.AbstractJCRTest;
import org.apache.jackrabbit.test.NotExecutableException;
/**
* AbstractAccessControlTest
...
*/
public abstract class AbstractAccessControlTest extends AbstractJCRTest {
protected AccessControlManager acMgr;
protected void setUp() throws Exception {
checkSupportedOption(Repository.OPTION_ACCESS_CONTROL_SUPPORTED);
super.setUp();
try {
acMgr = getAccessControlManager(superuser);
} catch (NotExecutableException e) {
cleanUp();
throw e;
}
}
protected static AccessControlManager getAccessControlManager(Session s) throws RepositoryException, NotExecutableException {
try {
return s.getAccessControlManager();
} catch (UnsupportedRepositoryOperationException e) {
throw new NotExecutableException();
}
}
protected Privilege[] privilegesFromName(String privilegeName) throws RepositoryException, NotExecutableException {
AccessControlManager acMgr = getAccessControlManager(superuser);
return new Privilege[] {acMgr.privilegeFromName(privilegeName)};
}
protected Privilege[] privilegesFromNames(String[] privilegeNames) throws RepositoryException, NotExecutableException {
AccessControlManager acMgr = getAccessControlManager(superuser);
Privilege[] privs = new Privilege[privilegeNames.length];
for (int i = 0; i < privilegeNames.length; i++) {
privs[i] = acMgr.privilegeFromName(privilegeNames[i]);
}
return privs;
}
protected void checkCanReadAc(String path) throws RepositoryException, NotExecutableException {
if (!acMgr.hasPrivileges(path, privilegesFromName(Privilege.JCR_READ_ACCESS_CONTROL))) {
throw new NotExecutableException();
}
}
protected void checkCanModifyAc(String path) throws RepositoryException, NotExecutableException {
if (!acMgr.hasPrivileges(path, privilegesFromName(Privilege.JCR_MODIFY_ACCESS_CONTROL))) {
throw new NotExecutableException();
}
}
protected String getPathToNonExistingNode() throws RepositoryException {
String name = "nonexisting";
String path = name;
int i = 0;
while (testRootNode.hasNode(path)) {
path = name + i;
i++;
}
path = testRootNode.getPath() + "/" + path;
return path;
}
protected String getPathToProperty() throws RepositoryException {
String path = testRootNode.getPath() + "/" + jcrPrimaryType;
if (superuser.nodeExists(path)) {
throw new RepositoryException("Path " + path + " should point to property.");
}
return path;
}
}