You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-issues@jackrabbit.apache.org by "Tobias Bocanegra (JIRA)" <ji...@apache.org> on 2014/03/26 22:26:18 UTC

[jira] [Created] (OAK-1624) Item names with trailing spaces should not be allowed

Tobias Bocanegra created OAK-1624:
-------------------------------------

             Summary: Item names with trailing spaces should not be allowed
                 Key: OAK-1624
                 URL: https://issues.apache.org/jira/browse/OAK-1624
             Project: Jackrabbit Oak
          Issue Type: Bug
            Reporter: Tobias Bocanegra


the following should fail:

{code}
        Node hello = session.getRootNode().addNode("hello");
        session.save();

        Node illegal = hello.addNode("test "); <-- here
        session.save();

        assertEquals("/hello/test ", illegal.getPath()); <-- and here

        Node other = session.getNode("/hello/test "); <-- and here
        assertTrue(other.isSame(illegal));
        assertTrue(session.nodeExists("/hello/test ")); <-- and here
{code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)