Bertrand Delacretaz created SLING-3063:
------------------------------------------

             Summary: Anonymous user cannot read content on Oak
                 Key: SLING-3063
                 URL: https://issues.apache.org/jira/browse/SLING-3063
             Project: Sling
          Issue Type: Bug
          Components: Oak
            Reporter: Bertrand Delacretaz
            Assignee: Bertrand Delacretaz
            Priority: Minor


Just added a test to SlingRepositoryITBase ( http://svn.apache.org/r1522943 ) 
which works on Jackrabbit and fails on Oak:

        final String path = assertCreateRetrieveNode(null); // returns path of 
a new node
        final Session s = repository.login();
        try {
            assertTrue("Expecting anonymous to see " + path, 
s.itemExists(path));
            final Node n = s.getNode(path);
            assertEquals("Expecting anonymous to see the foo property", path, 
n.getProperty("foo").getString());
        } finally {
            s.logout();
        }




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to