Skip to content

Commit

Permalink
OAK-9277 : UserProvider: misleading exception message if 'systemRelat…
Browse files Browse the repository at this point in the history
…ivePath' is not default

git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/oak/trunk@1883529 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
anchela committed Nov 17, 2020
1 parent 600f688 commit c92bc08
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ Tree createSystemUser(@NotNull String userID, @Nullable String intermediateJcrPa
} else {
if (!(intermediateJcrPath.startsWith(relSysPath) ||
intermediateJcrPath.startsWith(userPath + '/' + relSysPath))) {
throw new ConstraintViolationException("System users must be located in the 'system' subtree of the user root.");
throw new ConstraintViolationException("System users must be located in the '"+relSysPath+"' subtree of the user root.");
}
relPath = intermediateJcrPath;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
* 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.security.user;

import org.apache.jackrabbit.oak.AbstractSecurityTest;
import org.apache.jackrabbit.oak.spi.security.ConfigurationParameters;
import org.apache.jackrabbit.oak.spi.security.user.UserConfiguration;
import org.junit.Test;

import javax.jcr.RepositoryException;
import javax.jcr.nodetype.ConstraintViolationException;

import static org.apache.jackrabbit.oak.spi.security.user.UserConstants.DEFAULT_SYSTEM_RELATIVE_PATH;
import static org.apache.jackrabbit.oak.spi.security.user.UserConstants.PARAM_SYSTEM_RELATIVE_PATH;
import static org.junit.Assert.assertTrue;

public class SystemRelativePathTest extends AbstractSecurityTest {

private static final String REL_PATH = DEFAULT_SYSTEM_RELATIVE_PATH+"/subtree";

@Override
public void after() throws Exception {
try {
root.refresh();
} finally {
super.after();
}
}

@Override
protected ConfigurationParameters getSecurityConfigParameters() {
return ConfigurationParameters.of(
UserConfiguration.NAME,
ConfigurationParameters.of(PARAM_SYSTEM_RELATIVE_PATH, REL_PATH));
}

@Test(expected = ConstraintViolationException.class)
public void testDefaultRelPath() throws RepositoryException {
try {
getUserManager(root).createSystemUser("testDefaultRelPath", DEFAULT_SYSTEM_RELATIVE_PATH);
} catch (RepositoryException e) {
assertTrue(e.getMessage().contains(REL_PATH));
throw e;
}
}

@Test
public void testRelPath() throws RepositoryException {
getUserManager(root).createSystemUser("testRelPath", REL_PATH);
}

@Test
public void testBelowRelPath() throws RepositoryException {
getUserManager(root).createSystemUser("testBelowRelPath", REL_PATH+"/subtree");
}
}

0 comments on commit c92bc08

Please sign in to comment.