You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by an...@apache.org on 2020/11/17 13:06:11 UTC

svn commit: r1883529 - in /jackrabbit/oak/trunk/oak-core/src: main/java/org/apache/jackrabbit/oak/security/user/UserProvider.java test/java/org/apache/jackrabbit/oak/security/user/SystemRelativePathTest.java

Author: angela
Date: Tue Nov 17 13:06:10 2020
New Revision: 1883529

URL: http://svn.apache.org/viewvc?rev=1883529&view=rev
Log:
OAK-9277 : UserProvider: misleading exception message if 'systemRelativePath' is not default

Added:
    jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/user/SystemRelativePathTest.java   (with props)
Modified:
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/user/UserProvider.java

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/user/UserProvider.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/user/UserProvider.java?rev=1883529&r1=1883528&r2=1883529&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/user/UserProvider.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/user/UserProvider.java Tue Nov 17 13:06:10 2020
@@ -196,7 +196,7 @@ class UserProvider extends AuthorizableB
         } 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;
         }

Added: jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/user/SystemRelativePathTest.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/user/SystemRelativePathTest.java?rev=1883529&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/user/SystemRelativePathTest.java (added)
+++ jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/user/SystemRelativePathTest.java Tue Nov 17 13:06:10 2020
@@ -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");
+    }
+}
\ No newline at end of file

Propchange: jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/security/user/SystemRelativePathTest.java
------------------------------------------------------------------------------
    svn:eol-style = native