blob: cf5d7f9379a3280da342836b857aff1e3b9fe6ec [file] [log] [blame]
/*
* 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.oak.jcr.security.authorization;
import javax.jcr.AccessDeniedException;
import javax.jcr.Node;
import javax.jcr.security.Privilege;
import org.apache.jackrabbit.api.JackrabbitNode;
import org.junit.Test;
/**
* Permission evaluation tests related to {@link JackrabbitNode#rename(String)}.
*/
public class RenameTest extends AbstractEvaluationTest {
@Test
public void testRename() throws Exception {
Node child = testSession.getNode(childNPath);
try {
((JackrabbitNode) child).rename("rename");
testSession.save();
fail("test session must not be allowed to rename nodes.");
} catch (AccessDeniedException e) {
// success.
}
}
@Test
public void testRename2() throws Exception {
// give 'add_child_nodes' and 'nt-management' privilege
// -> not sufficient privileges for a renaming of the child
allow(path, privilegesFromNames(new String[] {Privilege.JCR_ADD_CHILD_NODES, Privilege.JCR_NODE_TYPE_MANAGEMENT}));
Node child = testSession.getNode(childNPath);
try {
((JackrabbitNode) child).rename("rename");
testSession.save();
fail("test session must not be allowed to rename nodes.");
} catch (AccessDeniedException e) {
// success.
}
}
/**
* @since OAK 1.0 : Renaming a node requires the same permission as moving it
* around. This behavior differs from Jackrabbit 2.x where renaming just
* required the ability to change the child collection of the parent.
*/
@Test
public void testRename3() throws Exception {
// grant 'add_child_nodes', 'nt-management' and remove_child_nodes' at 'path
// -> rename of child must now succeed
allow(path, privilegesFromNames(new String[] {Privilege.JCR_ADD_CHILD_NODES, Privilege.JCR_NODE_TYPE_MANAGEMENT, Privilege.JCR_REMOVE_CHILD_NODES, Privilege.JCR_REMOVE_NODE}));
Node child = testSession.getNode(childNPath);
((JackrabbitNode) child).rename("rename");
testSession.save();
}
}