You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Jukka Zitting (JIRA)" <ji...@apache.org> on 2005/12/09 10:56:11 UTC

[jira] Closed: (JCR-284) Locking two same-name siblings and unlocking first apparently unlocks second instead.

     [ http://issues.apache.org/jira/browse/JCR-284?page=all ]
     
Jukka Zitting closed JCR-284:
-----------------------------

    Resolution: Fixed

Reclosing the issue after changing the fix version from 1.1 to 1.0.

> Locking two same-name siblings and unlocking first apparently unlocks second instead.
> -------------------------------------------------------------------------------------
>
>          Key: JCR-284
>          URL: http://issues.apache.org/jira/browse/JCR-284
>      Project: Jackrabbit
>         Type: Bug
>   Components: locks
>     Reporter: Dominique Pfister
>     Assignee: Dominique Pfister
>      Fix For: 1.0

>
> Executing the following test that unlocks the first of two locked same-name siblings:
> public void testLocking() throws RepositoryException {
>        Session jcrSession = ((S1SessionImpl) session).getSession();
>        Node rootNode = jcrSession.getRootNode();
>        Node n1 = rootNode.addNode("path");
>        n1.addMixin("mix:lockable");
>        Node n2 = rootNode.addNode("path");
>        n2.addMixin("mix:lockable");
>        jcrSession.save();
>        n1.lock(true, true);
>        n2.lock(true, true);
>        System.out.println("n1.isLocked() = " + n1.isLocked());
>        System.out.println("n2.isLocked() = " + n2.isLocked());
>        assertTrue(n1.isLocked());
>        assertTrue(n2.isLocked());
>        n1.save();
>        n1.unlock();
>        System.out.println("n1.isLocked() = " + n1.isLocked());
>        System.out.println("n2.isLocked() = " + n2.isLocked());
>        assertFalse(n1.isLocked());
>        assertTrue(n2.isLocked());
>    }
> Results in:
> n1.isLocked() = true
> n2.isLocked() = true
> n1.isLocked() = true
> n2.isLocked() = false
> which is wrong.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira